/* ===== PRODUCTS PAGE ===== */
.collection-image {
  display: block;
  width: 100%;
  height: auto;          /* oranı korur */
  max-width: 100%;
  object-fit: contain;   /* kırpmaz, tamamını gösterir */
  object-position: center;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: white;
  }
  
  /* Navbar */
  /* Default Navbar */
.navbar {
    width: 100%;
    z-index: 1000;
    background-color: #faf3e0;
    padding: 1rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: fixed;
    top: 30;
    left: 0;
    transition: background-color 0.3s ease;

  }
.navbar.transparent,
.navbar.hero-transparent {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.logo img,
.logo svg {
  height: 10px;
  width: auto;
  display: block;
  
}

#logo-img {
    margin-left: -3rem; /* or less */
  }
  
  
  /* Transparent navbar style for hero section */
  .navbar.transparent {
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: background 0.3s ease;
  }
  
  .navbar.solid {
    background: white;
    box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  }
  
  /* only top-level controls go white over the hero */
  .navbar.transparent .nav-box a,
  .navbar.transparent .logo,
  .navbar.transparent .lang-switcher .lang-btn,
  .navbar.transparent .icon-btn {
    color: white;
  }

  /* dropdown should always be dark text on white bg */
  .menu-panel { background: #fff; }
  .menu-panel a { color: #111 !important; }
  .menu-panel a:hover,
  .menu-panel a:focus { background: #0077cc; color: #fff !important; }


  .navbar.hero-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .navbar.hero-transparent a,
  .navbar.hero-transparent .logo,
  .navbar.hero-transparent button {
    color: white;
  }
    
  
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    justify-content: space-between; /* logo on left, rest on right */
    padding-top: 30px; /* add some top padding */
    margin-right: 70px;
    
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.8rem;
  }
  
  .nav-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 10;
    transition: background-color 0.3s ease;
    margin-left: auto; /* pushes nav box away from logo */
    margin-right: 30px; /* space before lang switcher */
  }
  
  /* Make sure nav links inside look good */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
  }

  /* Style on hero section (default) */
.nav-box.transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .nav-box.transparent .nav-links li a {
    color: white;
  }
  
  /* Style after scrolling down */
  .nav-box.solid {
    background: rgba(255, 255, 255, 0.95);
  }
  
  .nav-box.solid .nav-links li a {
    color: #222;
  }
  
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    height: 100%; /* Make sure it fills the navbar height */
    padding: 0 0.5rem; /* Horizontal spacing between links */
  }
  

  .navbar {
  background-color: #faf3e0 !important; /* creamy white */
}


.nav-links li a:hover {
  background: rgba(240, 240, 240, 0.6);

}


  .lang-switch button {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    color: #333;
    

  }
  
  #lang-options {
    position: absolute;
    top: 110%;
    left: 0;
    background: transparent;  /* no white background */
    border: none;             /* no border */
    box-shadow: none;         /* no shadow */
    min-width: auto;
    padding: 0;
    margin: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
  }
  
  .lang-option-item {
    padding: 2px 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    color: inherit;  /* inherits text color */
  }
  
  .lang-option-item:hover {
    background-color: rgba(0,0,0,0.1); /* subtle highlight */
    border-radius: 4px;
  }
  
  #lang-active-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: inherit;
  }
  
/* Transparent style for hero */
.lang-btn.transparent {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
/* Solid style after scrolling */
.lang-btn.solid {
    background: white;
    color: #222;
    border: 1px solid #ccc;
}
  
 /* Hide navbar when scrolling down */
.navbar.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
  
.navbar {
    transition: transform 0.4s ease;
}
  
/* Lang part */
  .lang-switcher {
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  font-weight: 600;
  margin-right: -100px;
}

.lang-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  min-width: 90px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.lang-btn:hover,
.lang-btn:focus {
  border-color: #0077cc;
  background-color: #f0f8ff;
  outline: none;
}

.flag {
  font-size: 18px;
  line-height: 1;
}

.lang-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  min-width: 90px;
  z-index: 1000;
  padding: 4px 0;
  user-select: none;
}

.lang-options button {
  background: none;
  border: none;
  width: 100%;
  padding: 8px 16px;
  font-size: 14px;
  text-align: left;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}

.lang-options button:hover,
.lang-options button:focus {
  background-color: #0077cc;
  color: #fff;
  outline: none;
}

.hidden {
  display: none !important;
}

/* === Hamburger menu (next to language) === */
/* === Minimal hamburger — no background === */
.menu-wrapper { position: relative; display: inline-block; margin-left: 8px; }

.icon-btn {
  background: transparent;   /* no box */
  border: none;              /* no border */
  padding: 8px;              /* keeps a11y hit-area */
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 44px;           /* a11y size */
  min-height: 44px;
  color: currentColor;       /* inherits from .transparent/.solid below */
}

.icon-btn .bar {
  width: 20px;
  height: 2px;
  background: currentColor;  /* line color follows button color */
  border-radius: 2px;
  transition: opacity .2s ease;
}

.icon-btn:hover .bar { opacity: .8; }
.icon-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(0,0,0,.15); border-radius: 8px; }

/* Color states synced with navbar scroll logic */
.icon-btn.transparent { color: #fff; }  /* on hero */
.icon-btn.solid { color: #222; }        /* after scroll */

/* Drawer Styles */
.drawer {
  position: fixed;
  top: 0;
  right: -50%; /* hidden initially */
  width: 50%;
  height: 100%;
  background-color: rgb(75, 139, 223);
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  right: 0;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-menu li a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  transition: color 0.2s;
  padding-top: 0.5rem 0;
}

.drawer-menu li a:hover {
  color: #1e3a8a; /* highlight color */
}

/* Overlay behind the drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Menu Toggle Button */
.menu-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1100;
  background: #1e3a8a;
  color: #fff;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 6px;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .split-section {
      flex-direction: column;
    }
  
    .split-right,
    .split-left {
      flex: none;
      width: 100%;
      min-height: 300px;
    }
  
    .split-left {
      padding: 2rem;
      text-align: center;
    }


  }
  








.collection-section {
  background: white; /* creamy white */
  text-align: center;
  padding: 4rem 2rem;
  padding-top: 10rem; /* pushes title below navbar */
  
}

.collection-title {
  font-family: var(--font-tangier-bold);
  font-size: 9rem;
  color: #191951;
  margin-bottom: 2rem;
  font-weight: 700;
}

.collection-image {
  width: 380px;
  height: 480px;
  background-color: #fdfbee; /* pale beige */
  margin: 0 auto 2rem;
  border: 1px solid #eee;
}

.collection-subtitle {
  font-family: var(--font-tangier-bold);
  font-size: 4rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #0f0f0f;
}

.collection-list {
  font-family: var(--font-owners-bold);
  font-size: 2rem;
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 2.2rem;
  padding-top: 40px;
  
}



/* Product Gallery Section */
/* ================= SINGLE IMAGE SECTION ================= */

.single-image-section {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;          /* vertical breathing room */
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-image {
  width: 80%;                /* controls size */
  max-width: 1400px;         /* hard cap for large screens */
  height: auto;
  display: block;
  object-fit: contain;
}


/* === Create Section === */
.create-section {
  background: #fff;
  padding: 4rem 2rem;
  
}

.create-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.create-left {
  flex: 1;
}

.create-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;  /* ✅ vertically center */
  gap: 1.5rem;
}

/* Title (script font like your screenshot) */
.create-title {
  font-family: var(--font-tangier-bold); /* same fancy font */
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f0f0f;
}

/* Text */
.create-text {
  font-family: var(--font-owners-regular);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111;
}

/* Button */
.create-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px; /* pill shape */
  background-color: #0f0f2a; /* dark navy */
  color: #fdfbee; /* creamy text */
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.create-btn:hover {
  background-color: #1a1a3a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .create-container {
    flex-direction: column;
    text-align: center;
  }
  .create-right {
    align-items: center;
  }
}

/* ================= SPLIT IMAGE SECTION ================= */

.split-image-section {
  width: 100%;
  max-width: 1400px;     /* controls total width */
  margin: 0 auto;        /* ✅ centers the section */
  display: flex;
  justify-content: center;
  gap: 90px;
  padding: 0 40px;       /* breathing room */
  background-color: #ffffff;
  margin-bottom: 110px;
}

/* Each side */
.split-image {
  flex: 1;
  overflow: hidden;
}

/* Images */
.split-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.split-image,
.image-with-btn {
  position: relative;   /* REQUIRED for absolute button */
  overflow: hidden;
}

.image-pill-btn {
  position: absolute;
  bottom: 24px;
  left: 24px;

  background-color: #14145a;   /* dark blue */
  color: #ffffff;

  font-family: var(--font-owners-bold);
  font-size: 14px;
  font-weight: 700;

  padding: 14px 34px;
  border-radius: 999px;

  text-decoration: none;
  white-space: nowrap;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ================= CENTER IMAGE SECTION ================= */

.center-image-section {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;          /* vertical breathing room */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -30px;
}

.center-image {
  width: 80%;                /* controls size */
  max-width: 1100px;          /* hard cap */
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .center-image {
    width: 90%;
  }

  .center-image-section {
    padding: 60px 0;
  }
}



@media (max-width: 1200px) {
  .six-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .six-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.six-image-grid {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  margin-top: 80px;
}

.six-image-grid img {
  width: 100%;
  height: 180px;        /* 👈 THIS controls size */
  object-fit: cover;   /* keeps them clean & equal */
  display: block;
  border-radius: 12px;
}



.collection-single {
  width: 100%;
  padding: 0;                 /* remove breathing */
}

.collection-single-img {
  width: 100vw;
  max-width: none;
  height: auto;
  display: block;

  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 30px;
}

/* Section wrapper */
.collection-single {
  width: 100vw;              /* 👈 viewport width */
  margin-left: calc(-50vw + 50%); /* 👈 breaks out of container */
}

/* Image + button container */
.collection-single-wrap {
  position: relative;   /* 👈 anchor for absolute button */
  width: 100%;
}

/* Full-bleed image (no left gap issue) */
.collection-single-img {
  width: 100%;
  display: block;
}

/* Button bottom-right */
.collection-discover-btn {
  position: absolute;
  bottom: 6%;
  right: 13%;              /* ⬅️ increase this to move LEFT */

  background-color: #f7f3df;   /* beige */
  color: #14145a;              /* dark blue text */

  font-family: var(--font-owners-bold);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 44px;
  border-radius: 999px;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Luxury hover */
.collection-discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}













:root {
  --font-tangier-bold: "tangier", sans-serif;           /* 700 normal */
  --font-owners-regular: "owners", sans-serif;          /* 400 normal */
  --font-owners-medium: "owners", sans-serif;           /* 500 normal */
  --font-owners-medium-italic: "owners", sans-serif;    /* 500 italic */
  --font-owners-bold: "owners", sans-serif;             /* 700 normal */
  --font-owners-bold-italic: "owners", sans-serif;      /* 700 italic */
  --font-owners-black: "owners", sans-serif;            /* 800 normal */
  --font-owners-black-italic: "owners", sans-serif;     /* 800 italic */
}

/* Base text */
html, body {
  font-family: var(--font-owners-regular);
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Form elements inherit font */
button, input, select, textarea {
  font-family: inherit;
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}




/* ===== Footer language bar ===== */
.site-footer {
    background-color: rgb(15, 29, 86);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    margin: 0;
}
.site-footer {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}


.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
}


.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-columns h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-columns ul {
    list-style: none;
    padding: 0;
}

.footer-columns ul li {
    margin-bottom: 8px;
}

.footer-columns a {
    color: #ccc;
    text-decoration: none;
}

.footer-columns a:hover {
    color: #fff;
}

.footer-lang {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: #fff;
    color: #333;
    font-size: 0.95rem;
}

.footer-lang span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-lang span:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #0f0f0f;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-logo {
  max-width: 120px;   /* Adjust as needed */
  height: auto;       /* Keeps aspect ratio */
  display: block;     /* Prevents inline spacing issues */
}


/* =========================
   Products page iPhone fix
   ========================= */
@media (max-width: 430px) {
  .collection-section {
    padding-top: calc(10rem + env(safe-area-inset-top));
  }
}

@media (max-width: 430px) {
  .collection-title {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  .collection-subtitle {
    font-size: 2rem;
  }

  .collection-list {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

@media (max-width: 430px) {
  main > section:first-child {
    padding-top: calc(9rem + env(safe-area-inset-top));
  }
}

/* =========================================================
   PRODUCTS PAGE — RESPONSIVE OVERRIDES (PASTE AT VERY BOTTOM)
   Desktop stays the same. Mobile becomes clean + no overlap.
   ========================================================= */

/* 0) Fix invalid top value causing iOS weirdness */
.navbar { top: 0 !important; }

/* 1) Establish a consistent "navbar height" variable per breakpoint */
:root { --nav-h: 120px; } /* desktop-ish default */

/* 2) Reserve space for the fixed navbar (this is the real fix) */
body { padding-top: var(--nav-h); }

/* 3) Smooth anchor jumps shouldn't hide behind navbar */
section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* 4) Mobile Safari notch support (adds extra safety) */
@supports (padding: max(0px)) {
  body { padding-top: max(var(--nav-h), calc(var(--nav-h) + env(safe-area-inset-top))); }
  section[id] { scroll-margin-top: max(calc(var(--nav-h) + 12px), calc(var(--nav-h) + env(safe-area-inset-top) + 12px)); }
}

/* 5) Prevent horizontal scrolling issues caused by 100vw sections */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ---------------------------------------------------------
   <= 1200px (small laptops / large tablets)
   --------------------------------------------------------- */
@media (max-width: 1200px) {
  :root { --nav-h: 110px; }

  .nav-container {
    margin-right: 0;
    padding-top: 18px;
  }

  #logo-img { margin-left: 0; }
}

/* ---------------------------------------------------------
   <= 992px (tablets)
   --------------------------------------------------------- */
@media (max-width: 992px) {
  :root { --nav-h: 100px; }

  .nav-container {
    max-width: 92vw;
    margin-right: 0;
    padding-top: 14px;
  }

  /* Keep desktop nav if you want; but most sites hide it here */
  .nav-box { gap: .9rem; padding: .5rem 1rem; }
  .nav-links { gap: 1rem; }
}

/* ---------------------------------------------------------
   <= 768px (common mobile breakpoint)
   --------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --nav-h: 88px; }

  /* NAV: simplify header area */
  .nav-container {
    max-width: 94vw;
    margin-right: 0;
    padding-top: 10px;
    align-items: center;
  }

  /* Logo bigger on mobile */
  .logo img, .logo svg { height: 42px; }
  #logo-img { margin-left: 0; }

  /* Hide desktop pill nav; rely on hamburger + drawer */
  .nav-box { display: none !important; }

  /* Remove the negative margin that can push items offscreen */
  .lang-switcher { margin-right: 0 !important; }

  /* Drawer should be wider on mobile */
  .drawer {
    width: 86% !important;
    right: -86% !important;
    padding: 1.5rem !important;
  }
  .drawer.open { right: 0 !important; }

  .drawer-menu li a { font-size: 1.6rem; }

  /* ---- PRODUCTS HERO / TOP SECTION ----
     Your .collection-section had padding-top: 20rem (huge).
     On mobile, we use nav height + safe area and keep it elegant. */
  .collection-section {
    padding-top: calc(var(--nav-h) + 32px) !important;
    padding-left: 6vw !important;
    padding-right: 6vw !important;
    padding-bottom: 3rem !important;
  }

  .collection-title {
    font-size: 3.4rem !important;
    line-height: 1.05 !important;
    margin-bottom: 1.2rem !important;
  }

  .collection-subtitle {
    font-size: 2.2rem !important;
    margin: 1.5rem 0 .75rem !important;
  }

  .collection-list {
    font-size: 1.25rem !important;
    line-height: 1.85rem !important;
    padding-top: 18px !important;
  }

  .collection-image {
    width: 220px !important;
    height: 220px !important;
  }

  /* Single image section */
  .single-image-section { padding: 70px 0 !important; }
  .single-image { width: 92% !important; }

  /* Create section becomes stacked */
  .create-section { padding: 3rem 6vw !important; }
  .create-title { font-size: 2rem !important; }
  .create-text { font-size: 1rem !important; }
  .create-btn { font-size: 1.1rem !important; padding: .9rem 2rem !important; }

  /* Split image section becomes vertical */
  .split-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    padding: 0 6vw !important;
    margin-bottom: 70px !important;
  }

  .image-pill-btn {
    bottom: 16px !important;
    left: 16px !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
  }

  /* Center image section */
  .center-image-section { padding: 70px 0 !important; margin-top: 0 !important; }
  .center-image { width: 92% !important; }

  /* 6-grid -> 2 columns already, but tighten heights */
  .six-image-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    padding: 0 6vw !important;
    margin-top: 50px !important;
  }
  .six-image-grid img { height: 140px !important; }

  /* Full-bleed collection single + button positioning for mobile */
  .collection-single-img { margin-top: 18px !important; }
  .collection-discover-btn {
    right: 6% !important;
    bottom: 6% !important;
    padding: 14px 26px !important;
    font-size: 13px !important;
  }

  /* Footer layout */
  .footer-main { padding: 32px 6vw !important; }
  .footer-columns { gap: 24px !important; }
}

/* ---------------------------------------------------------
   <= 600px (smaller phones)
   --------------------------------------------------------- */
@media (max-width: 600px) {
  :root { --nav-h: 82px; }

  .collection-title { font-size: 3rem !important; }
  .collection-subtitle { font-size: 2rem !important; }

  .drawer-menu { gap: 1.1rem !important; }
  .drawer-menu li a { font-size: 1.45rem !important; }

  .six-image-grid img { height: 130px !important; }

  .collection-image {
    width: 200px !important;
    height: 200px !important;
  }
}

/* ---------------------------------------------------------
   <= 430px (iPhone 12/13/14 Pro range) — the "About fix" level
   --------------------------------------------------------- */
@media (max-width: 430px) {
  :root { --nav-h: 78px; }

  /* This is the key: guarantee the first title never hides */
  .collection-section {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top) + 28px) !important;
  }

  .collection-title { font-size: 2.7rem !important; }
  .collection-list  { font-size: 1.15rem !important; line-height: 1.7rem !important; }

  /* Button on full bleed image: keep inside safe area */
  .collection-discover-btn {
    right: calc(6% + env(safe-area-inset-right)) !important;
    bottom: calc(6% + env(safe-area-inset-bottom)) !important;
  }

  .drawer { width: 92% !important; right: -92% !important; }
}

/* ---------------------------------------------------------
   <= 375px (iPhone SE / very small)
   --------------------------------------------------------- */
@media (max-width: 375px) {
  :root { --nav-h: 74px; }

  .collection-title { font-size: 2.35rem !important; }
  .collection-subtitle { font-size: 1.85rem !important; }

  .collection-image { width: 180px !important; height: 180px !important; }

  .image-pill-btn { padding: 10px 18px !important; font-size: 12px !important; }

  .six-image-grid img { height: 120px !important; }
}

/* =========================================
   MOBILE BUTTON SCALE DOWN (PRODUCTS PAGE)
   ========================================= */

/* Tablets & down */
@media (max-width: 768px) {

  /* Create section CTA */
  .create-btn {
    font-size: 1.05rem !important;
    padding: 0.7rem 1.8rem !important;
  }

  /* Image pill buttons */
  .image-pill-btn {
    font-size: 13px !important;
    padding: 10px 20px !important;
  }

  /* Full-bleed collection button */
  .collection-discover-btn {
    font-size: 13px !important;
    padding: 12px 24px !important;
  }
}

/* iPhone 12 / 13 / 14 size and smaller */
@media (max-width: 430px) {

  .create-btn {
    font-size: 0.95rem !important;
    padding: 0.6rem 1.6rem !important;
  }

  .image-pill-btn {
    font-size: 12px !important;
    padding: 9px 18px !important;
  }

  .collection-discover-btn {
    font-size: 12px !important;
    padding: 10px 20px !important;
  }
}

/* Very small phones (SE / mini) */
@media (max-width: 375px) {

  .create-btn {
    font-size: 0.9rem !important;
    padding: 0.55rem 1.4rem !important;
  }

  .image-pill-btn,
  .collection-discover-btn {
    font-size: 11.5px !important;
    padding: 8px 18px !important;
  }
}

/* =========================================
   FIX: Collection button covering image text
   ========================================= */

/* Mobile */
@media (max-width: 768px) {
  .collection-discover-btn {
    bottom: 12% !important;   /* move UP away from text */
    right: 50% !important;    /* center horizontally */
    transform: translateX(50%); /* true center */
  }
}

/* iPhone 12 / 13 / 14 */
@media (max-width: 430px) {
  .collection-discover-btn {
    bottom: 14% !important;   /* extra clearance */
  }
}

/* Very small phones */
@media (max-width: 375px) {
  .collection-discover-btn {
    bottom: 16% !important;
  }
}

/* =========================================
   MOBILE: Collection button LEFT corner
   ========================================= */

/* Mobile & tablets */
@media (max-width: 768px) {
  .collection-discover-btn {
    left: 6% !important;     /* move to left corner */
    right: auto !important; /* disable right positioning */
    bottom: 14% !important; /* lift above image text */
    transform: none !important;
  }
}

/* iPhone 12 / 13 / 14 */
@media (max-width: 430px) {
  .collection-discover-btn {
    left: 6% !important;
    bottom: 16% !important;
  }
}

/* Very small phones (SE, mini) */
@media (max-width: 375px) {
  .collection-discover-btn {
    left: 5% !important;
    bottom: 18% !important;
  }
}
