/*
Theme Name: CIIMS Gallery
Theme URI: https://ciimsgallery.com/theme
Author: CIIMS Gallery Team
Author URI: https://ciimsgallery.com
Description: A premium, luxury e-commerce WordPress theme inspired by art galleries and fashion boutiques. Custom-tailored for painting collections, Kasavu sarees, ornaments, and seamless WhatsApp ordering workflows.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ciims-gallery
Tags: e-commerce, custom-background, custom-colors, custom-logo, custom-menu, featured-images, one-column, grid-layout, translation-ready, portfolio

This theme is designed to work standalone or in tandem with WooCommerce.
*/

/* 
 * CIIMS Gallery - Brand CSS Design System
 */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-base: #FFFFFF;
  --bg-alt: #FAF8F3;
  --accent-primary: #C8860A;
  --accent-secondary: #2A5C3F;
  --accent-tertiary: #B8922A;
  --text-headings: #111111;
  --text-body: #444444;
  --text-muted: #888888;
  --border-color: #E5E5E5;
  --whatsapp-color: #25D366;
  --sold-ribbon: #CC2200;
  --new-badge: #2A5C3F;

  /* Typography & Sizing */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --heading-letter-spacing: 0.04em;
  --nav-letter-spacing: 0.12em;

  /* Base Rules */
  --btn-radius: 2px;
  --card-radius: 0px;
  --transition-speed: 0.25s;
  --max-width: 1320px;
  --section-padding: 64px;
}

/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-base);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-headings);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--heading-letter-spacing);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  transition: all var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background-color: var(--bg-alt);
  padding: var(--section-padding) 0;
  transition: background-color var(--transition-speed) ease;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--announcement-bg, #2A5C3F);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 40px;
  z-index: 101;
  transition: all var(--transition-speed) ease;
}

.announcement-bar.hidden {
  display: none !important;
}

.announcement-content {
  text-align: center;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.announcement-content a {
  color: #FFFFFF;
  text-decoration: none;
}

.announcement-content a:hover {
  text-decoration: underline;
}

.announcement-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  opacity: 0.8;
}

.announcement-close:hover {
  opacity: 1;
}

/* Three-Zone Header Layout */
#siteHeader {
  background-color: var(--bg-base);
  height: 64px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  transition: all var(--transition-speed) ease;
}

#siteHeader.header-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-container-fluid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  width: 25%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-center {
  width: 50%;
  display: flex;
  justify-content: center;
}

.header-right {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

/* Left Zone - Logo and Hamburger */
.header-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-headings);
  letter-spacing: var(--heading-letter-spacing);
}

.header-logo img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-headings);
  transition: all var(--transition-speed) ease;
}

/* Center Zone - Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
  padding: 20px 0;
}

.nav-menu > li > a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-headings);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-menu > li:hover > a {
  color: var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
}

.nav-onam-special {
  color: var(--accent-primary) !important;
}

/* Dropdown Menus */
/* Dropdown — targets both custom .dropdown-menu AND WordPress-generated .sub-menu */
.dropdown-menu,
.nav-menu > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  list-style: none;
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-speed) ease;
  z-index: 1000;
  margin: 0;
}

.nav-menu > li:hover .dropdown-menu,
.nav-menu > li:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Arrow indicator on parent items that have children */
.nav-menu > li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  color: var(--accent-primary);
  margin-left: 3px;
}

.dropdown-menu li a,
.nav-menu > li > .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-body);
  transition: all var(--transition-speed) ease;
  white-space: nowrap;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dropdown-menu li a:hover,
.nav-menu > li > .sub-menu li a:hover {
  background-color: var(--bg-alt);
  color: var(--accent-primary);
  padding-left: 28px;
}

/* ── RESPONSIVE HEADER ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Show hamburger, hide desktop nav */
  .hamburger-btn {
    display: flex !important;
  }
  .header-center {
    display: none !important;
  }
  .header-left {
    width: auto;
  }
  .header-right {
    width: auto;
  }
  .header-container-fluid {
    padding: 0 20px;
  }
}

/* Mobile menu overlay — full-screen slide-in */
@media (max-width: 991px) {
  .mobile-menu-overlay {
    padding: 70px 28px 40px 28px;
  }
  .mobile-nav-list {
    gap: 0;
    padding: 0;
    margin: 0;
  }
  .mobile-nav-list > li {
    border-bottom: 1px solid var(--border-color);
    padding: 0;
  }
  .mobile-nav-list > li > a {
    font-size: 20px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* WordPress sub-menu inside mobile overlay */
  .mobile-nav-list .sub-menu {
    list-style: none;
    padding: 0 0 10px 16px;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--accent-primary);
  }
  .mobile-nav-list .sub-menu.open {
    display: flex;
  }
  .mobile-nav-list .sub-menu li a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-body);
    padding: 10px 0 10px 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border-color);
  }
  .mobile-nav-list .sub-menu li:last-child a {
    border-bottom: none;
  }
  .mobile-nav-list .sub-menu li a:hover {
    color: var(--accent-primary);
  }
  /* Arrow on parent items in mobile */
  .mobile-nav-list li.menu-item-has-children > a::after {
    content: '▾';
    font-size: 18px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
  }
  .mobile-nav-list li.menu-item-has-children.open > a::after {
    transform: rotate(-180deg);
  }
}

/* Right Zone - Icons styling */
.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-headings);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
}

.header-icon-btn:hover {
  transform: scale(1.1);
  color: var(--accent-primary);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: var(--accent-primary);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

/* Search Overlay Styling */
.search-overlay {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-overlay.open {
  top: 0;
}

/* Scroll Offset adjust based on announcement bar visibility */
body:not(.announcement-dismissed) .search-overlay.open {
  top: 36px;
}

.search-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-form {
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--text-headings);
  padding-bottom: 8px;
}

.search-form input {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--text-headings);
  text-transform: uppercase;
}

.search-submit-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-headings);
}

.search-close-btn {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-headings);
}

/* Mobile Menu Overlay Styling */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 300;
  padding: 80px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu-overlay.open {
  left: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  background: none;
  border: none;
  color: var(--text-headings);
  cursor: pointer;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-list > li {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.mobile-nav-list > li > a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-headings);
  display: block;
}

/* Mobile Submenu Styling */
.mobile-submenu {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  padding: 4px 0;
  display: block;
}

.mobile-menu-has-children > a::after {
  content: ' ▾';
  font-size: 16px;
  color: var(--accent-primary);
}

.mobile-menu-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  color: var(--text-headings);
}

.mobile-menu-socials a:hover {
  color: var(--accent-primary);
}

/* Body announcement layout offset */
body:not(.announcement-dismissed) #siteHeader {
  top: 36px;
}

/* Hero Slider Section */
.hero-slider-section {
  width: 100vw;
  height: 88vh;
  position: relative;
  overflow: hidden;
  background-color: #0f1115;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1.03);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.slide-content-container {
  width: 100%;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 3 !important;
  display: flex;
  align-items: center;
}

.slide-content {
  max-width: 650px;
  color: #FFFFFF;
  margin-left: 5%;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease 0.4s, opacity 0.6s ease 0.4s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-primary);
  margin-bottom: 16px;
  display: block;
}

.slide-headline {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 600;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: var(--heading-letter-spacing);
}

.slide-subheadline {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.slide-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slide-btn-primary {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--btn-radius);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(200, 134, 10, 0.2);
}

.slide-btn-primary:hover {
  background-color: var(--accent-tertiary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 134, 10, 0.3);
}

.slide-btn-secondary {
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--btn-radius);
  display: inline-block;
}

.slide-btn-secondary:hover {
  background-color: #FFFFFF;
  color: var(--text-headings);
  transform: translateY(-2px);
}

/* Nav arrows and dots */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.slider-nav:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.btn-prev {
  left: 24px;
}

.btn-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.slider-dot.active {
  background-color: #FFFFFF;
  transform: scale(1.1);
}

/* ── Hero CSS Class Aliases (backward-compat) ──────────────────────────
   front-page.php previously used mismatched class names. These aliases
   ensure text is always white and visible regardless of which class name
   a template uses.
   ───────────────────────────────────────────────────────────────────── */

/* Old: .hero-slide  →  matches same rules as .slide */
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Old: .hero-slide-img  →  same as .slide-bg */
.hero-slide-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-img {
  transform: scale(1.03);
}

/* Old: .slide-title  →  same as .slide-headline */
.slide-title {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 600;
  line-height: 1.1;
  color: #FFFFFF !important;
  margin-bottom: 16px;
  letter-spacing: var(--heading-letter-spacing);
}

/* Old: .slide-description  →  same as .slide-subheadline */
.slide-description {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 36px;
}

/* Old: .slide-btn  →  same as .slide-btn-primary */
.slide-btn {
  background-color: var(--accent-primary);
  color: #FFFFFF !important;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--btn-radius);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(200, 134, 10, 0.2);
  transition: all var(--transition-speed) ease;
}
.slide-btn:hover {
  background-color: var(--accent-tertiary);
  transform: translateY(-2px);
}

/* Ensure .slide-content always sits above overlay when used without wrapper */
.slide > .slide-content {
  position: absolute;
  bottom: 0; left: 0;
  z-index: 3;
  padding: 0 40px 60px 60px;
  max-width: 650px;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease 0.4s, opacity 0.6s ease 0.4s;
}
.slide.active > .slide-content,
.hero-slide.active > .slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* Category Strip Section */
.category-strip-section {
  background-color: #FFFFFF;
  padding: 48px 0;
  margin-top: 24px;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.category-strip-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.category-scroll-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  transition: all var(--transition-speed) ease;
}

.category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.category-thumb-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-speed) ease;
}

.category-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.category-pill:hover .category-thumb-wrapper, .category-pill.active .category-thumb-wrapper {
  border-color: var(--accent-primary);
}

.category-pill:hover .category-thumb {
  transform: scale(1.04);
}

.category-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-headings);
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.category-pill:hover .category-label, .category-pill.active .category-label {
  color: var(--accent-primary);
}

/* Scroll gradient hint for mobile */
.scroll-gradient-hint {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity var(--transition-speed) ease;
}

/* Scroll Shadow and Category Filter Header Spacer */

/* Category Filter */
.gallery-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

/* Shop Banner Section */
.shop-banner-section {
  position: relative;
  width: 100%;
  height: 240px;
  background-image: var(--shop-banner-bg, url('assets/hero.png'));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
}

.shop-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.shop-banner-container {
  position: relative;
  z-index: 2;
}

.shop-banner-breadcrumbs {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.shop-banner-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Shop Collection Section Layout */
.shop-collection-section {
  background-color: var(--bg-base);
  padding: 64px 0;
}

/* Top Bar & Sorts */
.shop-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.shop-products-count {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.shop-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-mobile-filter {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--btn-radius, 2px);
  cursor: pointer;
  color: var(--text-headings);
  transition: all var(--transition-speed) ease;
}

.btn-mobile-filter:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.shop-sort-select {
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-headings);
  border-radius: var(--btn-radius, 2px);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-speed) ease;
}

.shop-sort-select:focus {
  border-color: var(--accent-primary);
}

/* Shop Layout Grid */
.shop-layout-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar & Widgets */
.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-drawer-header {
  display: none;
}

.sidebar-widget {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.sidebar-widget:last-child {
  border-bottom: none;
}

.widget-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-headings);
  margin-top: 0;
  margin-bottom: 16px;
}

.widget-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
  user-select: none;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--accent-primary);
}

/* Price Range Slider styling */
.price-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-slider-wrapper input[type="range"] {
  width: 100%;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.price-readout {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-headings);
}

/* Right Grid Area */
.shop-grid-area {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Product catalog grid is 3 columns when sidebar is present */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Shop Pagination */
.shop-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-load-more {
  border: 1.5px solid var(--text-headings);
  background-color: transparent;
  color: var(--text-headings);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 48px;
  border-radius: var(--btn-radius, 2px);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.btn-load-more:hover {
  background-color: var(--text-headings);
  color: #FFFFFF;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border-radius: var(--btn-radius, 2px);
}

.pagination-btn:hover, .pagination-btn.active {
  background-color: var(--text-headings);
  border-color: var(--text-headings);
  color: #FFFFFF;
}

.product-card {
  background: var(--bg-base);
  border-radius: 0px; /* flat, no card radius */
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed) ease;
}

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

.product-img-wrapper {
  position: relative;
  aspect-ratio: 3/4; /* 3:4 tall portrait aspect ratio */
  overflow: hidden;
  background-color: var(--bg-alt); /* background while loading */
}

/* Image Crossfade elements */
.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.product-img.img-hover {
  opacity: 0;
  z-index: 2;
}

.product-card:hover .product-img.img-primary {
  transform: scale(1.03); /* subtle zoom */
}

.product-card:hover .product-img.img-hover {
  opacity: 1;
  transform: scale(1.03);
}

/* Badging */
.product-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}

.badge-new {
  background-color: var(--new-badge);
  color: #FFFFFF;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

/* Sold Ribbon styling */
.sold-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--sold-ribbon);
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 6px 24px;
  transform: rotate(-45deg) translate(-20px, 0px);
  transform-origin: top left;
  z-index: 5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  width: 110px;
  text-align: center;
}

/* WhatsApp quick-order overlay icon (hover only) */
.whatsapp-hover-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--whatsapp-color);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

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

.whatsapp-hover-btn:hover {
  background-color: #1ebe57;
  transform: scale(1.08);
}

/* Info Area */
.product-info {
  padding: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-category {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.product-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-headings);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--transition-speed) ease;
}

.product-card:hover .product-title {
  color: var(--accent-primary); /* shifts color on hover */
}

.product-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-headings);
}

/* Price sale configurations */
.product-price.original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.product-price.sale {
  color: var(--accent-primary);
}

.whatsapp-text-link {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--whatsapp-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  transition: color var(--transition-speed) ease;
  width: fit-content;
}

.whatsapp-text-link:hover {
  text-decoration: underline;
  color: #1ebe57;
}

/* View All Products button */
.btn-view-all-products {
  border: 1.5px solid var(--text-headings);
  background-color: transparent;
  color: var(--text-headings);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 48px;
  border-radius: var(--btn-radius);
  display: inline-block;
  transition: all var(--transition-speed) ease;
}

.btn-view-all-products:hover {
  background-color: var(--text-headings);
  color: #FFFFFF;
}

/* Grid overrides inside media queries */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Onam Promo Section */
.onam-promo-section {
  position: relative;
  width: 100%;
  height: 480px;
  background-image: var(--onam-bg-image, url('assets/kasavu.png'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FFFFFF;
}

.onam-promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--onam-overlay-color1, rgba(200,134,10,0.88)) 0%, var(--onam-overlay-color2, rgba(42,92,63,0.82)) 100%);
  z-index: 1;
}

.onam-promo-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.onam-promo-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.onam-promo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
}

.onam-promo-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}

.onam-promo-headline {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0;
}

.onam-promo-subtext {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.onam-promo-wa-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.onam-promo-cta {
  background-color: #FFFFFF;
  color: var(--accent-primary, #C8860A);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  border-radius: var(--btn-radius, 2px);
  display: inline-block;
  margin-top: 8px;
  transition: all var(--transition-speed) ease;
}

.onam-promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-alt, #FAF8F3);
}

.onam-promo-finetext {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .onam-promo-section {
    height: auto;
    padding: 64px 0;
  }
  
  .onam-promo-headline {
    font-size: 32px;
    line-height: 1.25;
  }
}

/* =============================================
   DUO PROMO BLOCKS (Westside-style) — Section 4b
   ============================================= */
.duo-promo-section {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 560px;
}

.duo-promo-block {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  overflow: hidden;
  cursor: pointer;
}

/* Image layer */
.duo-promo-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 1 !important;
}

.duo-promo-block:hover .duo-promo-bg {
  transform: scale(1.07);
}

/* Dark gradient overlay */
.duo-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.45) 55%,
    rgba(10, 10, 10, 0.12) 100%
  );
  z-index: 2 !important;
  transition: background 0.4s ease;
}

.duo-promo-block:hover .duo-promo-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.80) 0%,
    rgba(10, 10, 10, 0.32) 55%,
    rgba(10, 10, 10, 0.05) 100%
  );
}

/* Content area */
.duo-promo-content {
  position: relative;
  z-index: 3;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.duo-promo-block:hover .duo-promo-content {
  transform: translateY(0);
}

/* Eyebrow */
.duo-promo-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C8860A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.duo-promo-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #C8860A;
}

/* Title */
.duo-promo-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Subtitle */
.duo-promo-subtitle {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.duo-promo-block:hover .duo-promo-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Button */
.duo-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 2px;
  transition: all 0.28s ease;
  margin-top: 4px;
}

.duo-promo-btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.duo-promo-btn--wa {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.duo-promo-btn--wa:hover {
  background: transparent;
  border-color: #25D366;
  color: #25D366;
  box-shadow: 0 10px 28px rgba(37,211,102,0.3);
}

/* Divider line between the two blocks */
.duo-promo-block--1 {
  border-right: 1px solid rgba(255,255,255,0.08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .duo-promo-title {
    font-size: 36px;
  }
  .duo-promo-content {
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  /* FIX: was using grid-template-columns on a flex container — had zero effect.
     The correct fix is flex-direction: column so blocks stack vertically. */
  .duo-promo-section {
    flex-direction: column;
  }
  .duo-promo-block {
    min-height: 420px;
    width: 100%;
    flex: none;
  }
  .duo-promo-block--1 {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .duo-promo-title {
    font-size: 30px;
  }
  .duo-promo-subtitle {
    opacity: 1;
    transform: none;
  }
  .duo-promo-content {
    transform: none;
    padding: 32px 24px;
    gap: 12px;
  }
}

/* Certified Saree Banner Section */
.certified-saree-section {
  background-color: var(--saree-banner-bg, #B8922A);
  padding: 36px 0;
  text-align: center;
  transition: background-color var(--transition-speed) ease;
}

.certified-saree-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.certified-saree-left {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.certified-saree-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* forces icon to white */
}

.certified-saree-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
}

.certified-saree-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.certified-btn-outline {
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 32px;
  border-radius: var(--btn-radius, 2px);
  display: inline-block;
  transition: all var(--transition-speed) ease;
}

.certified-btn-outline:hover {
  background-color: #FFFFFF;
  color: var(--saree-banner-bg, #B8922A);
}

.certified-btn-solid {
  background-color: #FFFFFF;
  color: var(--saree-banner-bg, #B8922A);
  border: 1.5px solid #FFFFFF;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 32px;
  border-radius: var(--btn-radius, 2px);
  display: inline-block;
  transition: all var(--transition-speed) ease;
}

.certified-btn-solid:hover {
  background-color: transparent;
  color: #FFFFFF;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
  .certified-saree-grid {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
  
  .certified-saree-left {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .certified-saree-right {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .certified-btn-outline, .certified-btn-solid {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-alt, #FAF8F3);
  padding: 64px 0;
  width: 100%;
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-headings);
  margin-bottom: 8px;
}

.testimonials-subtext {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.testimonials-carousel-wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 0px;
  border-top: 3px solid var(--accent-primary, #C8860A);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-speed) ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent-primary, #C8860A);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: #444444;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-headings);
  margin: 0;
}

.testimonial-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background-color: var(--bg-alt, #FAF8F3);
  padding: 4px 10px;
  width: fit-content;
  border-radius: 20px;
}

.testimonials-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-primary, #C8860A);
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.testimonials-dot.active {
  background-color: var(--accent-primary, #C8860A);
  transform: scale(1.1);
}

/* Responsive styles for testimonials */
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  
  .testimonials-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
  }
  
  .testimonial-card {
    width: 80vw;
    max-width: 380px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .testimonials-dots {
    display: flex;
  }
}

/* Portfolio Gallery Section */
.portfolio-section {
  background-color: var(--bg-alt, #FAF8F3);
  padding: 64px 0;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}

.portfolio-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-primary, #C8860A);
  margin-bottom: 8px;
  display: block;
}

.portfolio-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-headings);
  margin-bottom: 0;
}

.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-portfolio-filter {
  padding: 8px 4px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-speed) ease;
  border-radius: 0;
  cursor: pointer;
}

.btn-portfolio-filter:hover {
  color: var(--text-headings);
}

.btn-portfolio-filter.active {
  color: var(--text-headings);
  border-bottom: 2px solid #111111;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background-color: #000000;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  z-index: 2;
  color: #FFFFFF;
}

.portfolio-item:hover .portfolio-hover-overlay {
  opacity: 1;
}

.portfolio-item-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}

.portfolio-item-view {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-view-all-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-headings);
  transition: all var(--transition-speed) ease;
  border-bottom: 1px solid transparent;
}

.portfolio-view-all-link:hover {
  border-bottom: 1px solid var(--text-headings);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 38px;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 48px;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 1010;
  padding: 20px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-content {
  display: flex;
  flex-direction: row;
  max-width: 85%;
  max-height: 85%;
  background-color: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 1005;
}

.lightbox-img {
  max-width: 60%;
  max-height: 80vh;
  object-fit: contain;
  background-color: #111111;
}

.lightbox-info {
  width: 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  background-color: #1a1a1a;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.lightbox-caption {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.lightbox-wa-btn {
  background-color: var(--whatsapp-color, #25D366);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: var(--btn-radius, 2px);
  text-align: center;
  display: inline-block;
  transition: all var(--transition-speed) ease;
}

.lightbox-wa-btn:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lightbox-content {
    flex-direction: column;
    max-height: 90%;
    width: 90%;
  }
  
  .lightbox-img {
    max-width: 100%;
    max-height: 50vh;
  }
  
  .lightbox-info {
    width: 100%;
    padding: 24px;
  }
  
  .lightbox-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .lightbox-caption {
    font-size: 13px;
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .lightbox-nav {
    font-size: 36px;
    padding: 10px;
  }
  
  .lightbox-prev {
    left: 8px;
  }
  
  .lightbox-next {
    right: 8px;
  }
}

/* Heritage / About Story Section */
.heritage-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.heritage-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.heritage-col-images {
  position: relative;
  width: 100%;
  height: 520px;
}

.heritage-large-img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--card-radius, 0px);
}

.heritage-accent-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid #FFFFFF;
  border-radius: var(--card-radius, 0px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: block;
  transition: opacity var(--transition-speed) ease;
}

.heritage-accent-img.hidden {
  display: none !important;
}

.heritage-col-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.heritage-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-primary, #C8860A);
  margin-bottom: 12px;
}

.heritage-heading {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--text-headings, #111111);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
}

.heritage-para {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body, #444444);
  margin-bottom: 20px;
}

.heritage-divider {
  width: 2px;
  height: 40px;
  background-color: var(--accent-primary, #C8860A);
  margin: 12px 0 24px 0;
}

.heritage-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--border-color, #E5E5E5);
  padding-top: 24px;
}

.heritage-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.heritage-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-primary, #C8860A);
  line-height: 1;
}

.heritage-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #888888);
}

.heritage-cta-btn {
  border: 1.5px solid var(--text-headings, #111111);
  background-color: transparent;
  color: var(--text-headings, #111111);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 36px;
  border-radius: var(--btn-radius, 2px);
  display: inline-block;
  transition: all var(--transition-speed) ease;
}

.heritage-cta-btn:hover {
  background-color: var(--text-headings, #111111);
  color: #FFFFFF;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
  .heritage-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .heritage-col-images {
    height: 400px;
  }
  
  .heritage-large-img {
    width: 100%;
  }
  
  .heritage-accent-img {
    width: 150px;
    height: 150px;
  }
  
  .heritage-heading {
    font-size: 36px;
  }
  
  .heritage-stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* Customizer Drawer Styling */
.customizer-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-color);
}

.customizer-drawer.open {
  right: 0;
}

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

.customizer-header h3 {
  font-size: 22px;
  color: var(--text-headings);
}

.btn-close-customizer {
  font-size: 24px;
  color: var(--text-headings);
}

.customizer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.customizer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.customizer-section h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-headings);
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 8px;
}

.customizer-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customizer-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
  display: flex;
  justify-content: space-between;
}

.customizer-field label span.value {
  color: var(--accent-primary);
  font-weight: 600;
}

.color-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-input-wrapper input[type="color"] {
  -webkit-appearance: none;
  border: none;
  width: 44px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  background: none;
}

.color-input-wrapper input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-input-wrapper input[type="color"]::-webkit-color-swatch {
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.customizer-input-text, select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  background-color: var(--bg-base);
  color: var(--text-body);
}

.range-slider {
  width: 100%;
  accent-color: var(--accent-primary);
}

.customizer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
}

.btn-reset-customizer {
  flex: 1;
  border: 1px solid var(--border-color);
  padding: 14px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--btn-radius);
  color: var(--text-body);
}

.btn-reset-customizer:hover {
  background-color: var(--bg-alt);
}

/* Modal Details Drawer/Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-base);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  border-radius: var(--card-radius);
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: scale(0.95);
  transition: transform var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.btn-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--text-headings);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-close-modal:hover {
  background-color: var(--accent-primary);
  color: #FFFFFF;
}

.modal-img-wrapper {
  background-color: var(--bg-alt);
  position: relative;
}

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

.modal-details-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.modal-details-col .product-category {
  font-size: 14px;
}

.modal-details-col h2 {
  font-size: 36px;
  font-family: var(--font-display);
  line-height: 1.2;
}

.modal-price {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-headings);
}

.modal-desc {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.spec-label {
  font-weight: 500;
  color: var(--text-muted);
}

.spec-value {
  color: var(--text-headings);
  font-weight: 500;
}

.btn-modal-whatsapp {
  background-color: var(--whatsapp-color);
  color: #FFFFFF;
  padding: 16px 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

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

/* Footer Styles */
footer {
  width: 100%;
}

/* FOOTER TOP BAND */
.footer-top-band {
  background-color: #111111;
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* Col 1: Brand */
.brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  max-height: 48px;
  width: auto;
  align-self: flex-start;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888888;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-row a {
  color: #888888;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-row a:hover {
  color: var(--accent-primary, #C8860A);
  transform: translateY(-2px);
}

/* Col 2 & 3: Menus */
.footer-col-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  margin-top: 0;
}

.footer-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888888;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-menu-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

/* Col 4: Contact */
.footer-contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-details li {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888888;
  line-height: 1.5;
}

.footer-contact-details li a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-primary, #C8860A);
  transition: color 0.3s ease;
}

.footer-contact-details li a:hover {
  color: var(--accent-tertiary, #B8922A);
}

.footer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 20px;
  border-radius: 2px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-wa-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
}

/* FOOTER BOTTOM BAND */
.footer-bottom-band {
  background-color: #0A0A0A;
  padding: 16px 0;
  border-top: 1px solid #222222;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left p {
  font-family: var(--font-body);
  font-size: 12px;
  color: #666666;
  margin: 0;
}

.footer-bottom-center {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-primary, #C8860A);
  letter-spacing: 0.05em;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-right a {
  font-family: var(--font-body);
  font-size: 12px;
  color: #666666;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #FFFFFF;
}

.footer-bottom-right .separator {
  color: #333333;
  font-size: 11px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .shop-layout-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .btn-mobile-filter {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* Mobile Sidebar Off-canvas Drawer */
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-base, #FFFFFF);
    z-index: 10000;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .shop-sidebar.open {
    left: 0;
  }
  
  .sidebar-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .sidebar-drawer-header h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
  .btn-close-sidebar {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--text-headings);
    cursor: pointer;
    padding: 0;
  }
  
  .sidebar-widgets {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .sidebar-widget:last-child {
    padding-bottom: 40px; /* safety padding for scroll */
  }
  
  /* Overlay Mask */
  .sidebar-overlay-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .sidebar-overlay-mask.open {
    opacity: 1;
    visibility: visible;
  }
}


@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* Customizer trigger floating button */
.floating-customizer-trigger {
  position: fixed;
  bottom: 24px;
  right: 96px; /* Offset to avoid collision with WhatsApp button */
  width: 56px;
  height: 56px;
  background-color: var(--accent-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 99;
  transition: transform var(--transition-speed) ease, right var(--transition-speed) ease;
}

.floating-customizer-trigger:hover {
  transform: rotate(30deg) scale(1.05);
}

/* Floating WhatsApp Widget styling */
.floating-wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-wa-widget.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: background-color 0.3s ease;
  animation: waPulse 3s infinite ease-in-out;
}

.floating-wa-btn:hover {
  background-color: #20ba59;
}

.floating-wa-tooltip {
  position: absolute;
  bottom: 72px;
  background-color: #FFFFFF;
  color: #111111;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show tooltip on hover for desktop viewports */
@media (min-width: 992px) {
  .floating-wa-widget:hover .floating-wa-tooltip {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .category-scroll-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-right: 40px;
  }
  .category-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
  .category-scroll-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .scroll-gradient-hint {
    opacity: 1;
  }
  
  :root {
    --section-padding: 40px;
  }
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .modal-content {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .modal-details-col {
    padding: 30px;
  }
  .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  nav {
    display: none;
  }
  .hero {
    height: 480px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .customizer-drawer {
    width: 100%;
    right: -100%;
  }
}

/* ==========================================================================
   Single Product Layout Styles
   ========================================================================== */
.single-product-section {
  background-color: var(--bg-base);
  padding: 80px 0;
}

.product-single-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

/* Left Column: Gallery & Zoom */
.product-single-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  cursor: zoom-in;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease;
  transform-origin: center center;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-item {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background-color: var(--bg-alt);
  transition: border-color var(--transition-speed) ease;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--accent-primary);
}

/* Right Column: Info details */
.product-single-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.product-breadcrumbs {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.product-breadcrumbs a:hover {
  color: var(--accent-primary);
}

.product-category-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-name-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-headings);
  margin: 0 0 16px 0;
  line-height: 1.15;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.product-rating-row .star-rating {
  color: var(--accent-primary);
  font-size: 14px;
  letter-spacing: 2px;
}

.product-rating-row .review-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.product-price-box .original-price {
  font-family: var(--font-display);
  font-size: 20px;
  text-decoration: line-through;
  color: var(--text-muted);
}

.product-price-box .current-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-primary);
}

.product-availability-pill {
  margin-bottom: 24px;
}

.pill-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
}

.pill-available {
  background-color: rgba(37, 211, 102, 0.1);
  color: #1ebe57;
}

.pill-sold {
  background-color: rgba(204, 34, 0, 0.1);
  color: #CC2200;
}

.product-short-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 32px;
}

/* Options Variations */
.product-variations {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.variation-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.variation-item label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-headings);
  font-weight: 600;
}

.variation-item select {
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-headings);
  outline: none;
  cursor: pointer;
  border-radius: var(--btn-radius);
  transition: border-color var(--transition-speed) ease;
}

.variation-item select:focus {
  border-color: var(--accent-primary);
}

/* Action cart wrappers */
.product-cart-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
  margin-bottom: 32px;
}

.qty-selector-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  width: fit-content;
  background-color: #FFFFFF;
  border-radius: var(--btn-radius);
}

.qty-input {
  width: 50px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-headings);
  outline: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-primary-whatsapp {
  width: 100%;
  background-color: #25D366;
  color: #FFFFFF;
  border: none;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-whatsapp:hover {
  background-color: #20ba59;
}

.btn-secondary-enquiry {
  width: 100%;
  background-color: transparent;
  color: var(--text-headings);
  border: 1.5px solid var(--text-headings);
  padding: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.btn-secondary-enquiry:hover {
  background-color: var(--text-headings);
  color: #FFFFFF;
}

/* Trust badges */
.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge .badge-icon {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 14px;
}

.trust-badge .badge-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Below fold Tabs styling */
.product-tabs-section {
  margin: 80px 0;
  border-top: 1px solid var(--border-color);
  padding-top: 48px;
  text-align: left;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}

.tab-nav-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 16px 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-speed) ease;
}

.tab-nav-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-headings);
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}

.tab-nav-btn.active {
  color: var(--text-headings);
}

.tab-nav-btn.active::after {
  transform: scaleX(1);
}

.tabs-content {
  min-height: 120px;
}

.tab-panel {
  display: none;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  animation: tabFadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

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

.specs-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table td {
  padding: 12px 16px;
  font-size: 14px;
}

.specs-table .spec-label {
  font-weight: 600;
  color: var(--text-headings);
  width: 200px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.specs-table .spec-val {
  color: var(--text-body);
}

.reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.review-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.review-item:last-child {
  border-bottom: none;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-headings);
}

.review-stars {
  color: var(--accent-primary);
  font-size: 11px;
  letter-spacing: 1px;
}

.review-comment {
  font-style: italic;
  color: var(--text-body);
  margin: 0;
  font-size: 14px;
}

/* Related section spacing */
.related-products-section {
  margin-top: 80px;
  border-top: 1px solid var(--border-color);
  padding-top: 64px;
}

.related-products-section .section-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-headings);
  margin: 0 0 40px 0;
  text-align: center;
}

.related-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* Responsive queries */
@media (max-width: 991px) {
  .product-single-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Cart Page Styling */
.cart-page-section {
  padding: 80px 0;
  background-color: var(--bg-base);
  min-height: 60vh;
}

.cart-page-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text-headings);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.cart-layout-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.cart-table-area {
  overflow-x: auto;
}

.woocommerce-cart-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.woocommerce-cart-table th {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-headings);
}

.woocommerce-cart-table td {
  padding: 24px 16px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.woocommerce-cart-table .product-remove button {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-speed, 0.2s) ease;
}

.woocommerce-cart-table .product-remove button:hover {
  color: #ff3333;
}

.woocommerce-cart-table .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color);
}

.woocommerce-cart-table .product-name a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-headings);
  text-decoration: none;
  transition: color var(--transition-speed, 0.2s) ease;
}

.woocommerce-cart-table .product-name a:hover {
  color: var(--accent-primary);
}

.cart-item-option {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.woocommerce-cart-table .product-price,
.woocommerce-cart-table .product-subtotal {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
}

.woocommerce-cart-table .product-subtotal {
  font-weight: 600;
  color: var(--text-headings);
}

/* Quantity Adjuster in Cart */
.cart-qty-adjuster {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--btn-radius);
  background-color: var(--bg-base);
}

.cart-qty-adjuster button {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-body);
  transition: background-color var(--transition-speed, 0.2s) ease;
}

.cart-qty-adjuster button:hover {
  background-color: var(--bg-alt);
}

.cart-qty-adjuster input {
  width: 40px;
  height: 32px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-headings);
  background: transparent;
  pointer-events: none;
}

/* Cart Totals Summary Card */
.cart-totals-area {
  position: sticky;
  top: 120px;
}

.cart-totals-card {
  background-color: var(--bg-alt);
  padding: 32px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color);
}

.cart-totals-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-headings);
  margin-bottom: 24px;
  font-weight: 600;
}

.totals-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.totals-table th, 
.totals-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
}

.totals-table th {
  color: var(--text-body);
  font-weight: 500;
}

.totals-table td {
  color: var(--text-headings);
  text-align: right;
}

.totals-table .order-total th {
  font-weight: 600;
  color: var(--text-headings);
  border-bottom: none;
}

.totals-table .order-total td {
  font-size: 18px;
  border-bottom: none;
}

.btn-checkout-whatsapp {
  width: 100%;
  background-color: var(--whatsapp-color, #25D366);
  color: #FFFFFF;
  border: none;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37,211,102,0.2);
}

.btn-checkout-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,211,102,0.3);
}

/* Empty Cart View Styling */
.empty-cart-view {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-alt);
  border-radius: var(--card-radius);
  border: 1px dashed var(--border-color);
  max-width: 600px;
  margin: 0 auto;
}

.empty-cart-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.empty-cart-view h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-headings);
  margin-bottom: 16px;
}

.empty-cart-view p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 32px;
}

.btn-return-shop {
  display: inline-block;
  background-color: var(--text-headings);
  color: #FFFFFF;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-return-shop:hover {
  background-color: var(--accent-primary);
}

/* WhatsApp Checkout Modal Overlay & Styling */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17,17,17,0.7);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-content {
  background-color: var(--bg-base);
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.checkout-modal-overlay.open .checkout-modal-content {
  transform: scale(1);
}

.btn-close-checkout {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-muted);
  cursor: pointer;
}

.btn-close-checkout:hover {
  color: var(--text-headings);
}

.checkout-modal-content h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text-headings);
  margin-bottom: 8px;
  font-weight: 600;
}

.modal-subheading {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-headings);
}

.form-group label span.required {
  color: #ff3333;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 14px;
  background-color: var(--bg-base);
  color: var(--text-body);
  transition: border-color 0.2s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--accent-primary);
  outline: none;
}

.btn-submit-wa-order {
  background-color: var(--whatsapp-color, #25D366);
  color: #FFFFFF;
  border: none;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.btn-submit-wa-order:hover {
  background-color: #1ebe57;
  transform: translateY(-1px);
}

/* Mobile responsive cart */
@media (max-width: 991px) {
  .cart-layout-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .woocommerce-cart-table thead {
    display: none;
  }
  
  .woocommerce-cart-table tr {
    display: block;
    border-bottom: 2px solid var(--border-color);
    padding: 16px 0;
    position: relative;
  }
  
  .woocommerce-cart-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
    border-bottom: none;
    text-align: right;
    box-sizing: border-box;
  }
  
  .woocommerce-cart-table td.product-remove {
    position: absolute;
    top: 8px;
    right: 0;
    width: auto;
    padding: 0;
  }
  
  .woocommerce-cart-table td.product-thumbnail {
    text-align: center;
    padding-bottom: 16px;
  }
  
  .woocommerce-cart-table td::before {
    content: attr(data-title);
    float: left;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  .woocommerce-cart-table td.product-remove::before,
  .woocommerce-cart-table td.product-thumbnail::before {
    display: none;
  }
}

/* Gallery Page Layout & Masonry Grid */
.gallery-portfolio-section {
  padding: 80px 0;
  background-color: var(--bg-base);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-masonry-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-speed, 0.3s) ease, box-shadow var(--transition-speed, 0.3s) ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.gallery-card-img-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}

.gallery-card-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover .gallery-card-img-wrapper img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17,17,17,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-speed, 0.3s) ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-view-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  border: 1.5px solid #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--btn-radius);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.gallery-card-view-btn:hover {
  background-color: #FFFFFF;
  color: var(--text-headings);
}

.gallery-card-info {
  padding: 24px;
}

.gallery-card-cat {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.gallery-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-headings);
  margin: 0;
  line-height: 1.3;
}

.gallery-load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-load-more {
  border: 1.5px solid var(--text-headings);
  background-color: transparent;
  color: var(--text-headings);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition-speed, 0.3s) ease;
}

.btn-load-more:hover {
  background-color: var(--text-headings);
  color: #FFFFFF;
}

/* Mobile responsive masonry */
@media (max-width: 991px) {
  .gallery-masonry-grid {
    column-count: 2;
    column-gap: 16px;
  }
  .gallery-card {
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .gallery-masonry-grid {
    column-count: 1;
    column-gap: 0;
  }
}

/* About Us Page Sections Styles */
.about-founder-section {
  padding: 80px 0;
  background-color: var(--bg-base);
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.founder-col-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 32px rgba(17,17,17,0.04);
}

.founder-col-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.about-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-primary);
}

.about-heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-headings);
  line-height: 1.2;
}

.about-rich-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-signature-box {
  margin-top: 16px;
  border-left: 2px solid var(--accent-primary);
  padding-left: 16px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-headings);
}

.founder-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Stats Cards Section 3 */
.about-stats-section {
  padding: 64px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-stat-card {
  background-color: var(--bg-base);
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  text-align: center;
  transition: transform var(--transition-speed, 0.3s) ease, box-shadow var(--transition-speed, 0.3s) ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17,17,17,0.05);
}

.stat-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.stat-card-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.stat-card-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section 4: Our Process Pipeline */
.about-process-section {
  padding: 80px 0;
  background-color: var(--bg-base);
}

.about-section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.process-step-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--bg-alt);
  border: 1.5px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-process-step:hover .process-step-icon-wrapper {
  background-color: var(--accent-secondary);
  border-color: var(--accent-secondary);
  color: #FFFFFF;
}

.process-step-icon {
  font-size: 24px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-headings);
  margin: 0;
}

.process-step-description {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  max-width: 240px;
}

/* Section 5: Certifications Grid */
.about-certs-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
}

.about-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.about-cert-card {
  background-color: var(--bg-base);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.cert-card-img-wrapper {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-color: var(--bg-alt);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.cert-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.about-cert-card:hover .cert-logo-img {
  filter: grayscale(0);
}

.cert-card-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-headings);
  margin: 0;
}

.cert-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

/* Section 6: CTA Section Banner */
.about-cta-section {
  position: relative;
  padding: 100px 0;
  background-image: url('assets/kasavu.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #FFFFFF;
}

.about-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200,134,10,0.88) 0%, rgba(42,92,63,0.82) 100%);
  z-index: 1;
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-cta-heading {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.about-cta-subtext {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.about-cta-wa-btn {
  background-color: #FFFFFF;
  color: var(--accent-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  border-radius: var(--btn-radius);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-decoration: none;
}

.about-cta-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background-color: var(--bg-alt);
}

/* Mobile Responsive overrides for about page */
@media (max-width: 991px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-col-image img {
    height: 400px;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-process-strip {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-certs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-cta-heading {
    font-size: 32px;
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Info Cards Section */
.contact-info-section {
  padding: 80px 0 40px;
  background-color: var(--bg-base);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info-card {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-primary);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 8px;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-headings);
  margin: 0;
}

.contact-card-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
}

.contact-card-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-primary);
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 8px;
  border-bottom: 1.5px solid transparent;
  transition: all 0.3s ease;
}

.contact-card-link:hover {
  color: var(--accent-secondary);
  border-color: var(--accent-secondary);
}

/* Contact Form Section (CF7 Simulation) */
.contact-form-section {
  padding: 40px 0 80px;
  background-color: var(--bg-base);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.contact-form-title-group {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-primary);
  margin-bottom: 8px;
  display: block;
}

.contact-form-heading {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-headings);
  margin: 0;
  font-weight: 600;
}

.cf7-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.cf7-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.cf7-form-group.full-width {
  grid-column: span 2;
}

.cf7-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-headings);
}

.cf7-label .required-star {
  color: #CC2200;
}

.cf7-input,
.cf7-select,
.cf7-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-base);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--btn-radius, 2px);
  transition: all 0.3s ease;
}

.cf7-input:focus,
.cf7-select:focus,
.cf7-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background-color: #FFFFFF;
}

.cf7-textarea {
  resize: vertical;
}

.cf7-submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.cf7-submit-btn {
  background-color: var(--text-headings, #111111);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 48px;
  border-radius: var(--btn-radius, 2px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf7-submit-btn:hover {
  background-color: var(--accent-primary);
  transform: translateY(-2px);
}

/* Success & Error Messages (CF7 style) */
.cf7-response-output {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--btn-radius, 2px);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  display: none;
}

.cf7-response-output.success {
  display: block;
  background-color: rgba(37, 211, 102, 0.1);
  border: 1.5px solid #25D366;
  color: #1a9e4b;
}

.cf7-response-output.validation-error {
  display: block;
  background-color: rgba(204, 34, 0, 0.1);
  border: 1.5px solid #CC2200;
  color: #991900;
}

.cf7-validation-tip {
  color: #CC2200;
  font-family: var(--font-body);
  font-size: 12px;
  margin-top: 4px;
}

/* Section 3: Large WhatsApp Chat Section */
.contact-whatsapp-section {
  padding: 60px 0;
  background-color: var(--bg-alt);
  text-align: center;
}

.contact-whatsapp-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-wa-title {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text-headings);
  margin: 0;
  font-weight: 600;
}

.contact-wa-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.contact-large-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 48px;
  border-radius: var(--btn-radius, 2px);
  width: auto;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.contact-large-wa-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
}

/* Section 4: Map Section */
.contact-map-section {
  width: 100%;
  height: 480px;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  display: block;
}

.contact-map-section.hidden {
  display: none !important;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile responsive styles for contact page */
@media (max-width: 991px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-container {
    padding: 30px 24px;
  }

  .cf7-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cf7-form-group.full-width {
    grid-column: span 1;
  }

  .contact-large-wa-btn {
    width: 100%;
    display: flex;
  }

  .contact-map-section {
    height: 350px;
  }
}

/* ==========================================================================
   Onam Specials Page Styles
   ========================================================================== */

/* Onam Hero Countdown Banner */
.onam-hero-section {
  position: relative;
  width: 100%;
  padding: 100px 0 80px;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #FFFFFF;
}

.onam-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42,92,63,0.92) 0%, rgba(200,134,10,0.85) 100%);
  z-index: 1;
}

.onam-hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.onam-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}

.onam-hero-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0;
}

/* Countdown Grid */
.onam-countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.onam-countdown-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--card-radius, 0px);
  width: 100px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.onam-countdown-box:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--accent-primary);
}

.onam-countdown-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.onam-countdown-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

/* Discount info block */
.onam-discount-section {
  padding: 60px 0 40px;
  background-color: var(--bg-base);
}

.onam-discount-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-alt);
  border: 1.5px solid var(--accent-primary);
  border-radius: var(--card-radius);
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.05);
  position: relative;
  overflow: hidden;
}

.onam-discount-card::before {
  content: "🌸";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 24px;
  opacity: 0.8;
}

.onam-discount-card::after {
  content: "🌸";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
  opacity: 0.8;
}

.onam-discount-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-secondary, #2A5C3F);
  margin-top: 0;
  margin-bottom: 16px;
}

.onam-discount-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

.onam-discount-text p {
  margin-bottom: 12px;
}
.onam-discount-text p:last-child {
  margin-bottom: 0;
}

/* Onam Product Grid Heading */
.onam-section-title-group {
  text-align: center;
  margin: 60px 0 40px;
}

.onam-section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-primary);
  margin-bottom: 8px;
  display: block;
}

.onam-section-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--text-headings);
  margin: 0;
}

/* Gallery strip horizontal row */
.onam-gallery-section {
  padding: 60px 0;
  background-color: var(--bg-base);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.onam-gallery-container {
  max-width: 100%;
  padding: 0 15px;
}

.onam-gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
}

.onam-gallery-scroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.onam-gallery-item {
  flex: 0 0 280px;
  height: 280px;
  overflow: hidden;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color);
  background-color: var(--bg-alt);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.onam-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.onam-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: var(--accent-primary);
}

.onam-gallery-item:hover img {
  transform: scale(1.08);
}

/* WhatsApp CTA Section */
.onam-cta-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
  text-align: center;
}

.onam-cta-container {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.onam-cta-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-headings);
  margin: 0;
  font-weight: 600;
}

.onam-cta-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.onam-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 48px;
  border-radius: var(--btn-radius, 2px);
  width: auto;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.onam-whatsapp-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .onam-hero-headline {
    font-size: 36px;
  }

  .onam-discount-card {
    padding: 30px 24px;
  }

  .onam-section-heading {
    font-size: 30px;
  }

  .onam-gallery-item {
    flex: 0 0 200px;
    height: 200px;
  }

  .onam-whatsapp-btn {
    width: 100%;
    display: flex;
  }
}



