/* Basic reset */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Dosis", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Adjust these 3 colors to match your actual logo palette */
  --accent: #f2c35b; /* primary brand color */
  --accent-strong: #ff9b3d;
  --accent-soft: #ffe7b3;

  --bg: #05040a;
  --bg-soft: #0f0c1a;
  --bg-lighter: #151225;
  --text: #ffffff;
  --text-muted: #c2bdcf;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --transition: 0.2s ease;
  --font-main: "Dosis", sans-serif;
}

/* required field marker */
.required{color:var(--accent-strong);margin-left:0.35rem;font-weight:700}

body {
  font-family: var(--font-main);
  /* background: radial-gradient(circle at top, #1b1330, #05040a 55%); */
  color: var(--text);
  line-height: 1.6;
  background: radial-gradient(circle at top, #1f1638 0, #05040a 55%);
}

/* Layout helpers */
.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Dosis", sans-serif;
}
/* .section {
  padding: 4.5rem 0;
} */

/* .section-light {
  background: radial-gradient(circle at top, #1f1638 0, #05040a 55%);
} */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  /* backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 4, 10, 0.9),
    rgba(5, 4, 10, 0.4),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04); */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  display: block;
  max-height: 120px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width var(--transition);
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 3rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.hero-text p {
  color: var(--text-muted);
  max-width: 28rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom:10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 35px;
    font-size: 15px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong)) !important;
  color: #05040a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.75);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-soft);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn.full-width {
  width: 100%;
}

/* Hero cards (visual placeholder instead of real photos) */
.hero-image {
  position: relative;
  min-height: 260px;
}

.hero-card {
  position: absolute;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  background-size: cover;
  background-position: center;
}

.hero-card.main {
  inset: 0 10% 0 5%;
  background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.1)
    ),
    url("https://images.pexels.com/photos/247204/pexels-photo-247204.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.hero-card.accent {
  width: 45%;
  height: 55%;
  right: -4%;
  bottom: -4%;
  background-image: linear-gradient(145deg, #ffb3ff, #ffd7a4);
  filter: blur(8px);
  opacity: 0.7;
}

/* Grid utilities */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* Section entrance animations */
@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner,
.models-grid,
.brand-grid,
.testimonial-grid,
.join-grid {
  opacity: 0;
  animation: fadeUpSoft 0.9s ease-out forwards;
}

.hero-inner {
  animation-delay: 0.05s;
}

.models-grid {
  animation-delay: 0.18s;
}

.brand-grid {
  animation-delay: 0.26s;
}

.testimonial-grid {
  animation-delay: 0.34s;
}

.join-grid {
  animation-delay: 0.42s;
}

/* Models */
.models-slider {
  position: relative;
  padding: 0.5rem 0 0;
}

.models-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.models-viewport {
  overflow: hidden;
}

.models-track {
  display: flex;
  transition: transform 0.6s ease;
}

.models-slide {
  flex: 0 0 100%;
}

.models-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero-image { min-height: 220px; }
}

@media (max-width: 900px) {
  .models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  /* Header nav becomes collapsible */
  .nav { display: none; position: absolute; right: 16px; top: 64px; background: linear-gradient(180deg, rgba(8,6,17,0.98), rgba(8,6,17,0.98)); padding: 12px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.6); flex-direction: column; gap: 0.6rem; min-width: 200px; }
  .nav.open { display: flex; }
  .nav a { display: block; }
  .nav-toggle { display: inline-flex; background: transparent; border: 1px solid rgba(255,255,255,0.06); color:var(--text); padding:6px 10px; border-radius:9px; font-size:18px; }
  .logo img { max-height:64px }
  .hero-inner { grid-template-columns: 1fr; margin-top: 50px;}
  .models-grid { grid-template-columns: 1fr; }
  .contact-grid { display: block; }
}

@media (max-width: 480px) {
  .nav { right: 8px; top: 56px; min-width: 160px; padding:10px; }
  .logo img { max-height:56px }
  .hero-text h1 { font-size: 1.6rem; }
}

/* Make model cards more fluid */
.models-grid, .models-slider .models-track { grid-auto-rows: auto; }

/* Contact grid responsive fallback */
.contact-grid { display: grid; grid-template-columns: 1fr 320px; gap: 1.4rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.model-card {
  display: flex;
  flex-direction: column;
  position: relative; /* for overlay */
  min-height: 220px;
}

.model-card .card-body {
  text-align: center;
}

.model-brand {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.model-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

#models-slide-1:checked ~ .models-viewport .models-track {
  transform: translateX(0%);
}

#models-slide-2:checked ~ .models-viewport .models-track {
  transform: translateX(-100%);
}

.models-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.models-dots label {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease,
    opacity 0.25s ease;
  opacity: 0.6;
}

#models-slide-1:checked ~ .models-dots label[for="models-slide-1"],
#models-slide-2:checked ~ .models-dots label[for="models-slide-2"] {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  opacity: 1;
  transform: scale(1.2);
}

.card {
  background: rgba(9, 7, 18, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition), background var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(18, 14, 34, 0.96);
}

/* .card-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
} */

.model-card {
    overflow: hidden;
}

.card-photo {
    height: 350px;              /* ✅ fixed height */
    background-size: contain;   /* ✅ no crop */
    background-position: center top; /* keeps face visible */
    background-repeat: no-repeat;
    background-color: #111;     /* fills empty space */
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* Overlay details on hover for model cards */
.model-card .card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.25rem 1.2rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(5,4,10,0.78) 55%);
  transform: translateY(100%);
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0;
}

.model-card:hover .card-body,
.model-card:focus-within .card-body {
  transform: translateY(0);
  opacity: 1;
}

.model-card .card-body h3 { color: var(--text); }
.model-card .card-body p { color: var(--text-muted); }

/* Ensure card layout remains stable when body is absolute */
.model-card .card-photo { display: block; }

@media (max-width: 900px) {
  .models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .models-grid { grid-template-columns: minmax(0, 1fr); }
  .model-card { min-height: auto; }
  .model-card .card-body { position: relative; transform: translateY(0); opacity:1; background: transparent; }
}

.card:hover .card-photo {
  transform: scale(1.06);
}

.photo-1 {
  background-image: url("https://images.pexels.com/photos/415829/pexels-photo-415829.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.photo-2 {
  background-image: url("https://images.pexels.com/photos/1183266/pexels-photo-1183266.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.photo-3 {
  background-image: url("https://images.pexels.com/photos/1704488/pexels-photo-1704488.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.photo-4 {
  background-image: url("https://images.pexels.com/photos/5091955/pexels-photo-5091955.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.photo-5 {
  background-image: url("https://images.pexels.com/photos/415829/pexels-photo-415829.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.photo-6 {
  background-image: url("https://images.pexels.com/photos/1183266/pexels-photo-1183266.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.card-body {
  padding: 1.1rem 1.25rem 1.2rem;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  text-decoration: none;
}

/* Brand list */
.brand-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.brand-pill {
  border-radius: var(--radius-full);
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: radial-gradient(circle at top left, #261834, #090612);
  background-size: 200% 200%;
  transition: transform 0.22s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background-position 0.5s ease;
}

.brand-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  background-position: 100% 0;
}

/* Testimonials */
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 1.5rem 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(244, 180, 255, 0.5), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.25s ease, transform 0.45s ease;
  pointer-events: none;
}

.testimonial-card:hover::before {
  opacity: 1;
  transform: translateX(20%);
}

/* Join & Contact */
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.join-card,
.contact-card {
  background: rgba(8, 6, 17, 0.95);
  border-radius: 20px;
  padding: 1.8rem 1.6rem 1.9rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.join-card h2,
.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.join-card p,
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* Profile page (Harshad) */
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.5fr);
  gap: 2.8rem;
  align-items: center;
}

/* .profile-photo-wrapper {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #261834, #090612);
} */

/* .profile-photo {
  min-height: 360px;
  object-fit: cover;
  object-position: top;
  background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.15)
    ),
    url("assets/talent1.jpeg");
  background-size: cover;
  background-position: center;
} */

.profile-photo-wrapper {
  width: 100%;
  border-radius: 16px;      /* optional rounded corners */
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* optional shadow */
}

.profile-photo1 {
  width: 100%;
  height: 360px;  /* block height */
  background: 
    linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0.1)), /* optional gradient */
    url('assets/talent2.jpeg') center center / contain no-repeat;
  display: block;
}

.profile-photo2 {
  width: 100%;
  height: 360px;  /* block height */
  background: 
    linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0.1)), /* optional gradient */
    url('assets/talent1.jpeg') center center / contain no-repeat;
  display: block;
}


.profile-content {
  max-width: 620px;
}

.profile-overline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.profile-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.6rem);
  margin-bottom: 0.3rem;
}

.profile-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.profile-body p + p {
  margin-top: 0.7rem;
}

.profile-brands {
  margin-top: 1.7rem;
}

.profile-brands h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.7rem;
}

.profile-brand-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-brand-list li {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.profile-nav {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.profile-prev-next {
  display: flex;
  gap: 0.6rem;
}

/* Simple form */
.simple-form {
  display: grid;
  gap: 0.9rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.form-row input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 6, 17, 0.8);
  color: var(--text);
  font-size: 0.9rem;
}

.form-row input::placeholder {
  color: rgba(179, 174, 200, 0.7);
}

.form-row input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Contact list */
.contact-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-list li + li {
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.4rem 0 2rem;
  background: #05040a;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--accent-soft);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
    min-height: 220px;
  }

  .models-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .join-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-photo {
    min-height: 280px;
  }

  .nav {
    display: none; /* simple: hide nav on small screens */
  }
}

@media (max-width: 600px) {
  .models-grid,
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .section {
    /* padding: 3.2rem 0; */
  }
}

/* Product page (single product) */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.4rem;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.product-image {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.35s ease, transform 0.45s ease;
}

.product-thumbs {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* Carousel arrows */
.product-media { position: relative; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  opacity: 0.9;
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-arrow:hover { transform: translateY(-50%) scale(1.04); background: rgba(0,0,0,0.5); }

/* Hide arrows on very small screens but keep accessible via keyboard */
@media (max-width: 480px) {
  .carousel-arrow { display: none; }
}

.thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.thumb:nth-child(1) { background-image: url('https://images.pexels.com/photos/2381069/pexels-photo-2381069.jpeg?auto=compress&cs=tinysrgb&w=400'); }
.thumb:nth-child(2) { background-image: url('https://images.pexels.com/photos/428340/pexels-photo-428340.jpeg?auto=compress&cs=tinysrgb&w=400'); }
.thumb:nth-child(3) { background-image: url('https://images.pexels.com/photos/1704488/pexels-photo-1704488.jpeg?auto=compress&cs=tinysrgb&w=400'); }
.thumb:nth-child(4) { background-image: url('https://images.pexels.com/photos/415829/pexels-photo-415829.jpeg?auto=compress&cs=tinysrgb&w=400'); }

.thumb.active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.14);
}

.product-details {
  padding: 1rem 0.6rem;
}

.product-overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 0.35rem;
}

.product-sub { color: var(--text-muted); margin-bottom: 1rem; }

.product-price { font-size: 1.5rem; margin: 0.6rem 0 1rem; color: var(--accent-soft); }

.product-options { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 1.1rem; }

.option-label { display:block; font-size:0.72rem; color:var(--text-muted); margin-bottom:0.45rem; text-transform:uppercase; letter-spacing:0.14em; }

.sizes .size {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(8,6,17,0.6);
  color: var(--text);
  cursor: pointer;
  margin-right: 0.5rem;
}

.sizes .size.active { border-color: var(--accent); box-shadow: 0 12px 28px rgba(0,0,0,0.5); }

.swatches { display:flex; gap:0.6rem; align-items:center; }
.swatch { width:34px; height:34px; border-radius:8px; border:1px solid rgba(255,255,255,0.06); cursor:pointer; }
.swatch.active { outline:3px solid rgba(255,255,255,0.06); transform:translateY(-3px); }

.product-actions { display:flex; gap:0.7rem; margin: 1.1rem 0 1.6rem; }

.product-tabs .tab { margin-top: 0.6rem; }
.product-tabs h3 { font-size:0.95rem; margin-bottom:0.4rem; }
.muted { color: var(--text-muted); font-size:0.94rem; }

/* Responsive adjustments for product page */
@media (max-width: 1000px) {
  .product-layout { grid-template-columns: 1fr 360px; }
  .product-image { min-height: 440px; }
}

@media (max-width: 800px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-details { order: 2; }
  .product-gallery { order: 1; }
  .product-image { min-height: 360px; }
  .product-thumbs { overflow-x: auto; }
}

/* Contact page helpers */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.6rem;
  align-items: start;
}

.contact-card.card { padding: 1.1rem; }

.contact-card h4 { margin-bottom: 0.4rem; }

.map-placeholder { border: 1px solid var(--border-subtle); box-shadow: var(--shadow-soft); }

/* Ensure file inputs and textarea match theme */
input[type="file"] { color: var(--text); }
textarea {
    resize: vertical;
    width: 100%;
    background: transparent;
    color: white;
    border-radius: 21px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

img {
    height: 100%;
    width: 100%;
}

section#campaigns, section#testimonials, section#faqs, section#contact, section#about, section#services {
    padding-top: 30px;
}


