/* ==========================================================================
   GEMBYIKX LUXURY JEWELRY - FULLY RESPONSIVE THEME STYLESHEET
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --zeesy-bg-main: #fffdf5;
  --zeesy-bg-surface: #f2efe3;
  --zeesy-bg-card: #ffffff;
  --zeesy-text-dark: #3b3933;
  --zeesy-text-muted: #6e6b62;
  --zeesy-border-color: #efebdd;
  
  /* Primary & Accent Colors */
  --zeesy-primary-green: #006600;
  --zeesy-primary-green-hover: #004d00;
  --zeesy-gold-accent: #B56916;
  --zeesy-gold-light: #ffbf1a;
  --zeesy-gold-star: #B7670F;
  --zeesy-whatsapp-green: #25D366;
  --zeesy-whatsapp-hover: #1ebd58;
  --zeesy-dark-surface: #1e1e1e;
  
  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout Spacing */
  --container-max-width: 1440px;
  --header-height: 74px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(59, 57, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(59, 57, 51, 0.1);
  --shadow-lg: 0 16px 36px rgba(59, 57, 51, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Page View Visibility Rule */
.demo-page-view {
  display: none !important;
}

.demo-page-view.active {
  display: block !important;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--zeesy-bg-main);
  color: var(--zeesy-text-dark);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--zeesy-text-dark);
  line-height: 1.25;
  margin-bottom: 0.5em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--zeesy-gold-accent); }
.text-green { color: var(--zeesy-primary-green); }
.bg-surface { background-color: var(--zeesy-bg-surface); }
.badge-gold { background: var(--zeesy-gold-accent); color: #ffffff; padding: 2px 8px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; }
.badge-sale { background: var(--zeesy-primary-green); color: #ffffff; padding: 2px 8px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; }

/* Announcement Bar */
.announcement-bar {
  background-color: var(--zeesy-primary-green);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--zeesy-gold-light);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 rgba(255, 191, 26, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 191, 26, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 191, 26, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 191, 26, 0); }
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.currency-selector select {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-size: 0.8rem;
  cursor: pointer;
}

.currency-selector select option {
  color: var(--zeesy-text-dark);
  background: #ffffff;
}

/* Site Header */
.site-header {
  background-color: var(--zeesy-bg-main);
  border-bottom: 1px solid var(--zeesy-border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--zeesy-text-dark);
}

.zeesy-text-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.zeesy-text-logo .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: 2px;
  color: var(--zeesy-text-dark);
}

.zeesy-text-logo .brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--zeesy-gold-accent);
  font-weight: 700;
  margin-top: 2px;
}

/* Search Bar */
.header-search-container {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-full);
  padding: 4px 6px 4px 16px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
  transition: border-color var(--transition-fast);
}

.search-input-wrapper:focus-within {
  border-color: var(--zeesy-gold-accent);
}

.search-icon {
  color: var(--zeesy-text-muted);
  margin-right: 8px;
}

.search-field {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--zeesy-text-dark);
}

.search-submit {
  background-color: var(--zeesy-primary-green);
  color: #ffffff;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background-color var(--transition-fast);
}

.search-submit:hover {
  background-color: var(--zeesy-primary-green-hover);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 200;
  display: none;
  max-height: 380px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--zeesy-border-color);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.search-result-item:hover {
  background-color: var(--zeesy-bg-surface);
}

.search-result-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-action-btn {
  position: relative;
  font-size: 1.3rem;
  color: var(--zeesy-text-dark);
  padding: 6px;
}

.action-count, .cart-count-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background-color: var(--zeesy-gold-accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Navigation */
.main-navigation {
  background-color: var(--zeesy-bg-main);
  border-top: 1px solid var(--zeesy-border-color);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 28px;
  padding: 10px 0;
}

.nav-menu .menu-item a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--zeesy-text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-menu .menu-item.active a,
.nav-menu .menu-item a:hover {
  color: var(--zeesy-gold-accent);
}

.nav-menu .menu-item.active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--zeesy-gold-accent);
}

.nav-badge {
  background-color: #d9534f;
  color: #ffffff;
  font-size: 0.65rem;
  padding: 1px 5px;
  border-radius: var(--radius-sm);
  margin-left: 4px;
}

/* Slide-over Drawers (Cart & Mobile) */
.cart-drawer-overlay, .mobile-drawer-overlay, .modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(3px);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.cart-drawer-overlay.active, .mobile-drawer-overlay.active, .modal-overlay.active {
  display: block;
  opacity: 1;
}

.cart-drawer, .mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: #ffffff;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal);
}

.cart-drawer { right: 0; transform: translateX(100%); }
.mobile-drawer { left: 0; transform: translateX(-100%); }

.cart-drawer.active { transform: translateX(0); }
.mobile-drawer.active { transform: translateX(0); }

.cart-drawer-header, .mobile-drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--zeesy-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close-btn {
  font-size: 1.3rem;
  color: var(--zeesy-text-muted);
}

/* Free Shipping Progress Bar */
.free-shipping-bar-container {
  background-color: var(--zeesy-bg-surface);
  padding: 12px 20px;
  border-bottom: 1px solid var(--zeesy-border-color);
}

.free-shipping-text {
  font-size: 0.825rem;
  margin-bottom: 6px;
  text-align: center;
}

.free-shipping-progress {
  height: 6px;
  background-color: #e0dcd0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.free-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--zeesy-gold-accent), var(--zeesy-primary-green));
  transition: width 0.4s ease;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--zeesy-border-color);
}

.cart-item-row img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--zeesy-gold-accent); font-weight: 700; }

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--zeesy-border-color);
  background-color: var(--zeesy-bg-main);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.shipping-note {
  font-size: 0.78rem;
  color: var(--zeesy-primary-green);
  font-weight: 600;
  margin-bottom: 14px;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background-color: var(--zeesy-primary-green);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--zeesy-primary-green-hover);
}

.btn-gold {
  background-color: var(--zeesy-gold-accent);
  color: #ffffff;
}

.btn-gold:hover {
  background-color: #96530e;
}

.btn-whatsapp {
  background-color: var(--zeesy-whatsapp-green);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--zeesy-whatsapp-hover);
}

.btn-outline {
  border: 1px solid var(--zeesy-border-color);
  background-color: #ffffff;
  color: var(--zeesy-text-dark);
}

.btn-outline:hover {
  border-color: var(--zeesy-gold-accent);
  color: var(--zeesy-gold-accent);
}

.btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--zeesy-text-dark);
}

.btn-block { width: 100%; display: flex; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* Hero Banner */
.hero-banner-section {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background-color: var(--zeesy-dark-surface);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 22, 0.8) 0%, rgba(20, 20, 22, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 680px;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--zeesy-gold-light);
  display: inline-block;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.hero-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Category Grid Cards - Responsive Centered Layout */
.section-padding { padding: 50px 0; }
.section-header { margin-bottom: 32px; }
.section-subtitle { font-size: 0.78rem; letter-spacing: 3px; font-weight: 700; color: var(--zeesy-gold-accent); display: block; margin-bottom: 6px; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 8px; }
.gold-divider { width: 60px; height: 3px; background-color: var(--zeesy-gold-accent); margin: 10px auto 0 auto; border-radius: var(--radius-full); }

.category-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
}

.category-card {
  text-align: center;
  transition: transform var(--transition-fast);
  cursor: pointer;
  width: 140px;
}

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

.category-image-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px auto;
  border: 3px solid var(--zeesy-border-color);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
  background-color: var(--zeesy-bg-surface);
}

.category-card:hover .category-image-wrapper {
  border-color: var(--zeesy-gold-accent);
}

.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image-wrapper img {
  transform: scale(1.1);
}

.category-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.category-count { font-size: 0.78rem; color: var(--zeesy-text-muted); }

/* ==========================================================================
   ABOUT US PAGE LUXURY STYLING
   ========================================================================== */

.about-hero-header {
  background: linear-gradient(135deg, #181818 0%, #26231c 100%);
  color: #ffffff;
  padding: 56px 0;
  text-align: center;
  border-bottom: 3px solid var(--zeesy-gold-accent);
}

.about-hero-header .hero-subtitle {
  color: var(--zeesy-gold-light);
  letter-spacing: 4px;
}

.about-hero-header .hero-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 8px;
}

.about-hero-header .hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--zeesy-border-color);
}

.story-image-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(4px);
  color: var(--zeesy-gold-light);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--zeesy-gold-accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.story-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--zeesy-border-color);
}

.highlight-item i {
  font-size: 1.25rem;
  color: var(--zeesy-gold-accent);
  margin-top: 2px;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--zeesy-text-dark);
}

.highlight-item span {
  font-size: 0.825rem;
  color: var(--zeesy-text-muted);
}

.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--zeesy-border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--zeesy-gold-accent);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(181, 105, 22, 0.1);
  color: var(--zeesy-gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px auto;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--zeesy-text-muted);
}

/* ==========================================================================
   SHOP CATALOG & PRODUCT GRID STYLING
   ========================================================================== */

.shop-hero-header {
  background: linear-gradient(135deg, #181818 0%, #26231c 100%);
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
  border-bottom: 3px solid var(--zeesy-gold-accent);
}

.breadcrumbs {
  font-size: 0.825rem;
  color: var(--zeesy-gold-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.shop-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.shop-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Category Filter Pills Bar */
.shop-filter-pills-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px 0;
}

.filter-pill-btn {
  background-color: #ffffff;
  border: 1px solid var(--zeesy-border-color);
  color: var(--zeesy-text-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-pill-btn:hover, .filter-pill-btn.active {
  background-color: var(--zeesy-gold-accent);
  border-color: var(--zeesy-gold-accent);
  color: #ffffff;
}

/* Shop Layout Grid (Sidebar + Products) */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.shop-sidebar {
  background: #ffffff;
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.filter-widget {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--zeesy-border-color);
}

.filter-widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--zeesy-text-dark);
  margin-bottom: 14px;
  position: relative;
}

.filter-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.filter-list li {
  margin-bottom: 10px;
  list-style: none !important;
}

.filter-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--zeesy-text-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.filter-list label:hover {
  color: var(--zeesy-gold-accent);
}

.filter-list input[type="checkbox"],
.filter-list input[type="radio"] {
  accent-color: var(--zeesy-gold-accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-list span {
  font-size: 0.78rem;
  color: var(--zeesy-text-muted);
  margin-left: auto;
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.results-count {
  font-size: 0.9rem;
  color: var(--zeesy-text-muted);
}

.toolbar-sort-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.sort-dropdown select {
  background: var(--zeesy-bg-main);
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  gap: 20px;
}

.grid-col-4 { grid-template-columns: repeat(4, 1fr); }
.grid-col-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--zeesy-bg-card);
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #ded8c4;
}

.product-card-media {
  position: relative;
  padding-top: 110%;
  overflow: hidden;
  background-color: var(--zeesy-bg-surface);
}

.product-image-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-normal), transform 0.5s ease;
}

.hover-image { opacity: 0; }
.product-card:hover .hover-image { opacity: 1; }
.product-card:hover .primary-image { opacity: 0; }
.product-card:hover .product-image-link img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.wishlist-toggle-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--zeesy-text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.wishlist-toggle-btn:hover, .wishlist-toggle-btn.active {
  background-color: #ffffff;
  color: #d9534f;
}

.product-card-actions {
  position: absolute;
  bottom: -50px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  transition: bottom var(--transition-normal);
  z-index: 5;
}

.product-card:hover .product-card-actions {
  bottom: 10px;
}

.btn-card-action {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
  color: var(--zeesy-text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--zeesy-border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.btn-card-action:hover {
  background-color: var(--zeesy-primary-green);
  color: #ffffff;
  border-color: var(--zeesy-primary-green);
}

.product-card-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-tag { font-size: 0.7rem; color: var(--zeesy-gold-accent); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.product-card-title { font-size: 0.925rem; font-weight: 600; margin: 4px 0 6px 0; line-height: 1.35; }
.rating-stars { color: var(--zeesy-gold-star); font-size: 0.78rem; }
.rating-count { font-size: 0.725rem; color: var(--zeesy-text-muted); margin-left: 4px; }
.product-price-row { display: flex; align-items: baseline; gap: 6px; margin: 6px 0 10px 0; flex-wrap: wrap; }
.price-current { font-size: 1.05rem; font-weight: 700; color: var(--zeesy-text-dark); }
.price-old { font-size: 0.8rem; text-decoration: line-through; color: var(--zeesy-text-muted); }

.whatsapp-quick-order {
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--zeesy-whatsapp-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-quick-order:hover {
  color: var(--zeesy-whatsapp-hover);
}

/* 4-Column Clean Trust Features Bar */
.trust-features-bar {
  background-color: var(--zeesy-bg-surface);
  border-top: 1px solid var(--zeesy-border-color);
  border-bottom: 1px solid var(--zeesy-border-color);
  padding: 40px 0;
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--zeesy-border-color);
  box-shadow: var(--shadow-sm);
}

.trust-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(181, 105, 22, 0.1);
  color: var(--zeesy-gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-feature-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-feature-info p {
  font-size: 0.78rem;
  color: var(--zeesy-text-muted);
  line-height: 1.35;
}

/* VIP Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #1b261b 0%, #0d160d 100%);
  color: #ffffff;
  padding: 40px 0;
  border-top: 3px solid var(--zeesy-gold-accent);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-text {
  max-width: 580px;
}

.newsletter-subtitle {
  font-size: 0.78rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--zeesy-gold-light);
  display: inline-block;
  margin-bottom: 6px;
}

.newsletter-text h2 {
  color: #ffffff;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  margin-bottom: 8px;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 440px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
  font-size: 0.88rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Premium Main Footer */
.site-footer {
  background-color: #121212;
  color: #d1d1d1;
  padding-top: 50px;
  font-size: 0.88rem;
  border-top: 1px solid #222222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-logo .brand-name {
  color: #ffffff;
  font-size: 1.85rem;
}

.footer-logo .brand-tagline {
  color: var(--zeesy-gold-accent);
  letter-spacing: 4px;
}

.brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin-bottom: 16px;
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f1f1f;
  color: var(--zeesy-gold-light);
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--zeesy-gold-accent);
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links li {
  margin-bottom: 8px;
  list-style: none !important;
}

.footer-links a {
  color: #b0b0b0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--zeesy-gold-light);
}

.footer-contact-info {
  font-size: 0.85rem;
  color: #b0b0b0;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
  background-color: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 16px 0;
}

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

.copyright-text {
  font-size: 0.825rem;
  color: #888888;
}

.payment-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #cccccc;
  font-size: 0.725rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background-color: var(--zeesy-whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 900;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .grid-col-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-col-3 { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .brand-values-grid { grid-template-columns: 1fr; }
  .trust-features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
}

@media (max-width: 768px) {
  .announcement-right { display: none; }
  .announcement-text { text-align: center; width: 100%; font-size: 0.78rem; }
  
  .mobile-menu-toggle { display: block; }
  .main-navigation { display: none; }
  .header-search-container { display: none; }
  
  .zeesy-text-logo .brand-name { font-size: 1.5rem; }
  .zeesy-text-logo .brand-tagline { font-size: 0.55rem; letter-spacing: 3px; }
  
  .hero-banner-section { height: auto; min-height: 380px; padding: 60px 0; }
  .hero-btn-group { flex-direction: column; width: 100%; }
  .hero-btn-group .btn { width: 100%; }
  
  .category-grid { gap: 16px; }
  .category-card { width: 115px; }
  .category-image-wrapper { width: 100px; height: 100px; }
  .category-name { font-size: 0.88rem; }
  
  .grid-col-3, .grid-col-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-info { padding: 10px; }
  .product-card-title { font-size: 0.85rem; }
  .price-current { font-size: 0.95rem; }
  
  .trust-features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-feature-card { padding: 12px; flex-direction: column; text-align: center; }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-logo { align-items: center; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-socials { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .payment-methods { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  .grid-col-3, .grid-col-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-card { width: 100px; }
  .category-image-wrapper { width: 85px; height: 85px; }
  .category-name { font-size: 0.8rem; }
}


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

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.text-whatsapp { color: var(--zeesy-whatsapp-green); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-box h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 10px 0 14px 0;
}

.contact-info-box p {
  color: var(--zeesy-text-muted);
  margin-bottom: 24px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.method-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--zeesy-border-color);
  box-shadow: var(--shadow-sm);
}

.method-card i {
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.method-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.method-card p {
  font-size: 0.88rem;
  color: var(--zeesy-text-muted);
  margin: 0;
}

.contact-form-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--zeesy-border-color);
}

.shadow-lg-radius {
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--zeesy-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  background-color: var(--zeesy-bg-main);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--zeesy-gold-accent);
}

.form-group textarea {
  resize: vertical;
}

/* FAQ Accordion */
.faq-accordion-wrapper {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--zeesy-border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zeesy-text-dark);
  text-align: left;
}

.faq-question i {
  transition: transform var(--transition-fast);
  color: var(--zeesy-gold-accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.88rem;
  color: var(--zeesy-text-muted);
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .form-row { flex-direction: column; gap: 0; }
}

/* Quick View Modal */
.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.quick-view-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--zeesy-bg-surface);
  color: var(--zeesy-text-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--zeesy-gold-accent);
  color: #ffffff;
}

@media (max-width: 768px) {
  .quick-view-modal {
    width: 94%;
    padding: 20px;
    max-height: 90vh;
  }
}