/* ==========================================================================
   Saburi - Luxury Gifting Portfolio (Editorial Aesthetic & Dynamic Hero Showcase)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Alex+Brush&display=swap');

:root {
  /* Color Palette */
  --bg-body: #FAF7F2;
  --bg-surface: #FFFFFF;
  --bg-cream: #F5EFE6;
  --bg-muted: #EFE8DE;

  /* Accent Colors */
  --color-burgundy: #6B1D2F;
  --color-burgundy-hover: #521423;
  --color-wine: #800020;
  --color-gold: #C5A059;
  --color-gold-light: #E6C280;
  --color-dark: #1C1917;
  --color-muted: #78716C;
  --color-border: #E7E5E4;
  --color-border-dark: #D6D3D1;

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #E6C280 0%, #C5A059 50%, #9A7B38 100%);
  --burgundy-gradient: linear-gradient(135deg, #800020 0%, #6B1D2F 50%, #4A101E 100%);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-handwriting: 'Alex Brush', cursive;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  --shadow-burgundy: 0 10px 30px -5px rgba(107, 29, 47, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Helpers */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-handwriting { font-family: var(--font-handwriting); }

.text-burgundy { color: var(--color-burgundy); }
.text-gold { color: var(--color-gold); }

/* Layout Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Announcement Bar */
.top-announcement-bar {
  background-color: var(--color-burgundy);
  color: #FFFFFF;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1010;
}

.top-announcement-bar strong {
  color: var(--color-gold-light);
}

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

.announcement-link {
  color: #FFFFFF;
  text-decoration: underline;
  margin-left: 0.5rem;
  cursor: pointer;
}

/* Header & Sticky Navbar (Desktop unchanged) */
.navbar {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-symbol {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--burgundy-gradient);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-burgundy);
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Search Bar */
.search-box-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--bg-body);
  font-size: 0.88rem;
  width: 240px;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-burgundy);
  width: 280px;
  background: #FFFFFF;
}

.search-icon {
  position: absolute;
  left: 0.95rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* Category Navigation Menu Bar (Desktop Unchanged) */
.cat-nav-bar {
  border-top: 1px solid var(--color-border);
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.cat-nav-link {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
  cursor: pointer;
  user-select: none;
}

.cat-nav-link:hover, .cat-nav-link.active {
  color: var(--color-burgundy);
}

.cat-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-burgundy);
  transition: var(--transition-smooth);
}

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

/* Category Filter Tabs Bar inside Portfolio Section */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--color-burgundy);
  color: #FFFFFF;
  border-color: var(--color-burgundy);
  box-shadow: var(--shadow-burgundy);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-burgundy {
  background-color: var(--color-burgundy);
  color: #FFFFFF;
}

.btn-burgundy:hover {
  background-color: var(--color-burgundy-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-burgundy);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #FFFFFF;
}

.btn-gold:hover {
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: #1eb956;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Multi-Layer Parallax Hero Banner */
.hero-parallax-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-cream);
  overflow: hidden;
  padding: 4rem 0;
}

.parallax-bg-layer {
  position: absolute;
  inset: -10%;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(107, 29, 47, 0.08) 0%, transparent 50%);
  pointer-events: none;
  will-change: transform;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(107, 29, 47, 0.08);
  border: 1px solid rgba(107, 29, 47, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-burgundy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 1.2rem;
}

.hero-heading span {
  color: var(--color-burgundy);
  font-style: italic;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Dynamic Hero Right Side Rolling Showcase Stack */
.parallax-visual-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.parallax-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 500px;
}

.parallax-layer-main {
  position: absolute;
  width: 85%;
  height: 85%;
  top: 0;
  left: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  cursor: pointer;
  will-change: transform;
}

.parallax-layer-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.parallax-layer-main:hover img {
  transform: scale(1.06);
}

/* Dynamic Hero Rolling Card */
.parallax-layer-floating {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68%;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--color-border);
  z-index: 3;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform;
}

.parallax-layer-floating img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  transition: opacity 0.3s ease;
}

.floating-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  transition: opacity 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-card-badge {
  font-size: 0.78rem;
  color: #25D366;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2px;
}

/* Circular Occasion Categories Strip */
.occasion-strip-section {
  padding: 3rem 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
}

.roundel-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.roundel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.roundel-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-gold) 100%);
  margin-bottom: 0.6rem;
  transition: var(--transition-smooth);
}

.roundel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  transition: transform 0.4s ease;
}

.roundel-item:hover .roundel-img-wrap {
  transform: translateY(-5px);
  box-shadow: var(--shadow-burgundy);
}

.roundel-item:hover .roundel-img-wrap img {
  transform: scale(1.08);
}

.roundel-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
}

/* Portfolio Work Showcase Grid Section */
.portfolio-section {
  padding: 5rem 0;
}

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

.section-tag {
  font-family: var(--font-handwriting);
  font-size: 2.2rem;
  color: var(--color-burgundy);
  display: block;
  line-height: 1;
}

.section-title-main {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 0.3rem;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.2rem;
}

/* Product Card Style */
.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-dark);
}

.product-badge-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background-color: var(--color-burgundy);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.product-badge-ribbon.royal {
  background: var(--gold-gradient);
  color: #1C1917;
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-cream);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.quick-view-overlay-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.product-card:hover .quick-view-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.product-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.btn-enquire-card {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
}

/* Quick View Slide-Over Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.slide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 550px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  z-index: 2001;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.drawer-backdrop.active .slide-drawer {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--color-dark);
  cursor: pointer;
}

.drawer-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-img-frame {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.drawer-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Parallax Callout Banner */
.parallax-callout-banner {
  position: relative;
  padding: 7rem 0;
  background-color: var(--color-burgundy);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.parallax-banner-bg {
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 60%);
  will-change: transform;
}

/* Footer Section */
.footer {
  background-color: var(--color-dark);
  color: #FFFFFF;
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: #A8A29E;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-links-list a {
  color: #A8A29E;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--color-gold-light);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid #292524;
  padding-top: 2rem;
  text-align: center;
  color: #78716C;
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Media Queries & Mobile Optimizations
   (Desktop view is 100% UNCHANGED)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================================
   MOBILE — Complete Premium Overhaul (≤ 768px)
   ========================================================================= */
@media (max-width: 768px) {

  /* ── Announcement Bar ──────────────────────────────────────────── */
  .top-announcement-bar {
    font-size: 0.72rem;
    padding: 0.45rem 0;
    line-height: 1.4;
  }

  .announcement-flex {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .announcement-link {
    margin-left: 0;
  }

  /* ── Header ────────────────────────────────────────────────────── */
  .header-main {
    padding: 0.65rem 0;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .brand-name {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }

  .brand-sub {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .search-box-wrap {
    display: none;
  }

  .nav-right-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.78rem;
    gap: 0.3rem;
  }

  /* ── Category Navigation — HIDDEN on Mobile ────────────────── */
  .cat-nav-bar {
    display: none;
  }

  /* ── Hero Section — Vertical Stack ─────────────────────────── */
  .hero-parallax-section {
    min-height: auto;
    padding: 2rem 0 2.5rem 0;
  }

  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content-col {
    text-align: center;
    order: 2;
  }

  .hero-tag-badge {
    margin: 0 auto 1rem auto;
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-heading {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero-heading br {
    display: none;
  }

  .hero-subtext {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    line-height: 1.6;
  }

  .hero-cta-group {
    justify-content: center;
    gap: 0.7rem;
  }

  .hero-cta-group .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.82rem;
  }

  .parallax-visual-box {
    order: 1;
  }

  .parallax-card-stack {
    max-width: 90%;
    height: 320px;
    margin: 0 auto;
  }

  .parallax-layer-main {
    width: 80%;
    height: 82%;
    border-width: 3px;
  }

  .parallax-layer-floating {
    width: 60%;
    padding: 0.65rem;
    border-radius: 10px;
  }

  .parallax-layer-floating img {
    height: 100px;
    border-radius: 6px;
    margin-bottom: 0.4rem;
  }

  .floating-card-title {
    font-size: 0.82rem;
  }

  .floating-card-badge {
    font-size: 0.68rem;
  }

  /* ── Occasion Category Roundels — Horizontal Scroll ────────── */
  .occasion-strip-section {
    padding: 1.5rem 0;
  }

  .roundel-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 0.5rem 0.5rem 0.5rem;
  }

  .roundel-grid::-webkit-scrollbar {
    display: none;
  }

  .roundel-item {
    flex-shrink: 0;
  }

  .roundel-img-wrap {
    width: 66px;
    height: 66px;
  }

  .roundel-label {
    font-size: 0.72rem;
    max-width: 72px;
  }

  /* ── Portfolio Section ─────────────────────────────────────── */
  .portfolio-section {
    padding: 2.5rem 0 3rem 0;
  }

  .section-header-wrap {
    margin-bottom: 1.5rem;
  }

  .section-tag {
    font-size: 1.6rem;
  }

  .section-title-main {
    font-size: 1.6rem;
  }

  /* Gallery Filter Tabs — Horizontal Scroll Pills */
  .gallery-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 0.5rem 0.6rem 0.5rem;
    scrollbar-width: none;
    margin-bottom: 1.8rem;
    gap: 0.5rem;
  }

  .gallery-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  /* Portfolio Grid — Single Column */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .product-body {
    padding: 1.1rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-desc {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  .product-badge-ribbon {
    font-size: 0.62rem;
    padding: 0.3rem 0.6rem;
  }

  /* Make Quick-View button always visible on mobile (no hover) */
  .quick-view-overlay-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .btn-enquire-card {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  /* ── Parallax Callout Banner ───────────────────────────────── */
  .parallax-callout-banner {
    padding: 3.5rem 0;
  }

  /* ── Quick View Slide Drawer — Full Screen on Mobile ───────── */
  .slide-drawer {
    max-width: 100%;
  }

  .drawer-header {
    padding: 1rem 1.2rem;
  }

  .drawer-body {
    padding: 1.2rem;
  }

  .drawer-img-frame {
    height: 240px;
    margin-bottom: 1rem;
  }

  /* ── Footer ────────────────────────────────────────────────── */
  .footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-col-heading {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  .footer-bottom-bar {
    font-size: 0.76rem;
  }

  /* ── Floating Mobile WhatsApp FAB Button ────────────────────── */
  .mobile-whatsapp-fab {
    display: flex !important;
  }
}

/* ── Extra Small Phones (≤ 380px) ─────────────────────────────── */
@media (max-width: 380px) {
  .hero-heading {
    font-size: 1.65rem;
  }

  .hero-subtext {
    font-size: 0.84rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .parallax-card-stack {
    height: 260px;
    max-width: 100%;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .roundel-img-wrap {
    width: 56px;
    height: 56px;
  }

  .roundel-label {
    font-size: 0.65rem;
    max-width: 60px;
  }
}

/* ── Mobile WhatsApp FAB Default State (Hidden on Desktop) ────── */
.mobile-whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  border: none;
  animation: fabPulse 2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ==========================================================================
   Instagram QR Showcase Section
   ========================================================================== */
.instagram-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #FAF7F2 0%, #F3EBE1 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.instagram-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 15px 35px -5px rgba(107, 29, 47, 0.08);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.instagram-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--burgundy-gradient);
}

.instagram-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-bottom: 0.6rem;
}

.instagram-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.instagram-handle {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-burgundy);
  margin-bottom: 1rem;
}

.instagram-desc {
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 540px;
}

.instagram-btn {
  padding: 0.85rem 1.8rem;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
}

.instagram-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qr-card-frame {
  width: 220px;
  height: 270px;
  background: #000000;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-card-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(107, 29, 47, 0.25);
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.qr-subtext {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 2.5rem 0;
  }

  .instagram-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.8rem 1.4rem;
    text-align: center;
  }

  .instagram-card::before {
    width: 100%;
    height: 4px;
  }

  .instagram-desc {
    margin: 0 auto 1.5rem auto;
  }

  .qr-card-frame {
    width: 190px;
    height: 235px;
  }
}

