/* ===== PRODUCTS PAGE ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  /* 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: 0;
    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 */
    background-color: #0A0A2A;
  }
  
  /* 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;
    background-color: #0A0A2A;
  }
  
  /* Style after scrolling down */
  .nav-box.solid {
    background-color: #0A0A2A;
  }
  
  .nav-box.solid .nav-links li a {
    color: white;
  }
  
  
  .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 a {
    text-decoration: none;
    color: white;
    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: white;
    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;
    }


  }
  
  /* ===== Footer language bar ===== */
.site-footer {
    background-color: #111135;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-main {
    padding: 40px 10%;
}

.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 Hero (first section) ===== */
:root{
  --navy: #111135;
  --beige: #faf3e0;
  --ink: #0b0b2b;
  --radius: 28px;
  --shadow: 0 2px 6px rgba(0,0,0,.12);
}

.products-hero{
  background: var(--navy);
  padding: clamp(48px, 6vw, 72px) 16px;
  padding-top: 200px;
}

.ph-wrap{
  max-width: 95%;        /* 👈 instead of 1280px */
  width: 95vw;           /* stretch wider */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;             /* slightly bigger gap to match scale */
}

.ph-card{
  background: var(--beige);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: var(--shadow);
  border: 10px solid var(--navy);

  padding: 40px 40px 0;   /* 👈 NO bottom padding */
  min-height: unset;     /* 👈 remove forced height */
}


.ph-left{ display:flex; flex-direction:column; justify-content:flex-start; }
.ph-right{ position:relative; display:flex; align-items:center; justify-content:center; }

.ph-over{
  font-family: var(--font-tangier-bold);
  font-size: clamp(28px, 4.2vw, 56px);

  margin-bottom: 8px;
  letter-spacing: .5px;
  font-weight: 700 ;
  font-size: 5rem;
  color: rgb(75, 139, 223);
}




.ph-title{
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.05;
  margin: 10px 0 18px;
  color: #171754;
}

.ph-leftline{
  text-align: left;
  padding-left: 20px;
}

.ph-rightline{
  text-align: right;
  padding-right: 20px;
  color: #171754;
}


.ph-copy{
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  color: #171754;
  max-width: 58ch;
  font-size: 1.1rem;
  font-weight: 600;
}
.ph-lead{ margin: 14px 0 22px; }
.nowrap{ white-space: nowrap; }

.ph-btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  margin: 10px 0 18px;
  padding: 14px 22px;
  background: #171754;
  color: var(--beige);
  border-radius: 40px;
  font-weight: 800;
  text-decoration:none;
  border: 2px solid var(--navy);
  transition: transform .08s ease, box-shadow .2s ease;
}
.ph-btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.ph-btn:active{ transform: translateY(0); }

.ph-foot{
 
  font-weight: 700;
  color:#171754;
  font-size: clamp(20px,1.6vw,22px);
}

.ph-img-placeholder{
  width: min(86%, 400px);
  height: min(60vh, 3600px);
  border-radius: 22px;
  
}

.ph-script{
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3vw, 40px); /* give it breathing room */
  transform: translateX(-50%);
  font-family: var(--font-tangier-bold);
  font-size: clamp(32px, 4vw, 48px); /* same scale as screenshot */
  color: #171754;
  text-align: center;
  width: 100%;
  font-weight: 700;
}


/* Responsive */
@media (max-width: 980px){
  .ph-wrap{ grid-template-columns: 1fr; }
  .ph-card{ min-height: unset; }
  .ph-right{ order: 2; }
}

/* ===== Products Grid (second section) ===== */
.products-grid{
  background: var(--navy);           /* continues the blue */
  padding: clamp(32px, 5vw, 54px) 16px;
}

/* Bigger beige box */
.pg-card{
  max-width: 95%;          /* 👈 instead of 1280px cap */
  width: 95vw;             /* stretch close to screen edges */
  margin: 0 auto;
  background: var(--beige);
  border-radius: calc(var(--radius) * 1.2);
  border: 10px solid var(--navy);
  box-shadow: var(--shadow);
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}
/* clean grid with no phantom margins */
.pg-grid{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);  /* 6 across */
  gap: clamp(14px, 1.6vw, 22px);
  margin: 0;          /* important */
  padding: 0;         /* important */
  align-items: start; /* keeps tops aligned */
}

/* kill default figure margins and make tiles fill */
.pg-figure{
  margin: 0;                 /* default browser margin was pushing you off */
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: #e7e2d4;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* images fill the tile (if your src is valid) */
.pg-figure img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* captions centered, no weird offsets */
.pg-item{ display:flex; flex-direction:column; align-items:center; }
.pg-caption{ margin-top: 10px; text-align: center; }
.pg-title{ font-weight: 800; font-size: clamp(12px,1.2vw,14px); color:#0b0b2b; }
.pg-sub{   font-size: clamp(11px,1.1vw,13px); color:#111135; }




/* Hover (subtle, not Vegas) */
.pg-item:hover .pg-figure img{ transform: scale(1.02); transition: transform .25s ease; }

/* Responsive columns to keep the rhythm */
@media (max-width: 1200px){ .pg-grid{ grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1024px){ .pg-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 820px){  .pg-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px){  .pg-grid{ grid-template-columns: repeat(2, 1fr); } }


/* ===== Products Closing (third section) ===== */
.products-closing{
  background: var(--navy);
  padding: clamp(60px, 10vh, 120px) 16px;
  text-align: center;
}

.pc-quote{
  font-family: var(--font-tangier-bold);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--beige);
  margin-bottom: 28px;
  line-height: 1.4;
}


.pc-link{
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--beige);
  text-decoration: none;
  border-bottom: 2px solid var(--beige);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.pc-link:hover{
  color: #d6d3f0;
  border-color: #d6d3f0;
}

/* ===== Products Thank You (fourth section) ===== */
.products-thankyou{
  background: var(--navy);
  padding: clamp(40px, 7vw, 80px) 16px;
}

/* Bigger beige box */
.pt-card{
  max-width: 95%;          /* 👈 instead of 1280px cap */
  width: 95vw;             /* stretch close to screen edges */
  margin: 0 auto;
  background: var(--beige);
  border-radius: calc(var(--radius) * 1.2);
  border: 10px solid var(--navy);
  box-shadow: var(--shadow);
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 100px;
}

/* Left: Thank You */
.pt-big{
  display: flex;
  flex-direction: column;
  font-weight: 750;
  font-style: italic;
  font-size: 8rem;
  line-height: 1;
  color: rgb(17, 17, 60);
}

.pt-leftline{
  text-align: left;
  color: rgb(17, 17, 60);
  padding-left: 20px;


}
.pt-rightline{
  text-align: right;
  color: var(--navy);
  padding-right: 30px;
}

/* Right content */
.pt-text{
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgb(21, 21, 69);
  margin-bottom: 20px;
}

.pt-text em{ font-style: italic; font-weight: 600; }
.pt-text .highlight{ color: #4b8d3a; font-weight: 700; }

.pt-sub{
  font-weight: 800;
  margin-bottom: 16px;
  color: rgb(26, 26, 102);
  font-size: clamp(14px, 1.8vw, 18px);
}

.pt-btn{
  display: inline-block;

  padding: 18px 44px;        /* BIGGER — height & width */
  background: #14145a;
  color: var(--beige);

  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;

  text-decoration: none;
  border-radius: 999px;      /* FULL pill */
  
  transition: 
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.pt-btn:hover{
  background: #0d0d2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}


/* Responsive */
@media (max-width: 820px){
  .pt-card{ grid-template-columns: 1fr; text-align: center; }
  .pt-big{ text-align: center; margin-bottom: 24px; }
}








: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;
}


:root{
  --container: min(96vw, 1600px);   /* same width everywhere */
  --card-pad: clamp(32px, 4vw, 48px);
}

/* FIRST SECTION WRAP (two cards) */
.ph-wrap{
  max-width: var(--container);
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;                        /* visual gutter between the two beige cards */
}

/* SECOND SECTION CARD (grid) */
.pg-card{
  max-width: var(--container);
  width: var(--container);
  margin: 0 auto;
  background: var(--beige);
  border-radius: calc(var(--radius) * 1.2);
  border: 10px solid var(--navy);
  box-shadow: var(--shadow);
  padding: var(--card-pad);
}

/* FOURTH SECTION CARD (thank you) */
.pt-card{
  max-width: var(--container);
  width: var(--container);
  margin: 0 auto;
  background: var(--beige);
  border-radius: calc(var(--radius) * 1.2);
  border: 10px solid var(--navy);
  box-shadow: var(--shadow);
  padding: var(--card-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}


/* === KILL ALL ROGUE WIDTHS & FORCE 6 BIG COLUMNS === */

/* Card must be full width */
.pg-card{
  width: var(--container, 96vw) !important;
  max-width: var(--container, 96vw) !important;
  margin: 0 auto !important;
}

/* Actual 6 columns that STRETCH */
.pg-grid{
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  grid-auto-columns: 1fr !important;
  gap: clamp(12px, 1.2vw, 18px) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;

  /* If some genius centered the tracks */
  justify-content: stretch !important;
  align-content: start !important;
  justify-items: stretch !important;
  align-items: start !important;
}

/* NUKE fixed widths from other styles */
.pg-item,
.pg-figure,
.pg-figure img{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.pg-figure{
  margin: 0 !important;
  aspect-ratio: 3 / 4 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #e7e2d4 !important;
}

.pg-figure img{
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Captions clean & tight */
.pg-caption{ margin-top: 10px !important; text-align: center !important; }

/* === FIX PRODUCTS GRID: real 6-up, full width === */

/* 1) Stop choking the grid: card should NOT be a 2-col grid */
.products-grid .pg-card{
  display:block !important;           /* was display:grid */
  grid-template-columns: unset !important;
}

/* 2) Six columns that actually stretch */
.products-grid .pg-grid{
  display:grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: clamp(12px, 1.2vw, 18px) !important;
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
  align-items:start !important;
  justify-items:stretch !important;
}

/* 3) Make tiles fill the track and look big */
.products-grid .pg-item{ margin:0 !important; }
.products-grid .pg-figure{
  width:100% !important;
  aspect-ratio: 3 / 4 !important;     /* adjust if you want taller/shorter */
  border-radius:14px !important;
  overflow:hidden !important;
  background:#e7e2d4 !important;
  box-shadow:0 1px 3px rgba(0,0,0,.08) !important;
}
.products-grid .pg-figure img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

/* 4) Responsive steps (optional, keeps rhythm) */
@media (max-width: 1200px){ .products-grid .pg-grid{ grid-template-columns: repeat(5, 1fr) !important; } }
@media (max-width: 1024px){ .products-grid .pg-grid{ grid-template-columns: repeat(4, 1fr) !important; } }
@media (max-width: 820px){  .products-grid .pg-grid{ grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 600px){  .products-grid .pg-grid{ grid-template-columns: repeat(2, 1fr) !important; } }

/* ===== Brown with Dots Banner ===== */
.brown-banner{
  width: 100%;
  overflow: hidden;
  background-color: #111135;  /* fallback navy in case image fails */
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 8px solid #111135;   /* subtle separator, optional */
}

.brown-banner-img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.brown-banner-img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;

}

.ph-img-placeholder {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  display: block;

  padding: 0;
  margin: 0;            /* 👈 important */
}

.ph-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;

  margin: 0;            /* 👈 kill default margins */
}

/* ===============================
   PRODUCTS HERO — TITLE VISIBILITY FIX
   =============================== */

@media (max-width: 768px) {

  .products-hero {
    padding-top: calc(120px + env(safe-area-inset-top));
  }

}

/* ======================================================
   PRODUCTS PAGE — FULL RESPONSIVE FIX (MOBILE FIRST)
   ====================================================== */

@media (max-width: 1024px) {

  /* ---------- HERO ---------- */
  .products-page .products-hero {
    padding-top: 140px;
  }

  .products-page .ph-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-page .ph-card {
    padding: 28px 24px;
  }

  .products-page .ph-over {
    font-size: 2.6rem;
    text-align: center;
  }

  .products-page .ph-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .products-page .ph-leftline,
  .products-page .ph-rightline {
    text-align: center;
    padding: 0;
  }

  .products-page .ph-copy {
    font-size: 1rem;
    text-align: center;
    max-width: none;
  }

  .products-page .ph-btn {
    align-self: center;
  }

  .products-page .ph-foot {
    text-align: center;
  }

  .products-page .ph-img-placeholder {
    width: 100%;
    max-width: 360px;
  }

  .products-page .ph-script {
    position: static;
    transform: none;
    margin-top: 16px;
    font-size: 2rem;
  }
}

/* ---------- GRID ---------- */
@media (max-width: 900px) {
  .products-page .pg-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .products-page .pg-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .products-page .pg-card {
    padding: 24px;
  }
}

/* ---------- CLOSING ---------- */
@media (max-width: 768px) {
  .products-page .products-closing {
    padding: 60px 16px;
  }

  .products-page .pc-quote {
    font-size: 1.6rem;
  }
}

/* ---------- THANK YOU ---------- */
@media (max-width: 900px) {

  .products-page .pt-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .products-page .pt-big {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .products-page .pt-leftline,
  .products-page .pt-rightline {
    text-align: center;
    padding: 0;
  }

  .products-page .pt-text {
    font-size: 1rem;
  }

  .products-page .pt-btn {
    margin-top: 16px;
  }
}

/* ---------- BANNER ---------- */
@media (max-width: 600px) {
  .products-page .brown-banner {
    margin-top: 40px;
  }
}


/* ===============================
   PRODUCTS HERO — RIGHT PANEL FIX
   =============================== */

.ph-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 48px 24px;
  gap: 24px;

  position: relative;
}

.ph-img-placeholder {
  width: min(420px, 85%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* =====================================================
   PRODUCTS PAGE — MOBILE NAVBAR ONLY (DESKTOP SAFE)
   ===================================================== */

@media (max-width: 768px) {

  /* Hide desktop nav links */
  body.products-page .nav-box {
    display: none !important;
  }

  /* Clean navbar spacing */
  body.products-page .navbar {
    padding: 10px 16px;
  }

  body.products-page .nav-container {
    padding-top: 0;
    margin-right: 0;
    align-items: center;
  }

  /* Logo scale */
  body.products-page #logo-img {
    width: 120px;
    margin-left: 0;
  }

  /* Language + hamburger */
  body.products-page .lang-switcher {
    margin-right: 0;
  }

  body.products-page .menu-wrapper {
    margin-left: 6px;
  }
}
/* =====================================================
   PRODUCTS HERO — MOBILE STRUCTURE
   ===================================================== */

@media (max-width: 768px) {

  .products-page .products-hero {
    padding-top: 130px; /* clears fixed navbar */
  }

  .products-page .ph-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-page .ph-card {
    padding: 28px 22px;
  }

  /* Text centering */
  .products-page .ph-over,
  .products-page .ph-title,
  .products-page .ph-copy,
  .products-page .ph-foot {
    text-align: center;
  }

  .products-page .ph-leftline,
  .products-page .ph-rightline {
    padding: 0;
    text-align: center;
  }

  .products-page .ph-btn {
    align-self: center;
  }
}
/* =====================================================
   PRODUCTS HERO — RIGHT PANEL (MOBILE ONLY)
   ===================================================== */

@media (max-width: 768px) {

  .products-page .ph-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  /* Image centered & constrained */
  .products-page .ph-img-placeholder {
    width: 85%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Kill absolute positioning */
  .products-page .ph-script {
    position: static;
    transform: none;
    margin-top: 10px;

    font-size: 1.8rem;
    text-align: center;
    line-height: 1.2;
  }
}
