/* Core theme variables */
:root {
  --gs-bg: #f5eee6;
  --gs-brown-dark: #2c1e16;
  --gs-brown-mid: #3b2719;
  --gs-gold: #d1b38a;
  --gs-gold-soft: #e3c698;
  --gs-border: #d6c1a1;
  --gs-text: #3b2719;
  --gs-text-muted: #6b5241;
  --gs-cream: #fdf8f1;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--gs-bg);
  color: var(--gs-text);
}

/* Header */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #8a1b1b;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 90, 43, 0.4);
  padding: 0;
}

.gs-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Grillsn.png");
  background-repeat: repeat;
  background-size: 1200px 520px;
  background-position: center;
  opacity: 0.15;        
  z-index: 0;
  pointer-events: none;
}


.gs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 18px;
  height: 85px; /* Fixed clean height */
  position: relative;
  z-index: 1;
}

/* LOGO */
.gs-brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.gs-logo {
  height: 180px;     /* UPDATED SIZE */
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: 4px; /* small spacing from edge */
}


/* Navigation */
.gs-nav {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 24px;
}

.gs-nav-link {
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  padding-bottom: 3px;
}

.gs-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gs-gold);
  transition: width 0.2s ease;
}

.gs-nav-link:hover::after,
.gs-nav-link-active::after {
  width: 100%;
}

.gs-burger {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

.gs-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 10px 16px 12px;
  background-color: #8a1b1b !important;
  border-top: 1px solid rgba(139, 90, 43, 0.4);
}

.gs-mobile-nav.open {
  display: flex;
}

.gs-mobile-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 4px 0;
}

/* Hero */
/* HERO SLIDE – clean, no zoom animation */
.hero-slide {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* premium soft-dark overlay */
  z-index: 1;
}

/* HERO TEXT CENTERED */
.hero-content {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
}

/* Title */
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtitle */
.hero-content p {
  font-size: 20px;
  font-weight: 300;
}

/* Fade-in animation ONLY (no zoom) */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1.3s ease-out forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translate(-50%, -40%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-slide {
    height: 65vh;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-content {
    top: 60%;
  }
}



/* Buttons */
.gs-btn-primary,
.gs-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.gs-btn-primary {
  background: var(--gs-gold);
  color: var(--gs-brown-dark);
}

.gs-btn-primary:hover {
  background: var(--gs-gold-soft);
}

.gs-btn-secondary {
  background: transparent;
  border-color: #f3e4cf;
  color: #f3e4cf;
}

.gs-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Sections */
.gs-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px;
}

.gs-section-alt {
  background: #e9ddce;
  border-top: 1px solid var(--gs-border);
  border-bottom: 1px solid var(--gs-border);
}

.gs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.gs-section-header h2 {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gs-brown-mid);
}

.gs-link-inline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #8b5a2b;
}

/* Categories */
/* PERFECT 3-TILE CATEGORY GRID */
.gs-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* EXACT 3 TILES */
  gap: 30px;
  margin-top: 30px;
}

/* Category tiles */
.gs-category-card {
  position: relative;
  height: 380px;               /* perfect height */
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gs-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.gs-category-label {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.8);
}

/* MOBILE — 1 tile per row */
@media (max-width: 700px) {
  .gs-category-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gs-category-card {
    height: 300px;
  }
}

/* TABLET — 2 tiles per row */
@media (max-width: 1024px) and (min-width: 701px) {
  .gs-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.gs-category-label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.gs-category-sub {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: #f3e4cf;
}

/* Pillars & grids */
.gs-section-inner-two {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr;
  gap: 24px;
  align-items: flex-start;
}

.gs-section-inner-two p {
  font-size: 14px;
  color: var(--gs-text-muted);
  line-height: 1.6;
}

.gs-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gs-pillar-card {
  background: #f5ebdd;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #ddc6a3;
  font-size: 12px;
  color: var(--gs-text-muted);
}

.gs-pillar-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gs-brown-mid);
}

/* Items */
.items-swiper {
  padding-bottom: 20px;
}

.gs-item-card {
  background: var(--gs-cream);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ead7bc;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gs-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.gs-item-body {
  padding: 12px;
  font-size: 12px;
  color: var(--gs-text);
}

.gs-item-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8b5a2b;
  margin-bottom: 4px;
}

.gs-item-name {
  font-weight: 600;
  color: var(--gs-brown-mid);
}

.gs-item-meta {
  margin-top: 2px;
  font-size: 11px;
  color: #7b6550;
}

.gs-item-copy {
  margin-top: 6px;
  font-size: 11px;
  color: #6b5241;
}

.gs-item-note {
  margin-top: 8px;
  font-size: 10px;
  color: #8b5a2b;
}

/* Footer */
.gs-footer {
  background-color: #8a1b1b !important;
  color: #f3e4cf;
  border-top: 1px solid rgba(139, 90, 43, 0.4);
  margin-top: 40px;
  position: relative;     /* REQUIRED */
  overflow: hidden;       /* REQUIRED */
}


.gs-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Grillsn.png");
  background-repeat: repeat;
  background-size: 1200px 520px;
  background-position: center;
  opacity: 0.12;          /* 👈 FOOTER GRID OPACITY */
  z-index: 0;
  pointer-events: none;
}


.gs-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 16px;
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr;
  gap: 18px;
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.gs-footer-col h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.gs-footer-col h4 {
  margin: 0 0 8px;
  font-size: 13px;
}

.gs-footer-col p {
  margin: 0 0 6px;
  color: #e1d0b5;
}

.gs-footer-col a {
  display: block;
  text-decoration: none;
  color: #e1d0b5;
  margin-bottom: 4px;
}

.gs-footer-col a:hover {
  color: var(--gs-gold-soft);
}

.gs-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.gs-footer-bottom {
  text-align: center;
  font-size: 11px;
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(139, 90, 43, 0.4);
  color: #bda88c;
}

/* WhatsApp */
.gs-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (min-width: 768px) {
  .gs-nav { display: flex; }
  .gs-burger { display: none; }
  .hero-content h1 { font-size: 40px; }
  .hero-content p { font-size: 15px; }
}

@media (max-width: 767px) {
  .hero-wrapper { height: 60vh; }
  .hero-content h1 { font-size: 24px; }
  .hero-content p { font-size: 13px; }
  .gs-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gs-section-inner-two,
  .gs-about-grid,
  .gs-contact-grid { grid-template-columns: 1fr; }
  .gs-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .gs-category-grid { grid-template-columns: 1fr; }
  .gs-footer-inner { grid-template-columns: 1fr; }
}

/* Mobile header should be smaller */
@media (max-width: 767px) {
  .gs-header-inner {
    height: 90px;      /* smaller mobile header */
    padding: 0 10px;   /* reduce side padding */
  }

  .gs-logo {
    height: 120px;     /* reduced mobile logo */
  }
}

@media (max-width: 520px) {
  .gs-header-inner {
    height: 60px;      /* even smaller for small phones */
    padding: 0 8px;
  }

  .gs-logo {
    height: 130px;      /* perfect size for small screens */
  }
}

/* ----------------------------------------------------------
   DESKTOP DROPDOWN MENU
---------------------------------------------------------- */

.gs-menu-item {
  margin-top: -6px;
  position: relative;
}

.gs-menu-item .gs-nav-link {
  cursor: pointer;
}

.gs-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #8a1b1b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 999;
}

.gs-dropdown a {
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease;
}

.gs-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Show dropdown on hover */
.gs-menu-item:hover .gs-dropdown {
  display: flex;
}

/* ----------------------------------------------------------
   MOBILE ACCORDION MENU
---------------------------------------------------------- */

.gs-mobile-group {
  width: 100%;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.gs-mobile-title {
  display: block;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 4px;
  cursor: pointer;
}

.gs-mobile-title::after {
  content: "▾";
  float: right;
  margin-right: 6px;
  opacity: 0.8;
}

.gs-mobile-sub {
  display: none;
  flex-direction: column;
  padding-left: 10px;
  padding-bottom: 8px;
}

.gs-mobile-sub a {
  text-decoration: none;
  color: #f5e9dd;
  padding: 6px 0;
  font-size: 13px;
}

/* Expanded state */
.gs-mobile-group.open .gs-mobile-sub {
  display: flex;
}

.gs-mobile-group.open .gs-mobile-title::after {
  content: "▴";
}


/* Premium Footer Grid */
.gs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

/* Brand Column */
.gs-footer-brand {
  text-align: left;
}

.gs-footer-logo {
  height: 130px;
  width: auto;
  margin-bottom: 10px;
}

.gs-footer-tagline {
  margin: 0 0 14px;
  font-size: 14px;
  color: #f3e4cf;
}

/* Large Social Icons */
.big-icons a {
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8b5a2b;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}

.big-icons a:hover {
  background: var(--gs-gold);
  color: #3b2719;
}

/* Footer Columns */
.gs-footer {
  background-color: #8a1b1b !important;
  color: #f3e4cf;
  padding: 60px 0 20px;
}

.gs-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT LOGO BLOCK */
.gs-footer-logo-block {
  text-align: left;
}

.gs-footer-logo {
  height: 220px;   /* Increased spacing but not pushing footer down */
  margin-bottom: 10px;
}

/* Social Row */
.gs-social-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;  /* Smaller gap so logo & icons stay together */
}

.gs-social-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #8a552b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

/* Section Titles */
.gs-footer-col h4,
.gs-footer-col h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 600;
}

/* Footer Links */
.gs-footer-col a {
  display: block;
  color: #f3e4cf;
  margin-bottom: 8px;
  font-size: 15px;
  text-decoration: none;
}

.gs-footer-col a:hover {
  color: var(--gs-gold-soft);
}

/* Copyright */
.gs-footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
  opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* MOBILE VIEW */
@media (max-width: 900px) {
  .gs-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .gs-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gs-footer-logo {
    height: 180px;
    margin: 0 auto;
  }

  .gs-social-row {
    justify-content: center;
  }
}


/* LEFT FOOTER BLOCK MATCHING REFERENCE DESIGN */
.gs-footer-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Logo bigger like reference */
.gs-footer-logo {
  height: 160px;           /* adjust as you want */
  margin-bottom: 10px;
}

/* Tagline */
.gs-footer-tagline {
  color: #f3e4cf;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Social icons row */
.gs-footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
  margin-top: -90px;
  margin-left: -25px;
  margin-right: 25px;
}

.gs-footer-social a {
  width: 36px;
  height: 36px;
  background: #8a552b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  transition: 0.2s ease-in-out;
}

.gs-footer-social a:hover {
  background: #b7834a;
}


/* FOOTER LOGO CONTROLS */
.gs-footer-logo {
  height: 350px;   
  margin-bottom: 5px;
  margin-top: -90px;
  margin-left: 25px;
  margin-right: 25px;
  display: block;
}


/* ---------------------- */
/* RESPONSIVE FIX ONLY    */
/* ---------------------- */

/* TABLET FIXES (≤ 900px) */
@media (max-width: 900px) {

  .gs-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Tablet logo balanced */
  .gs-footer-logo {
    height: 240px;   
    margin-top: -20px; 
    margin-left: 0;
  }

  /* Tablet social row centered but NOT too small */
  .gs-footer-social {
    justify-content: center;
    margin-top: 0;
    margin-left: 0;
  }

  .gs-footer-social a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}


/* MOBILE FIXES (≤ 600px) */
@media (max-width: 600px) {

  .gs-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gs-footer-left {
    align-items: center;
  }

  /* MOBILE LOGO PERFECT SIZE + CENTERED */
  .gs-footer-logo {
    height: 180px;     /* clean size for phones */
    margin: 0 auto 8px auto;
    margin-top: -10px;
  }

  /* SOCIAL ICONS PERFECT CENTERING */
  .gs-footer-social {
    justify-content: center;
    margin: 5px 0 20px 0;
    gap: 16px;
  }

  .gs-footer-social a {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 55px;
  z-index: 9999;
}

.whatsapp-link {
  position: relative;
  display: inline-block;
  background-color: #25D366;
  color: white;
  font-size: 32px;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.whatsapp-link:hover {
  transform: scale(1.08);
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #333;
  padding: 6px 14px;
  font-size: 15px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-weight: 500;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .whatsapp-link {
    width: 52px;
    height: 52px;
    font-size: 28px;
    line-height: 52px;
  }

  .tooltip {
    display: none; /* cleaner UI for mobile */
  }
}




/* -------------------------------------- */
/* PAGE HERO BANNER                       */
/* -------------------------------------- */
.gold-hero-wrapper {
  width: 100%;
  height: 420px;
  position: relative;
}

.gold-hero-slide {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8e9d0;
  text-align: center;
  padding: 20px;
}

.gold-hero-slide h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gold-hero-slide p {
  font-size: 18px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 600px) {
  .gold-hero-wrapper,
  .gold-hero-slide {
    height: 300px;
  }

  .gold-hero-slide h1 {
    font-size: 26px;
  }

  .gold-hero-slide p {
    font-size: 14px;
  }
}


/* -------------------------------------- */
/* PRODUCT GRID                           */
/* -------------------------------------- */
.gold-products-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: auto;
}

.gold-products-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 35px;
  color: #4d1a02;
}

.gold-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* Product card */
.gold-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s ease;
  cursor: pointer;
}

.gold-product-card:hover {
  transform: translateY(-6px);
}

.gold-product-img {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
}

.gold-product-body {
  padding: 14px 16px;
}

.gold-product-name {
  font-size: 17px;
  font-weight: 600;
  color: #4d1a02;
  margin-bottom: 4px;
}

.gold-product-meta {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.gold-product-desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.gold-product-note {
  font-size: 13px;
  color: #8a552b;
  font-style: italic;
}


/* -------------------------------------- */
/* RESPONSIVE GRID                        */
/* -------------------------------------- */
@media (max-width: 1024px) {
  .gold-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gold-product-img {
    height: 230px;
  }
}

@media (max-width: 768px) {
  .gold-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gold-product-img {
    height: 200px;
  }
}

@media (max-width: 500px) {
  .gold-products-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gold-product-img {
    height: 260px;
  }
}


/* ================================
   GOLD COLLECTION PAGE
   ================================ */

/* Page header above grids */
.gs-collection-header {
  max-width: 1120px;
  margin: 32px auto 8px;
  padding: 0 24px;
}

.gs-collection-header h1 {
  font-size: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs-brown-mid);
  margin: 0 0 6px;
}

.gs-collection-header p {
  margin: 0;
  font-size: 13px;
  color: var(--gs-text-muted);
}

/* Category blocks */
.gs-category-block {
  max-width: 1120px;
  margin: 24px auto 8px;
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(139, 90, 43, 0.18);
}

.gs-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.gs-category-header h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gs-brown-mid);
}

.gs-category-chip {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(139, 90, 43, 0.4);
  color: var(--gs-text-muted);
}

/* Product grid */
.gs-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* Card */
.gs-product-card {
  background: var(--gs-cream);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ead7bc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.gs-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* Image wrapper & hover zoom */
.gs-product-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f8efe3;
}

.gs-product-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gs-product-card:hover .gs-product-img {
  transform: scale(1.06);
}

/* Small “tap to zoom” hint on hover (desktop only) */
.gs-product-img-wrapper::after {
  content: "Click to view";
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fdf7ef;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 8px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gs-product-card:hover .gs-product-img-wrapper::after {
  opacity: 1;
  transform: translateY(0);
}

/* Meta under image */
.gs-product-meta {
  padding: 10px 12px 12px;
}

.gs-product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gs-brown-mid);
  margin-bottom: 2px;
}

.gs-product-spec {
  font-size: 11px;
  color: var(--gs-text-muted);
}

/* ========= IMAGE MODAL (ZOOM) ========= */

.gs-image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9999;
  padding: 16px;
}

.gs-image-modal.open {
  display: flex;
}

.gs-image-modal-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.gs-image-modal-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 10px;
  cursor: zoom-in;
}

.gs-image-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .gs-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gs-collection-header {
    margin-top: 24px;
  }

  .gs-collection-header h1 {
    font-size: 20px;
  }

  .gs-category-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gs-product-img {
    height: 190px;
  }

  .gs-product-img-wrapper::after {
    display: none; /* no tiny labels on small screens */
  }
}

@media (max-width: 480px) {
  .gs-products-grid {
    grid-template-columns: 1fr;
  }

  .gs-product-img {
    height: 220px;
  }
}


/* ================= ABOUT PAGE ================= */

.gs-about-hero {
  background: linear-gradient(
      rgba(15,10,8,0.55),
      rgba(15,10,8,0.55)
    ),
    url("Models/031A1603.JPG") center/cover no-repeat;
  padding: 140px 20px 100px;
  text-align: center;
  color: #fff;
}

.gs-about-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 600;
}

.gs-about-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* CONTENT */
.gs-about-section {
  padding: 80px 20px;
}

.gs-about-container {
  max-width: 1200px;
  margin: auto;
}

.gs-about-text {
  max-width: 700px;
  margin-bottom: 60px;
  text-align: center;
}

.gs-about-text h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.gs-about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

/* HIGHLIGHTS */
.gs-about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gs-about-card {
  background: #faf7f3;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease;
}

.gs-about-card:hover {
  transform: translateY(-6px);
}

.gs-about-card i {
  font-size: 30px;
  color: #8a552b;
  margin-bottom: 12px;
}

.gs-about-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.gs-about-card p {
  font-size: 14px;
  color: #555;
}

/* VISION */
.gs-about-vision {
  background: #8a1b1b;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.gs-about-vision-inner {
  max-width: 800px;
  margin: auto;
}

.gs-about-vision h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.gs-about-vision p {
  font-size: 16px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .gs-about-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .gs-about-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .gs-about-highlights {
    grid-template-columns: 1fr;
  }

  .gs-about-hero {
    padding: 120px 20px 80px;
  }
}


/* ================= CONTACT PAGE ================= */

.gs-contact-heading {
  text-align: center;
  padding: 70px 20px 30px;
}

.gs-contact-heading h1 {
  margin-top: -40px;
  font-size: 35px;
  margin-bottom: -20px;
}

.gs-contact-heading p {
  font-size: 20px;
  color: #666;
}

/* Layout */
.gs-contact-layout {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}

/* Left Card */
.gs-contact-card {
  background: #f7efe8; /* warm gold-tinted neutral */
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.gs-contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 0px;
}

.gs-contact-item i {
  font-size: 20px;
  color: #8a1b1b;
  margin-top: 0px;
}

.gs-contact-item h4 {
  margin-top: 0px;
  font-size: 15px;
  margin-bottom: -5px;
}

.gs-contact-item p {
  font-size: 14.5px;
  color: #444;
  line-height: 1;
}

/* Button */
.gs-contact-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px;
  background: #8a1b1b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

.gs-contact-btn:hover {
  background: #8a552b;
}

/* Map */
.gs-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  border: none;
}

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

  .gs-contact-card {
    padding: 30px;
  }

  .gs-contact-map iframe {
    min-height: 320px;
  }
}


/* ================================
   STORE LOCATOR SECTION
   ================================ */
/* ================= STORE LOCATOR SECTION ================= */

.gs-store-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
}

/* LEFT IMAGE — FIXED SHAPE */
.gs-store-image {
  width: 260px;
  min-height: 360px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;   /* FULL IMAGE FIT */
  background-color: #f3e4cf;

  border-radius: 18px;
}

/* RIGHT CONTENT */
.gs-store-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--gs-brown-mid);
}

.gs-store-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gs-text-muted);
  margin-bottom: 26px;
  max-width: 520px;
}

.gs-store-pillars {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin-bottom: 30px;
}

.gs-store-pillar {
  background: #f5ebdd;
  border: 1px solid #ddc6a3;
  border-radius: 12px;
  padding: 10px 16px;      /* tighter */
  font-size: 13px;
  font-weight: 600;
  color: var(--gs-brown-mid);
  white-space: nowrap;    /* prevents stretching */
}


/* CTA BUTTON */
.gs-store-btn {
  display: inline-block;
  background: #662202;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.gs-store-btn:hover {
  background: #8a552b;
}

@media (max-width: 900px) {
  .gs-store-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gs-store-image {
    margin: 0 auto;
  }

  .gs-store-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .gs-store-image {
    width: 220px;
    min-height: 300px;
  }

  .gs-store-content h2 {
    font-size: 22px;
  }

  .gs-store-pillars {
    grid-template-columns: 1fr;
  }
}


/* GOLD RATE DROPDOWN – PREMIUM */
.gs-gold-rate-menu {
  position: relative;
}

.gs-gold-trigger i {
  font-size: 11px;
  margin-left: 4px;
}

.gs-gold-rate-dropdown {
  position: absolute;
  top: 115%;
  right: 0;
  width: 320px;

  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px;

  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  display: none;
  animation: dropdownFade 0.35s ease forwards;
  z-index: 9999;
}

.gs-menu-item:hover .gs-gold-rate-dropdown {
  display: block;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gs-gold-rate-dropdown h4 {
  margin: 0 0 12px;
  font-size: 16px;
  text-align: center;
  color: #8a1b1b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Rate list */
.rate-list {
  display: grid;
  gap: 10px;
}

.rate-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: #f7efe8;
  border-radius: 12px;
  font-size: 14px;
}

.rate-item strong {
  color: #8a1b1b;
}

/* Footer text */
.rate-updated {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin: 14px 0;
}

/* CTA */
.rate-cta {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 999px;
  background: #8a1b1b;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.rate-cta:hover {
  background: #b52b2b;
}


/* GOLD RATE HERO */
.gold-rate-hero {
  text-align: center;
  padding: 80px 20px 50px;
}

.gold-rate-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #8a1b1b;
}

.gold-rate-hero p {
  font-size: 16px;
  color: #555;
}

/* RATE SECTION */
.gold-rate-section {
  padding: 40px 20px 80px;
}

/* GRID */
.gold-rate-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.gold-rate-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;

  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gold-rate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.2);
}

.gold-rate-card span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.gold-rate-card strong {
  font-size: 30px;
  color: #8a1b1b;
}

/* Muted card */
.gold-rate-card.muted {
  background: #f7efe8;
}

/* Footer text */
.gold-rate-update {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gold-rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .gold-rate-grid {
    grid-template-columns: 1fr;
  }

  .gold-rate-hero h1 {
    font-size: 30px;
  }
}

/* =========================
   GOLD RATES DROPDOWN
   ========================= */

.gs-gold-menu {
  position: relative;
}

/* Dropdown box */
.gs-gold-dropdown {
  position: absolute;
  top: 120%;
  left: 0;

  width: 260px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;

  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 9999;
}

/* Show on hover */
.gs-gold-menu:hover .gs-gold-dropdown {
  display: block;
}

/* Rate rows */
.gs-gold-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 8px 10px;
  margin-bottom: 6px;
  background: #f7efe8;
  border-radius: 8px;

  font-size: 13px;
}

.gs-gold-row strong {
  color: #8a1b1b;
}

/* Updated text */
.gs-gold-updated {
  margin-top: 10px;
  font-size: 11px;
  text-align: center;
  color: #666;
}

/* ================= HERITAGE + OWNER ================= */

.gs-heritage-owner-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin: 80px 0;
  align-items: center;
  animation: fadeUp 0.9s ease both;
  margin-top: -60px;
}

/* LEFT CONTENT */
.gs-heritage-title {
  font-size: 45px;
  margin-bottom: 16px;
  color: #4d1a02;
  font-weight: 600;
}

.gs-heritage-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  max-width: 720px;
}

/* TIMELINE */
.gs-heritage-timeline {
  position: relative;
  border-left: 3px solid #8a1b1b;
  padding-left: 40px;
  margin-bottom: 40px;
}

.gs-heritage-timeline {
  position: relative;
  border-left: 3px solid #8a1b1b;
  padding-left: 40px;
  margin-bottom: 40px;
}

.gs-heritage-year {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #8a1b1b;
  margin-bottom: 10px;
  position: relative;
}

.gs-heritage-year::before {
  content: "";
  position: absolute;
  left: -49px;              /* aligns with timeline */
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #8a1b1b;
  border-radius: 50%;
}

.gs-heritage-step p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #333;
  max-width: 700px;
}

/* SHOWROOM NOTE */
.gs-heritage-showroom {
  background: #f7efe8;
  padding: 28px 34px;
  border-radius: 18px;
  max-width: 820px;
}

.gs-heritage-showroom p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
}

/* RIGHT OWNER CARD */
.gs-owner-card {
  background: #faf7f3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gs-owner-card:hover {
  transform: translateY(-6px);
}

.gs-owner-photo {
  margin-top: 10px;
  margin-bottom: -30px;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.gs-owner-info {
  padding: 26px 28px;
  text-align: center;
}

.gs-owner-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #4d1a02;
}

.gs-owner-info span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a1b1b;
  margin-bottom: 14px;
}

.gs-owner-info p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

/* MOBILE */
@media (max-width: 900px) {
  .gs-heritage-owner-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gs-owner-photo {
    height: 320px;
  }

  .gs-heritage-title {
    font-size: 26px;
  }
}

/* FORCE "ROOTED IN HERITAGE" BLOCK TO BE CENTERED FULL WIDTH */
.gs-about-section .gs-about-container .gs-about-text{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 60px auto;
  margin-top: -70px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* keep paragraphs nicely centered + readable */
.gs-about-section .gs-about-container .gs-about-text p{
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
