
.dlcs-wrap{text-align:center;font-family:sans-serif;padding:20px;}
.dlcs-photo{width:200px;height:200px;object-fit:cover;border-radius:12px;margin-bottom:15px;}
.btn{display:inline-block;margin:6px;padding:10px 20px;background:#075238;color:#fff;border-radius:8px;text-decoration:none;font-weight:600;}
.btn:hover{background:#EEA713;color:#000;}
.dlcs-locked{background:#fafafa;padding:20px;border-radius:10px;border:1px solid #eee;margin-top:15px;}
.upgrade-btn{background:#EEA713;color:#000;font-weight:700;padding:10px 20px;border-radius:8px;text-decoration:none;}
.dlcs-related{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;margin-top:20px;}
.dlcs-related .rel-card img{width:100%;border-radius:10px;}
/* ===== MOBILE & RESPONSIVE FIXES ===== */

.dlcs-wrap {
  text-align: center;
  font-family: "Inter", sans-serif;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.dlcs-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dlcs-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  margin: 6px;
  padding: 10px 20px;
  background: #075238;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #EEA713;
  color: #000;
}

.dlcs-actions {
  margin-top: 15px;
}

.dlcs-locked {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-top: 20px;
}

.upgrade-btn {
  display: inline-block;
  background: #EEA713;
  color: #000;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
}

.dlcs-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 25px;
}

.dlcs-related .rel-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s ease;
}

.dlcs-related .rel-card:hover {
  transform: translateY(-3px);
}

.dlcs-related .rel-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}

.dlcs-related .rel-card span {
  font-weight: 500;
  font-size: 14px;
}

/* ====== MOBILE OPTIMIZATION ====== */
@media (max-width: 768px) {
  .dlcs-wrap { padding: 15px; }
  .dlcs-profile { padding: 15px; }
  .dlcs-photo { width: 150px; height: 150px; }
  .btn { padding: 8px 16px; font-size: 14px; }
  .dlcs-related { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

@media (max-width: 480px) {
  .dlcs-photo { width: 120px; height: 120px; }
  .btn { padding: 7px 14px; font-size: 13px; }
  .dlcs-related { grid-template-columns: repeat(2, 1fr); }
  .dlcs-related .rel-card img { height: 120px; }
}
/* === UNIVERSAL RESET === */
.dlcs-wrap, .dlcs-profile {
  box-sizing: border-box;
  max-width: 100%;
}

.dlcs-wrap {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* === PROFILE CARD === */
.dlcs-profile {
  width: 100%;
  max-width: 850px;
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.dlcs-photo {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px;
}

/* === TEXT & BUTTON STYLING === */
h2 {
  font-size: 1.6rem;
  margin: 8px 0;
}
.meta, .followers, .bio, p {
  font-size: 1rem;
  margin: 5px 0;
  color: #333;
}

.btn, .upgrade-btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 6px 4px;
  border-radius: 8px;
  background-color: #075238;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: #EEA713;
  color: #000;
}

.upgrade-btn {
  background-color: #EEA713;
  color: #000;
  font-weight: 700;
}

/* === GRID FOR RELATED PROFILES === */
.dlcs-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.dlcs-related .rel-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
  text-decoration: none;
  color: #222;
  padding: 8px;
  transition: transform 0.2s ease;
}

.dlcs-related .rel-card:hover {
  transform: translateY(-3px);
}

.dlcs-related img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* === RESPONSIVE FIXES === */
@media (max-width: 992px) {
  .dlcs-profile {
    max-width: 90%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .dlcs-photo {
    width: 160px;
    height: 160px;
  }
  h2 { font-size: 1.4rem; }
  .btn, .upgrade-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .dlcs-profile {
    padding: 15px;
    box-shadow: none;
    border-radius: 0;
  }
  .dlcs-photo {
    width: 120px;
    height: 120px;
  }
  h2 { font-size: 1.2rem; }
  .dlcs-related {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .btn, .upgrade-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* === Horizontal Carousel Styling === */
.dlcs-carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 25px auto;
  overflow: hidden;
}

.dlcs-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 14px;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}

.dlcs-carousel::-webkit-scrollbar {
  display: none;
}

.dlcs-carousel .rel-card {
  flex: 0 0 150px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  color: #000;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.dlcs-carousel .rel-card:hover {
  transform: scale(1.05);
}

.dlcs-carousel .rel-card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(7,82,56,0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn.left { left: 5px; }
.carousel-btn.right { right: 5px; }

.carousel-btn:hover {
  background: #EEA713;
  color: #000;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .dlcs-carousel .rel-card {
    flex: 0 0 130px;
  }
  .carousel-btn { display: none; }
}

.creator-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.creator-image-frame {
  width: 230px;
  height: 450px;
  margin-bottom: 15px;
  position: relative;
}

.phone-frame {
  background: url('/wp-content/themes/your-theme/assets/img/phone-frame.png') no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-photo {
  width: 86%;
  height: 91%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.creator-name {
  font-size: 22px;
  font-weight: 700;
  color: #075238;
  text-align: center;
}

.creator-bio {
  font-size: 15px;
  color: #444;
  text-align: center;
  margin: 10px 0;
  line-height: 1.4;
}

.creator-meta {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: center;
  font-size: 15px;
  color: #333;
}

.creator-meta li {
  margin: 4px 0;
}

@media (max-width: 600px) {
  .creator-image-frame {
    width: 180px;
    height: 360px;
  }
  .creator-name {
    font-size: 18px;
  }
}

.dlcs-download-form {
  margin-top: 15px;
  text-align: center;
}
.download-btn {
  background: #075238;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}
.download-btn:hover {
  background: #EEA713;
  color: #fff;
}

