/* Reset & Base Styles */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

:root {
   --primary-color: #d4af37;
   --secondary-color: #1a1a1a;
   --text-color: #2c3e50;
   --light-bg: #e6f2ff;
   --white: #ffffff;
   --footer-bg: #ffffff;
   --baby-blue: #ADD8E6;
   --light-baby-blue: #c9e4f5;
   --dark-baby-blue: #87CEEB;
   --elegant-blue: #b8d8eb;
   --border-color: #c9e4f5;
   --success-color: #28a745;
   --danger-color: #dc3545;
   --shadow: 0 2px 15px rgba(173, 216, 230, 0.25);
   --shadow-lg: 0 8px 35px rgba(173, 216, 230, 0.35);
   --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: var(--text-color);
   line-height: 1.6;
   overflow-x: hidden;
   background: linear-gradient(135deg, #e6f2ff 0%, #ADD8E6 50%, #c9e4f5 100%);
   background-attachment: fixed;
   background-size: 200% 200%;
}

/* Scroll reveal animations */
@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translate3d(0, 50px, 0);
   }
   to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
   }
}

@keyframes fadeInLeft {
   from {
      opacity: 0;
      transform: translate3d(-50px, 0, 0);
   }
   to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
   }
}

@keyframes fadeInRight {
   from {
      opacity: 0;
      transform: translate3d(50px, 0, 0);
   }
   to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
   }
}

@keyframes scaleIn {
   from {
      opacity: 0;
      transform: scale(0.9);
   }
   to {
      opacity: 1;
      transform: scale(1);
   }
}

@keyframes shimmer {
   0% {
      background-position: -1000px 0;
   }
   100% {
      background-position: 1000px 0;
   }
}

@keyframes gradientShift {
   0%, 100% {
      background-position: 0% 50%;
   }
   50% {
      background-position: 100% 50%;
   }
}

@keyframes pulse {
   0%, 100% {
      transform: scale(1);
   }
   50% {
      transform: scale(1.05);
   }
}

@keyframes slideDown {
   from {
      opacity: 0;
      transform: translate3d(0, -20px, 0);
   }
   to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
   }
}

/* Animation utility classes */
.animate-on-scroll {
   opacity: 0;
   animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

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

img {
   max-width: 100%;
   height: auto;
   display: block;
   image-rendering: -webkit-optimize-contrast;
   transform: translateZ(0);
   will-change: transform;
}

/* Header Styles */
.header {
   position: sticky;
   top: 0;
   z-index: 1000;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   box-shadow: 0 4px 20px rgba(173, 216, 230, 0.3);
   border-bottom: 1px solid rgba(173, 216, 230, 0.2);
   transform: translateZ(0);
   will-change: transform;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   text-rendering: optimizeLegibility;
}

.top-bar {
   display: none;
   background: var(--secondary-color);
   color: var(--white);
   padding: 8px 0;
   font-size: 14px;
}

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

.contact-info span {
   margin-right: 20px;
}

.contact-info i {
   margin-right: 5px;
   color: var(--primary-color);
}

.social-links a {
   color: var(--white);
   margin-left: 15px;
   transition: var(--transition);
}

.social-links a:hover {
   color: var(--primary-color);
}

/* Navbar */
.navbar {
   padding: 12px 0;
   background: #ffffff;
   backdrop-filter: blur(15px);
   position: sticky;
   top: 0;
   z-index: 999;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   padding: 0 20px;
}

@media (min-width: 769px) {
   .nav-content {
      justify-content: center;
   }
   .nav-menu {
      flex: 1;
      justify-content: center;
   }
   .nav-icons {
      position: absolute;
      right: 20px;
   }
   .logo-brand {
      position: absolute;
      left: 20px;
   }
}

.logo-small {
   font-size: 24px;
   color: var(--primary-color);
   font-weight: 900;
   letter-spacing: 2px;
}

.logo h1 {
   display: none;
}

.logo .tagline {
   display: none;
}

/* Logo image brand */
.logo-brand {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin: 0;
   flex-shrink: 0;
}
.logo-brand img {
   height: 70px;
   width: auto;
   object-fit: contain;
   border-radius: 6px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   transition: var(--transition);
}

.nav-menu {
   display: flex;
   list-style: none;
   gap: 8px;
}

/* Hide nav-menu on mobile by default (will show with .active class) */
@media (max-width: 768px) {
   .nav-menu {
      display: flex !important;
      position: fixed; 
      top: 80px;
      left: 0;
      right: 0;
      width: 100%;
      flex-direction: column;
      background: #ffffff;
      backdrop-filter: blur(20px);
      text-align: center;
      list-style: none;
      gap: 0;
      z-index: 12000;
      max-height: 0;
      min-height: 0;
      overflow: clip;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      padding: 0 !important;
      margin: 0 !important;
      transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
   }
   .nav-menu.active { 
      max-height: calc(100vh - 80px);
      overflow-y: auto;
      padding: 20px 0;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
   }
}

.nav-menu a {
   color: #1a1a2e;
   font-weight: 600;
   padding: 10px 18px;
   position: relative;
   border-radius: 6px;
   transition: var(--transition);
   display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
   color: #d4af37;
   background: rgba(212, 175, 55, 0.1);
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dropdown Menu */
.nav-dropdown {
   position: relative;
}

.dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: #ffffff;
   list-style: none;
   min-width: 180px;
   max-height: 400px;
   border-radius: 8px;
   overflow-y: auto;
   overflow-x: hidden;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   z-index: 10000;
   padding: 8px 0;
   margin: 8px 0 0 0;
}

.nav-dropdown:hover .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.dropdown-menu li {
   margin: 0;
}

.dropdown-menu a {
   display: block;
   padding: 12px 18px;
   color: #1a1a2e;
   border-radius: 0;
   margin: 0;
   transition: var(--transition);
}

.dropdown-menu a:hover {
   background: rgba(212, 175, 55, 0.1);
   color: #d4af37;
   transform: none;
   box-shadow: none;
   padding-left: 24px;
}

.nav-menu a::after {
   content: '';
   position: absolute;
   bottom: 6px;
   left: 18px;
   right: 18px;
   height: 2px;
   background: var(--white);
   transform: scaleX(0);
   transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
   transform: scaleX(1);
}

.dropdown {
   position: relative;
}

/* Legacy dropdown styles scoped to .dropdown to avoid overriding nav dropdown */
.dropdown .dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: rgba(255, 255, 255, 0.98);
   backdrop-filter: blur(15px);
   box-shadow: 0 8px 30px rgba(173, 216, 230, 0.35);
   border: 1px solid rgba(173, 216, 230, 0.2);
   list-style: none;
   min-width: 200px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: var(--transition);
   border-radius: 8px;
   padding: 10px 0;
   z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.dropdown-toggle i {
   transition: var(--transition);
}

.dropdown.active .dropdown-toggle i {
   transform: rotate(180deg);
}

.dropdown .dropdown-menu li { padding: 0; }
.dropdown .dropdown-menu a {
   display: block;
   padding: 10px 20px;
   color: var(--text-color);
}
.dropdown .dropdown-menu a:hover {
   background: linear-gradient(90deg, var(--light-bg), var(--baby-blue));
   color: var(--primary-color);
}

.nav-icons {
   display: flex;
   gap: 15px;
   align-items: center;
   margin-left: auto;
}

/* Mobile search: hidden by default */
.mobile-search { display: none; }
.mobile-search-container { display: none; }

.icon-btn {
   background: none;
   border: none;
   font-size: 22px;
   cursor: pointer;
   color: #1a1a2e;
   position: relative;
   transition: var(--transition);
   padding: 8px;
}
.icon-btn:hover { color: #d4af37; background: rgba(212, 175, 55, 0.1); border-radius: 6px; }

.search-btn {
   display: flex;
   align-items: center;
   justify-content: center;
}

.badge {
   position: absolute;
   top: -8px;
   right: -8px;
   background: var(--primary-color);
   color: var(--white);
   font-size: 11px;
   padding: 2px 6px;
   border-radius: 10px;
   font-weight: bold;
   transition: var(--transition);
}

.badge.pulse-animation {
   animation: badgePulse 0.6s ease;
}

@keyframes badgePulse {
   0% { transform: scale(1); opacity: 1; }
   50% { transform: scale(1.15); opacity: 0.9; box-shadow: 0 8px 20px rgba(212, 175, 55, 0.8); }
   100% { transform: scale(1); opacity: 1; }
}

@keyframes badgeFloat {
   0%, 100% { transform: translateY(0px); }
   50% { transform: translateY(-3px); }
}

/* Add to Cart Notification */
.cart-notification {
   position: fixed;
   top: 100px;
   right: 30px;
   background: var(--white);
   padding: 20px 25px;
   border-radius: 12px;
   box-shadow: 0 10px 40px rgba(0,0,0,0.2);
   display: flex;
   align-items: center;
   gap: 15px;
   z-index: 9999;
   transform: translateX(400px);
   opacity: 0;
   transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
   border-left: 4px solid var(--success-color);
}

.cart-notification.show {
   transform: translateX(0);
   opacity: 1;
}

.cart-notification.hide {
   transform: translateX(400px);
   opacity: 0;
}

.cart-notification-icon {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, var(--success-color), #27ae60);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 24px;
   flex-shrink: 0;
   animation: checkmarkPop 0.5s ease;
}

@keyframes checkmarkPop {
   0% { transform: scale(0) rotate(-180deg); }
   50% { transform: scale(1.2) rotate(10deg); }
   100% { transform: scale(1) rotate(0deg); }
}

.cart-notification-content {
   flex: 1;
}

.cart-notification-title {
   font-weight: 600;
   color: var(--secondary-color);
   margin-bottom: 5px;
   font-size: 15px;
}

.cart-notification-message {
   color: #666;
   font-size: 13px;
}

.cart-notification-close {
   background: none;
   border: none;
   color: #999;
   font-size: 20px;
   cursor: pointer;
   padding: 0;
   width: 24px;
   height: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   transition: var(--transition);
   flex-shrink: 0;
}

.cart-notification-close:hover {
   background: var(--light-bg);
   color: var(--secondary-color);
}

.mobile-menu-btn { 
   display: none;
   background: none;
   border: none;
   font-size: 26px;
   cursor: pointer;
   color: var(--secondary-color);
   padding: 8px 12px;
   transition: var(--transition);
   order: -1;
   z-index: 13001;
   position: relative;
   pointer-events: auto;
   touch-action: manipulation;
   border-radius: 6px;
}
.mobile-menu-btn:hover {
   color: var(--white);
   background: rgba(255, 255, 255, 0.2);
   border-radius: 6px;
   transform: scale(1.05);
}
.mobile-menu-btn:active {
   transform: scale(0.95);
}
/* Mobile Nav Active State */
body.nav-open { overflow: hidden; }
.nav-menu {
   transition: all 0.3s ease;
   transform: translateZ(0);
   will-change: transform, opacity;
   opacity: 1;
   visibility: visible;
}
.nav-menu.active {
   display: flex;
   flex-direction: column;
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   background: linear-gradient(135deg, var(--primary-color) 0%, #d4a840 100%);
   flex-direction: column;
   padding: 20px 0;
   gap: 10px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   z-index: 12000;
}
.nav-menu.active a {
   display: block;
   padding: 15px 20px !important;
   color: var(--secondary-color) !important;
   border-radius: 0;
}
.nav-menu.active a:hover {
   background: rgba(255, 255, 255, 0.15) !important;
}

/* Search Overlay & Modal */
.search-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.7);
   z-index: 99999;
   backdrop-filter: blur(5px);
   justify-content: center;
   align-items: flex-start;
   padding-top: 80px;
}

@media (max-width: 768px) {
   .search-overlay {
      padding: 0;
      align-items: stretch;
   }
   .search-modal {
      width: 100% !important;
      max-width: 100% !important;
      max-height: 100vh !important;
      border-radius: 0 !important;
      height: 100%;
   }
   .search-header {
      padding: 15px;
   }
   .search-header h2 {
      font-size: 18px;
   }
   .search-container {
      padding: 15px;
   }
   #searchInput {
      font-size: 16px;
      padding: 14px 15px 14px 45px;
   }
}

.search-overlay.active {
   display: flex;
}

.search-modal {
   background: var(--white);
   border-radius: 12px;
   width: 90%;
   max-width: 600px;
   max-height: 80vh;
   overflow-y: auto;
   box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
   animation: slideDown 0.3s ease;
}

@keyframes slideDown {
   from { transform: translateY(-30px); opacity: 0; }
   to { transform: translateY(0); opacity: 1; }
}

.search-header {
   padding: 20px;
   border-bottom: 2px solid var(--light-bg);
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.search-header h2 {
   margin: 0;
   color: var(--secondary-color);
   font-size: 24px;
}

.search-close-btn {
   background: none;
   border: none;
   font-size: 28px;
   cursor: pointer;
   color: var(--text-color);
   transition: var(--transition);
   padding: 0;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.search-close-btn:hover {
   color: var(--primary-color);
   background: var(--light-bg);
   border-radius: 6px;
}

.search-container {
   position: relative;
   padding: 20px;
   background: var(--light-bg);
   display: flex;
   align-items: center;
   border-bottom: 1px solid var(--border-color);
}

.search-icon {
   position: absolute;
   left: 30px;
   color: var(--primary-color);
   font-size: 18px;
   pointer-events: none;
}

#searchInput {
   width: 100%;
   padding: 12px 15px 12px 45px;
   border: none;
   background: var(--white);
   border-radius: 8px;
   font-size: 16px;
   outline: none;
   transition: var(--transition);
}

#searchInput:focus {
   box-shadow: 0 0 0 3px rgba(173, 216, 230, 0.3);
}

.search-suggestions,
.search-results {
   padding: 10px;
}

.suggestions-list,
.results-list {
   list-style: none;
   margin: 0;
   padding: 0;
}

.suggestion-item,
.result-item {
   padding: 12px 15px;
   cursor: pointer;
   border-radius: 6px;
   display: flex;
   align-items: center;
   gap: 12px;
   transition: var(--transition);
}

.suggestion-item:hover,
.result-item:hover {
   background: var(--light-bg);
   color: var(--primary-color);
}

.suggestion-item i,
.result-item i {
   font-size: 18px;
   color: var(--primary-color);
   min-width: 20px;
}

.result-thumbnail {
   width: 50px;
   height: 50px;
   object-fit: cover;
   border-radius: 8px;
   border: 2px solid var(--border-color);
   background: white;
   flex-shrink: 0;
}

.suggestion-text {
   flex: 1;
}

.suggestion-name,
.result-name {
   font-weight: 600;
   color: var(--secondary-color);
   margin-bottom: 4px;
}

.suggestion-meta,
.result-meta {
   font-size: 13px;
   color: #999;
}

.search-empty {
   padding: 60px 20px;
   text-align: center;
   color: #999;
}

.search-empty i {
   font-size: 48px;
   color: var(--light-bg);
   margin-bottom: 20px;
}

.search-empty p {
   margin: 0;
   font-size: 15px;
}

.search-container input::placeholder {
   color: #999;
}

.search-clear-btn {
   position: absolute; 
   right: 70px; 
   background: none; 
   border: none; 
   font-size: 20px; 
   cursor: pointer; 
   color: #999;
   transition: var(--transition);
   padding: 5px;
   display: flex;
   align-items: center;
   justify-content: center;
}
.search-clear-btn:hover { color: var(--primary-color); transform: rotate(90deg); }

.search-close-btn {
   position: absolute; 
   right: 20px;
   background: var(--primary-color); 
   border: none; 
   font-size: 18px; 
   cursor: pointer; 
   color: var(--white);
   width: 45px;
   height: 45px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
}
.search-close-btn:hover { 
   background: var(--secondary-color); 
   transform: rotate(90deg); 
}

/* Search Suggestions */
.search-suggestions, .search-history {
   position: absolute;
   top: calc(100% + 15px);
   left: 0;
   right: 0;
   background: var(--white);
   border-radius: 20px;
   box-shadow: 0 10px 40px rgba(0,0,0,0.2);
   max-height: 400px;
   overflow-y: auto;
   animation: slideDown 0.3s ease;
}

.suggestions-header, .history-header {
   padding: 15px 25px;
   font-size: 14px;
   font-weight: 600;
   color: #666;
   text-transform: uppercase;
   letter-spacing: 1px;
   border-bottom: 1px solid #eee;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
/* New Mobile Drawer */
.menu-toggle { display: none; background: transparent; border: none; color: #1a1a2e; font-size: 22px; }
.drawer { position: fixed; inset: 0; display: none; z-index: 5000; }
.drawer.open { display: block; }
.drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.drawer-panel { position: absolute; right: 0; top: 0; height: 100%; width: 100%; max-width: 380px; background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%); color: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,0.35); transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { background: transparent; border: none; color: var(--white); font-size: 22px; padding: 16px; align-self: flex-end; }
.drawer-content { padding: 10px 20px 24px; overflow-y: auto; }
.drawer-search { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.95); border-radius: 10px; padding: 10px 14px; margin: 8px 0 16px; }
.drawer-search i { color: var(--primary-color); }
.drawer-search input { flex: 1; border: none; outline: none; background: transparent; font-size: 16px; color: var(--secondary-color); }
.drawer-menu { list-style: none; margin: 0; padding: 0; }
.drawer-menu li { border-bottom: 1px solid rgba(255,255,255,0.15); }
.drawer-menu a { display: block; color: var(--white); padding: 14px 6px; font-weight: 600; text-decoration: none; }
.drawer-menu a:hover { background: rgba(255,255,255,0.12); }
.accordion > .accordion-toggle { width: 100%; background: transparent; border: none; color: var(--white); text-align: left; padding: 14px 6px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; }
.accordion .accordion-panel { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: rgba(0,0,0,0.15); }
.accordion.open .accordion-panel { max-height: 400px; }
.accordion .accordion-panel a { padding: 12px 14px; display: block; font-weight: 500; }

body.nav-open { overflow: hidden; }

/* Simple mobile hamburger */
@media (max-width: 768px) {
   .menu-toggle { 
      display: inline-flex !important;
      cursor: pointer;
      padding: 8px;
      border-radius: 6px;
   }
   .menu-toggle:hover {
      background: rgba(212, 175, 55, 0.1);
   }
   .nav-menu { 
      display: none !important;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      background: linear-gradient(135deg, var(--primary-color) 0%, #d4a840 100%);
      padding: 10px 0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      z-index: 9999;
      overflow: visible !important;
      max-height: none !important;
   }
   .nav-menu.active {
      display: flex !important;
   }
   .nav-menu li {
      margin: 0;
   }
   .nav-menu a {
      padding: 14px 20px !important;
      display: block;
   }
   .nav-dropdown {
      position: relative;
   }
   .nav-dropdown > a {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
   }
   /* Mobile dropdown - hidden by default, show on hover */
   .dropdown-menu {
      position: static !important;
      display: none !important;
      max-height: 0 !important;
      overflow: hidden !important;
      opacity: 0 !important;
      visibility: hidden !important;
      transform: none !important;
      box-shadow: none !important;
      background: rgba(0, 0, 0, 0.15) !important;
      margin: 0 !important;
      padding: 0 !important;
      border-radius: 0 !important;
   }
   .nav-dropdown:hover .dropdown-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      opacity: 1 !important;
      visibility: visible !important;
      padding: 5px 0 !important;
   }
   .dropdown-menu li {
      border-bottom: 1px solid rgba(255,255,255,0.1);
   }
   .dropdown-menu li:last-child {
      border-bottom: none;
   }
   .dropdown-menu a {
      padding: 12px 20px 12px 40px !important;
      font-size: 14px !important;
   }
   .drawer { display: none !important; }
}

.clear-history-btn {
   background: none;
   border: none;
   color: var(--primary-color);
   cursor: pointer;
   font-size: 12px;
   font-weight: 600;
   text-transform: uppercase;
   padding: 5px 10px;
   border-radius: 5px;
   transition: var(--transition);
}
.clear-history-btn:hover {
   background: var(--light-bg);
}

.suggestions-list, .history-list {
   padding: 10px 0;
}

.suggestion-item, .history-item {
   padding: 15px 25px;
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   gap: 15px;
   color: var(--text-color);
}

.suggestion-item:hover, .history-item:hover {
   background: var(--light-bg);
   color: var(--primary-color);
}

.suggestion-item i, .history-item i {
   font-size: 16px;
   color: var(--primary-color);
   width: 20px;
}

.suggestion-text {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 3px;
}

.suggestion-name {
   font-weight: 600;
   font-size: 15px;
}

.suggestion-meta {
   font-size: 13px;
   color: #999;
}

.suggestion-highlight {
   background: rgba(212, 175, 55, 0.2);
   padding: 2px 4px;
   border-radius: 3px;
   font-weight: 600;
   color: var(--primary-color);
}

.no-results {
   padding: 30px 25px;
   text-align: center;
   color: #999;
}

.no-results i {
   font-size: 48px;
   margin-bottom: 15px;
   opacity: 0.3;
}

/* Hero Section */
.hero { position: relative; height: 700px; overflow: hidden; }

/* Hero Simple - New Clean Design */
.hero-simple {
   padding: 100px 20px;
   background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
   text-align: center;
   min-height: 60vh;
   display: flex;
   align-items: center;
   justify-content: center;
}

.hero-simple-content {
   max-width: 900px;
   margin: 0 auto;
}

.hero-simple-title {
   font-size: 80px;
   font-weight: 900;
   letter-spacing: 6px;
   color: var(--white);
   margin-bottom: 30px;
   text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
   line-height: 1.1;
}

.hero-simple-tagline {
   font-size: 32px;
   color: var(--white);
   font-weight: 300;
   letter-spacing: 2px;
   opacity: 0.95;
}

/* Background Image Section */
.background-image-section {
   width: 100%;
   overflow: hidden;
}

.full-width-image {
   width: 100%;
   height: auto;
   display: block;
}

/* Shop Now Section */
.shop-now-section {
   padding: 80px 0;
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   text-align: center;
}

.shop-now-content {
   max-width: 700px;
   margin: 0 auto;
}

.shop-now-content h2 {
   font-size: 48px;
   font-weight: 700;
   color: var(--secondary-color);
   margin-bottom: 20px;
}

.shop-now-content p {
   font-size: 20px;
   color: #666;
   margin-bottom: 30px;
}

.btn-large {
   padding: 18px 50px;
   font-size: 18px;
   font-weight: 600;
}

/* Services Section */
.services-section {
   padding: 80px 0;
   background: linear-gradient(135deg, var(--elegant-blue) 0%, var(--light-bg) 50%, var(--baby-blue) 100%);
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
   margin-top: 50px;
}

.service-card {
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   padding: 40px 30px;
   border-radius: 15px;
   box-shadow: 0 5px 20px rgba(173, 216, 230, 0.25);
   transition: var(--transition);
   text-align: center;
   border: 1px solid rgba(173, 216, 230, 0.2);
}

.service-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 40px rgba(173, 216, 230, 0.4);
}

.service-icon {
   width: 80px;
   height: 80px;
   margin: 0 auto 25px;
   background: linear-gradient(135deg, var(--primary-color), #c19d2f);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 36px;
   color: var(--white);
   box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
   font-size: 22px;
   color: var(--secondary-color);
   margin-bottom: 15px;
   font-weight: 700;
}

.service-card p {
   color: #555;
   line-height: 1.7;
   font-size: 15px;
}

/* Hero Landing Page - Background Image Design (kept for other pages) */
.hero-landing {
   min-height: 100vh;
   height: auto;
   background-image: url('images/backround.jpeg');
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   overflow: hidden;
   padding: 60px 20px;
}

.hero-landing::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, 
      rgba(173, 216, 230, 0.3) 0%, 
      rgba(135, 206, 235, 0.25) 50%,
      rgba(173, 216, 230, 0.3) 100%);
   z-index: 1;
}

@keyframes shimmerBackground {
   0%, 100% { background-position: 0% 0%, 100% 100%, 0% 0%, 0% 0%; }
   50% { background-position: 100% 100%, 0% 0%, 100% 100%, 100% 100%; }
}

.hero-landing-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: transparent;
   z-index: 2;
}

.hero-landing-content {
   position: relative;
   z-index: 10;
   animation: fadeInUp 1s ease;
   width: 100%;
   max-width: 1200px;
   padding: 20px;
}

.hero-logo-emoji {
   font-size: 140px;
   margin-bottom: 40px;
   animation: float 4s ease-in-out infinite;
   filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.hero-brand-name {
   font-size: 90px;
   font-weight: 900;
   letter-spacing: 4px;
   color: var(--secondary-color);
   margin-bottom: 20px;
   text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.hero-brand-tagline {
   font-size: 28px;
   color: var(--secondary-color);
   margin-bottom: 15px;
   font-weight: 400;
   letter-spacing: 2px;
   text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-brand-subtext {
   font-size: 20px;
   color: #0a0a0a;
   margin-bottom: 50px;
   font-weight: 700;
   letter-spacing: 1px;
   text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.hero-landing-btn {
   background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
   color: var(--white);
   padding: 18px 60px;
   font-size: 18px;
   font-weight: 700;
   border: none;
   border-radius: 50px;
   cursor: pointer;
   transition: var(--transition);
   box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

.hero-landing-btn:hover {
   transform: translateY(-5px) scale(1.05);
   box-shadow: 0 12px 35px rgba(26, 26, 26, 0.4);
   background: linear-gradient(135deg, var(--primary-color), #ffd700);
   color: var(--secondary-color);
}

/* Old hero slider styles kept for reference but hidden */
.hero-slider { position: relative; height: 100%; display: none; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; visibility: hidden; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-image { width: 100%; height: 100%; background-size: cover; background-position: center; background-color: #ccc; }
.hero-emoji { 
    background: linear-gradient(135deg, var(--secondary-color), #1a1a1a); 
    display: flex; align-items: center; justify-content: center;
    font-size: 220px; text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.hero-emoji::before { content: attr(data-emoji); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -30px, 0); } }
@keyframes logoFloat { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -20px, 0); } }
@keyframes logoPulse { 0%, 100% { filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.5)); } 50% { filter: drop-shadow(0 25px 80px rgba(212, 175, 55, 0.8)); } }
.hero-content {
    position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
    text-align: center; color: var(--white); z-index: 10; padding: 0 20px;
}
.hero-title { 
    font-size: 64px; font-weight: 900; margin-bottom: 25px; 
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6); letter-spacing: 3px;
    background: linear-gradient(to right, var(--white), var(--primary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle { 
    font-size: 22px; margin-bottom: 40px; text-shadow: 2px 2px 4px rgba(0,0,0,0.6); 
    line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto;
}
.btn-large { 
    padding: 18px 50px; font-size: 18px; border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(215, 182, 90, 0.4);
    transition: all 0.3s ease;
}
.btn-large:hover { 
    box-shadow: 0 15px 40px rgba(215, 182, 90, 0.6);
    transform: translateY(-3px) scale(1.05);
}
.hero-arrow {
   position: absolute; top: 50%; transform: translateY(-50%); 
   background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
   border: 2px solid rgba(255,255,255,0.3);
   width: 60px; height: 60px; border-radius: 50%; font-size: 24px; color: var(--white);
   cursor: pointer; transition: var(--transition); z-index: 20;
}
.hero-arrow:hover { background: var(--primary-color); border-color: var(--primary-color); transform: translateY(-50%) scale(1.1); }
.hero-arrow-left { left: 30px; }
.hero-arrow-right { right: 30px; }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 20; }
.hero-dot { 
    width: 14px; height: 14px; border-radius: 50%; 
    background: rgba(255,255,255,0.4); backdrop-filter: blur(5px);
    cursor: pointer; transition: var(--transition); border: 2px solid transparent;
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { background: var(--primary-color); width: 40px; border-radius: 7px; border-color: rgba(255,255,255,0.5); }

/* Animations */
.animate-fade-in { animation: fadeIn 1s ease; }
.animate-fade-in-delay { animation: fadeIn 1s ease 0.3s backwards; }
.animate-fade-in-delay-2 { animation: fadeIn 1s ease 0.6s backwards; }
@keyframes fadeIn { from { opacity: 0; transform: translate3d(0, 30px, 0);} to { opacity: 1; transform: translate3d(0, 0, 0);} }

/* Features Section */
.features { 
   padding: 80px 0; 
   background: linear-gradient(135deg, var(--light-bg) 0%, var(--baby-blue) 50%, var(--elegant-blue) 100%);
   background-attachment: fixed;
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.feature-card { 
    text-align: center; padding: 40px 30px; 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    border-radius: 15px; transition: var(--transition); position: relative;
    border: 1px solid rgba(173, 216, 230, 0.3);
    box-shadow: 0 4px 15px rgba(173, 216, 230, 0.2);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--dark-baby-blue), var(--baby-blue));
    border-radius: 15px 15px 0 0; opacity: 0; transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(173, 216, 230, 0.35); 
}
.feature-icon { 
    font-size: 56px; color: var(--primary-color); margin-bottom: 25px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-card h3 { 
    font-size: 20px; margin-bottom: 15px; color: var(--secondary-color); 
    font-weight: 700; letter-spacing: 0.5px;
}
.feature-card p { color: #666; font-size: 15px; line-height: 1.7; }

/* Section Header */
.section-header { 
   text-align: center; 
   margin-bottom: 60px; 
   position: relative;
   animation: fadeInUp 0.8s ease;
}
.section-header h2 { 
   font-size: 42px; 
   color: var(--secondary-color); 
   margin-bottom: 15px; 
   font-weight: 800;
   letter-spacing: -0.5px;
   position: relative;
   display: inline-block;
}
.section-header h2::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 4px;
   background: linear-gradient(to right, var(--primary-color), #c19d2f);
   border-radius: 2px;
   animation: scaleIn 0.5s ease 0.3s backwards;
}
.section-header p { 
   color: #666; 
   font-size: 17px; 
   max-width: 600px;
   margin: 20px auto 0;
   line-height: 1.8;
}

/* Categories Section */
.categories { 
   padding: 100px 0; 
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 242, 255, 0.8) 100%);
   backdrop-filter: blur(10px);
}
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.category-card { 
    position: relative; height: 350px; border-radius: 15px; overflow: hidden; 
    cursor: pointer; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.category-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.category-image { width: 100%; height: 100%; background-size: cover; background-position: center; background-color: #ddd; transition: transform 0.5s ease; }
.category-emoji {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c19d2f 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 140px; text-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
}
.category-emoji::before { content: attr(data-emoji); animation: float 4s ease-in-out infinite; }
.category-card:hover .category-image { transform: scale(1.15) rotate(3deg); }
.category-overlay { 
    position: absolute; bottom: 0; left: 0; right: 0; padding: 35px; 
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); 
    color: var(--white); transition: var(--transition);
}
.category-card:hover .category-overlay { background: linear-gradient(to top, rgba(215, 182, 90, 0.9), transparent); }
.category-overlay h3 { font-size: 26px; margin-bottom: 8px; font-weight: 700; letter-spacing: 1px; }
.category-overlay p { font-size: 15px; opacity: 0.95; }

/* Featured Products */
.featured-products { 
   padding: 80px 0; 
   background: linear-gradient(135deg, var(--light-bg) 0%, rgba(173, 216, 230, 0.3) 50%, var(--light-bg) 100%);
   background-attachment: fixed;
}
.products-grid { 
   display: grid; 
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
   gap: 35px; 
   margin-bottom: 40px;
   padding: 0;
}
@supports (display: grid) {
   .products-grid { grid-auto-rows: minmax(auto, auto); }
}
.product-card { 
   background: var(--white); 
   border-radius: 12px; 
   overflow: hidden; 
   transition: var(--transition); 
   position: relative; 
   border: 1px solid rgba(173, 216, 230, 0.3);
   height: 100%;
   display: flex;
   flex-direction: column;
   box-shadow: 0 4px 15px rgba(173, 216, 230, 0.15);
}
.product-card { 
   will-change: transform;
}
.product-card:hover { 
   transform: translateY(-12px); 
   box-shadow: 0 15px 40px rgba(173, 216, 230, 0.4);
   border-color: var(--dark-baby-blue);
}
.product-image { 
   position: relative; 
   height: 300px; 
   background: linear-gradient(135deg, var(--primary-color), #c19d2f);
   overflow: hidden; 
   display: flex; 
   align-items: center; 
   justify-content: center;
   cursor: pointer;
   content-visibility: auto;
   transform: translateZ(0);
   will-change: transform;
}
.product-image::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(193, 157, 47, 0.1));
   opacity: 0;
   transition: var(--transition);
   z-index: 0;
}
.product-card:hover .product-image::before {
   opacity: 1;
}
.product-card-emoji { font-size: 120px; }
.product-badge { 
   position: absolute; 
   top: 15px; 
   left: 15px; 
   background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
   color: #000;
   padding: 10px 20px; 
   border-radius: 50px; 
   font-size: 13px; 
   font-weight: 900;
   z-index: 10;
   box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
   border: 2px solid rgba(255, 255, 255, 0.5);
   font-family: 'Arial Black', sans-serif;
}
.product-badge:hover {
   transform: scale(1.15) rotateZ(-5deg);
   box-shadow: 0 10px 30px rgba(212, 175, 55, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.5);
   letter-spacing: 1.5px;
}

.product-actions { position: absolute; top: 15px; right: 15px; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateX(20px); transition: var(--transition); }
.product-card:hover .product-actions { opacity: 1; transform: translate3d(0, 0, 0); }
.product-action-btn { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--white); color: var(--text-color); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; transform: translateZ(0); will-change: transform, background-color; }
.product-action-btn:hover { background: var(--primary-color); color: var(--white); }
.product-info { 
   padding: 20px; 
   flex: 1;
   display: flex;
   flex-direction: column;
}
.product-category { color: #999; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.product-name { font-size: 18px; color: var(--secondary-color); margin: 10px 0; font-weight: 600; }
.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.stars { color: var(--primary-color); font-size: 14px; }
.rating-count { color: #999; font-size: 12px; }
.product-price-wrapper { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.product-price { font-size: 22px; color: var(--primary-color); font-weight: bold; }
.product-original-price { text-decoration: line-through; color: #999; font-size: 16px; }
.add-to-cart-btn { 
   width: 100%;
   padding: 14px 16px; 
   background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
   color: var(--white); 
   border: none; 
   border-radius: 8px; 
   cursor: pointer; 
   font-weight: 700; 
   transition: var(--transition);
   margin-top: auto;
   font-size: 15px;
   letter-spacing: 0.5px;
}
.add-to-cart-btn:hover {
   background: linear-gradient(135deg, var(--primary-color), #c19d2f);
   color: var(--secondary-color);
   transform: translateY(-2px);
}
.add-to-cart-btn:active {
   transform: translateY(0);
}
.section-footer { text-align: center; margin-top: 20px; }

/* List view for Shop */
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { display: grid; grid-template-columns: 280px 1fr; align-items: stretch; }
.products-grid.list-view .product-image { height: 100%; }

/* Buttons */
.btn { 
   display: inline-block; padding: 12px 30px; border-radius: 8px; font-weight: 600; 
   cursor: pointer; transition: var(--transition); border: 2px solid transparent; 
   text-align: center; position: relative; overflow: hidden; z-index: 1;
}
.btn::before {
   content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
   border-radius: 50%; background: rgba(255, 255, 255, 0.3);
   transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; z-index: -1;
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary { 
   background: linear-gradient(135deg, var(--primary-color), #c19d2f); 
   color: var(--secondary-color); 
   box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover { 
   transform: translateY(-3px) scale(1.02); 
   box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5); 
}
.btn-primary:active { transform: translateY(-1px) scale(1); }
.btn-outline { 
   background: transparent; border-color: var(--primary-color); 
   color: var(--primary-color); position: relative;
}
.btn-outline::after {
   content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
   background: var(--primary-color); transition: left 0.3s ease; z-index: -1;
}
.btn-outline:hover { color: var(--secondary-color); transform: translateY(-2px); }
.btn-outline:hover::after { left: 0; }
.btn-light { background: var(--white); color: var(--secondary-color); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.btn-light:hover { background: var(--primary-color); color: var(--secondary-color); transform: translateY(-2px); }
.btn-large { padding: 16px 45px; font-size: 18px; border-radius: 10px; }
.btn-small { padding: 12px 28px; font-size: 15px; border-radius: 8px; display: inline-block; background: linear-gradient(135deg, var(--primary-color), #c19d2f); color: var(--secondary-color); font-weight: 700; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
.btn-small:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6); }
.btn-block { display: block; width: 100%; }
.btn-outline-sm { padding: 8px 20px; font-size: 14px; }

/* Promo Banner */
.promo-banner { padding: 80px 0; background: linear-gradient(135deg, var(--secondary-color), #333); color: var(--white); text-align: center; }
.promo-content h2 { font-size: 32px; margin-bottom: 15px; letter-spacing: 1px; }
.promo-content p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }

/* Testimonials */
.testimonials { 
   padding: 100px 0; 
   background: linear-gradient(135deg, var(--elegant-blue) 0%, var(--light-bg) 50%, var(--baby-blue) 100%);
   background-attachment: fixed;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.testimonial-card { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    padding: 40px; border-radius: 15px; 
    box-shadow: 0 5px 20px rgba(173, 216, 230, 0.25); 
    transition: var(--transition); position: relative;
    border: 1px solid rgba(173, 216, 230, 0.2);
    border-top: 4px solid transparent;
}
.testimonial-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 40px rgba(173, 216, 230, 0.4);
    border-top-color: var(--dark-baby-blue);
}
.testimonial-card .stars { margin-bottom: 20px; font-size: 18px; }
.testimonial-card p { 
    font-style: italic; line-height: 1.9; margin-bottom: 25px; 
    color: #555; font-size: 15px; position: relative;
    padding-left: 25px;
}
.testimonial-card p::before {
    content: '"'; position: absolute; left: 0; top: -5px;
    font-size: 40px; color: var(--primary-color); opacity: 0.3;
}
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background-color: #ddd; }
.testimonial-avatar { 
    width: 60px; height: 60px; border-radius: 50%; 
    background: linear-gradient(135deg, var(--primary-color), #c19d2f);
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    box-shadow: 0 4px 15px rgba(215, 182, 90, 0.3);
    flex-shrink: 0;
}
.testimonial-author h4 { font-size: 17px; color: var(--secondary-color); font-weight: 700; }
.testimonial-author span { font-size: 13px; color: #999; }

/* Newsletter */
.newsletter { padding: 60px 0; background: var(--secondary-color); color: var(--white); }
.newsletter-content { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.newsletter-text h2 { font-size: 28px; margin-bottom: 10px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 500px; }
.newsletter-form input { flex: 1; padding: 15px 20px; border: none; border-radius: 5px; font-size: 16px; }
.newsletter-form button { white-space: nowrap; }

/* Footer */
.footer { background: var(--footer-bg); color: var(--secondary-color); padding: 80px 0 30px; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-col h3 { margin-bottom: 25px; color: var(--primary-color); font-size: 22px; font-weight: 700; }
.footer-col h4 { margin-bottom: 25px; color: var(--primary-color); font-size: 18px; font-weight: 700; }
.footer-col p { line-height: 1.8; color: var(--secondary-color); font-size: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; font-size: 15px; }
.footer-col ul li a { color: var(--secondary-color); transition: var(--transition); font-weight: 500; }
.footer-col ul li a:hover { color: var(--primary-color); font-weight: 600; }
.footer-col .social-links { display: flex; gap: 15px; margin-top: 20px; }
.footer-col .social-links a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--secondary-color); border-radius: 50%; font-size: 18px; transition: var(--transition); color: var(--white); }
.footer-col .social-links a:hover { background: var(--primary-color); transform: scale(1.1); }
.contact-info li { display: flex; align-items: flex-start; gap: 10px; color: var(--secondary-color); font-size: 15px; font-weight: 500; }
.contact-info li i { color: var(--primary-color); margin-right: 5px; font-size: 16px; }

/* Trust Badges */
.trust-badges { 
    margin: 40px 0 30px; 
    padding: 30px 0; 
    border-top: 1px solid rgba(0,0,0,0.1); 
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.badges-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 25px; 
    text-align: center;
}
.badge-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px;
    padding: 15px;
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
    transition: var(--transition);
}
.badge-item:hover {
    background: rgba(215, 182, 90, 0.15);
    transform: translateY(-5px);
}
.badge-item i { 
    font-size: 32px; 
    color: var(--primary-color); 
}
.badge-item span { 
    font-size: 15px; 
    font-weight: 700; 
    color: var(--secondary-color);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), #c19d2f);
    color: var(--secondary-color);
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.promo-content i {
    font-size: 20px;
}

.footer-bottom { 
   border-top: 1px solid rgba(0,0,0,0.1); 
   padding-top: 20px; 
   display: flex; 
   justify-content: space-between; 
   align-items: center;
   flex-wrap: wrap;
   gap: 20px;
}

.footer-bottom-left {
   flex: 1;
   min-width: 200px;
}

.footer-bottom-left p {
   margin: 0;
   font-size: 15px;
   color: var(--secondary-color);
   font-weight: 500;
}

.footer-bottom-right {
   flex: 1;
   min-width: 250px;
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   gap: 15px;
   justify-content: space-between;
}

.payment-label {
   font-weight: 600;
   color: var(--primary-color);
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: 1px;
   display: block;
   margin-bottom: 8px;
}

.payment-methods { 
   display: flex; 
   gap: 15px; 
   font-size: 24px;
   align-items: center;
}

.payment-methods i { 
   color: var(--secondary-color);
   transition: var(--transition);
}

.payment-methods i:hover {
   color: var(--primary-color);
}

.social-footer {
   display: flex;
   gap: 15px;
   justify-content: flex-end;
}

.social-footer a {
   width: 35px;
   height: 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--secondary-color);
   border-radius: 50%;
   color: var(--white);
   transition: var(--transition);
   font-size: 18px;
}

.social-footer a:hover {
   background: var(--primary-color);
   color: var(--secondary-color);
   transform: translateY(-3px);
}

/* Cart Sidebar */
.cart-sidebar {
   position: fixed; top: 0; right: -400px; width: 400px; height: 100vh; background: var(--white);
   box-shadow: var(--shadow-lg); z-index: 2000; transition: right 0.3s ease; display: flex; flex-direction: column;
}
.cart-sidebar.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border-color); }
.cart-close-btn { background: none; border: none; font-size: 24px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.cart-item-image { width: 80px; height: 80px; background-size: cover; background-position: center; background-color: #eee; border-radius: 5px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 5px; }
.cart-item-price { color: var(--primary-color); font-weight: bold; }
.cart-item-qty { font-size: 14px; color: #666; }
.cart-item-remove { background: none; border: none; color: var(--danger-color); cursor: pointer; }
.cart-footer { padding: 20px; border-top: 1px solid var(--border-color); }
.cart-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: bold; margin-bottom: 20px; }
.cart-footer .btn { margin-bottom: 10px; }


.empty-wishlist i { font-size: 80px; color: #ddd; margin-bottom: 20px; }
.empty-wishlist h3 { margin-bottom: 10px; color: var(--secondary-color); }

/* Overlay */
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1500; opacity: 0; visibility: hidden; transition: var(--transition); }
.overlay.active { opacity: 1; visibility: visible; }

/* Page Header */
.page-header { 
   background: linear-gradient(135deg, var(--dark-baby-blue) 0%, var(--baby-blue) 50%, var(--elegant-blue) 100%); 
   color: var(--secondary-color); 
   padding: 60px 0; 
   text-align: center; 
   box-shadow: 0 4px 20px rgba(173, 216, 230, 0.3);
}
.page-header h1 { font-size: 42px; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3); }
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 14px; }
.breadcrumb a:hover { color: var(--primary-color); }

/* Shop Page */
.shop-section { 
   padding: 60px 0; 
   background: linear-gradient(135deg, rgba(230, 242, 255, 0.5) 0%, rgba(173, 216, 230, 0.3) 100%);
}
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.shop-sidebar { position: sticky; top: 120px; height: fit-content; }
.filter-section { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); }
.filter-section h3 { margin-bottom: 15px; color: var(--secondary-color); display: flex; align-items: center; gap: 10px; }
.filter-section h3 i { font-size: 16px; }

/* Shop Search Filter */
.shop-search-filter {
   background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 26, 26, 0.05));
   padding: 20px;
   border-radius: 10px;
   border-bottom: none;
}

.shop-search-wrapper {
   position: relative;
   display: flex;
   align-items: center;
}

.shop-search-input {
   width: 100%;
   padding: 12px 40px 12px 15px;
   border: 2px solid var(--border-color);
   border-radius: 8px;
   font-size: 15px;
   transition: var(--transition);
   font-family: var(--font-primary);
}

.shop-search-input:focus {
   outline: none;
   border-color: var(--primary-color);
   box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.shop-search-clear {
   position: absolute;
   right: 10px;
   background: none;
   border: none;
   cursor: pointer;
   color: #999;
   font-size: 16px;
   padding: 5px;
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
}

.shop-search-clear:hover {
   color: var(--primary-color);
   transform: rotate(90deg);
}

.search-match-count {
   margin-top: 10px;
   font-size: 13px;
   color: #666;
   font-weight: 600;
   text-align: center;
   padding: 5px;
   background: rgba(212, 175, 55, 0.1);
   border-radius: 5px;
}
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 10px; }
.filter-list label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.price-filter input[type="range"] { width: 100%; margin: 15px 0; }
.price-values { display: flex; justify-content: space-between; font-size: 14px; color: #666; }
.shop-header { 
   display: flex; 
   justify-content: space-between; 
   align-items: center; 
   margin-bottom: 30px; 
   padding: 20px; 
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 242, 255, 0.9)); 
   backdrop-filter: blur(10px);
   border-radius: 10px; 
   box-shadow: 0 4px 15px rgba(173, 216, 230, 0.25);
   border: 1px solid rgba(173, 216, 230, 0.2);
}
.shop-controls { display: flex; gap: 15px; align-items: center; }
.shop-controls select { padding: 10px 15px; border: 1px solid var(--border-color); border-radius: 5px; cursor: pointer; }
.view-toggle { display: flex; gap: 5px; }
.view-btn { width: 40px; height: 40px; border: 1px solid var(--border-color); background: var(--white); cursor: pointer; transition: var(--transition); }
.view-btn.active { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.page-btn { padding: 10px 15px; border: 1px solid var(--border-color); background: var(--white); cursor: pointer; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

/* Product Details */
.product-details-section { 
   padding: 60px 0; 
   background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(230, 242, 255, 0.4));
}
.product-details-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.main-image { position: relative; height: 500px; background: var(--light-bg); border-radius: 10px; margin-bottom: 20px; }
.main-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.product-emoji-display {
    background: linear-gradient(135deg, var(--primary-color), #c19d2f);
    display: flex; align-items: center; justify-content: center;
}
.main-product-emoji { font-size: 200px; text-shadow: 0 5px 20px rgba(0,0,0,0.2); animation: float 3s ease-in-out infinite; }
.zoom-btn { position: absolute; bottom: 20px; right: 20px; background: var(--white); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; box-shadow: var(--shadow); }
.thumbnail-images { display: flex; gap: 15px; }
.thumbnail-images img { width: 100px; height: 100px; object-fit: cover; border-radius: 5px; cursor: pointer; border: 2px solid transparent; transition: var(--transition); background-color: #eee; }
.thumbnail-emoji {
    width: 100px; height: 100px; border-radius: 5px; cursor: pointer; 
    border: 2px solid transparent; transition: var(--transition);
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.thumbnail-images img:hover, .thumbnail-images img.active, .thumbnail-emoji:hover, .thumbnail-emoji.active { border-color: var(--primary-color); }
.product-info { position: sticky; top: 120px; height: fit-content; }
.product-title { font-size: 32px; color: var(--secondary-color); margin-bottom: 15px; }
.product-rating { margin-bottom: 20px; }
.current-price { font-size: 32px; color: var(--primary-color); font-weight: bold; margin-right: 15px; }
.original-price { font-size: 24px; color: #999; text-decoration: line-through; margin-right: 10px; }
.discount-badge { background: var(--danger-color); color: var(--white); padding: 5px 10px; border-radius: 3px; font-size: 14px; }
.product-description { line-height: 1.8; margin: 20px 0; color: #555; }
.product-options { margin: 30px 0; }
.option-group { margin-bottom: 25px; }
.option-group label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--secondary-color); }
.product-select { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 5px; font-size: 16px; }
.size-guide-link { display: inline-block; margin-top: 5px; color: var(--primary-color); font-size: 14px; }
.metal-options { display: flex; gap: 10px; }
.metal-btn { padding: 10px 20px; border: 2px solid var(--border-color); background: var(--white); cursor: pointer; border-radius: 5px; transition: var(--transition); }
.metal-btn.active, .metal-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.quantity-selector { display: flex; align-items: center; gap: 15px; width: fit-content; }
.qty-btn { width: 40px; height: 40px; border: 1px solid var(--border-color); background: var(--white); cursor: pointer; font-size: 18px; transition: var(--transition); }
.qty-btn:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
#quantityInput { width: 60px; text-align: center; padding: 10px; border: 1px solid var(--border-color); border-radius: 5px; }
.product-actions { display: flex; gap: 15px; margin: 30px 0; }
.product-meta { padding: 20px 0; border-top: 1px solid var(--border-color); }
.meta-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.meta-label { font-weight: 600; color: var(--secondary-color); }
.product-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; }
.product-features .feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.product-features .feature-item i { color: var(--primary-color); }

/* Product Tabs */
.product-tabs { margin-top: 60px; }
.tab-buttons { display: flex; gap: 30px; border-bottom: 2px solid var(--border-color); margin-bottom: 30px; }
.tab-btn { padding: 15px 0; background: none; border: none; font-size: 16px; font-weight: 600; cursor: pointer; position: relative; color: #666; transition: var(--transition); }
.tab-btn.active { color: var(--primary-color); }
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease; }
.tab-btn.active::after { width: 100%; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border-color); }
.specs-table td { padding: 15px; }
.specs-table td:first-child { font-weight: 600; color: var(--secondary-color); width: 40%; }
.reviews-summary { background: var(--light-bg); padding: 30px; border-radius: 10px; margin-bottom: 30px; }
.rating-overview { display: flex; gap: 40px; align-items: center; }
.overall-rating { text-align: center; }
.overall-rating h2 { font-size: 48px; color: var(--primary-color); }
.rating-bars { flex: 1; }
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rating-bar span { min-width: 60px; font-size: 14px; }
.bar { flex: 1; height: 8px; background: #ddd; border-radius: 10px; overflow: hidden; }
.fill { height: 100%; background: var(--primary-color); }
.review-item { padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-header img { width: 50px; height: 50px; border-radius: 50%; background-color: #ddd; }
.review-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #c19d2f);
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    box-shadow: var(--shadow);
}
.review-date { margin-left: auto; color: #999; font-size: 14px; }
.related-products h2 { margin-bottom: 30px; }

/* About Page */
.about-intro, .our-story, .our-values, .why-choose-us, .our-team, .about-cta { padding: 60px 0; }
.about-content, .story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .lead { font-size: 20px; color: var(--primary-color); font-weight: 600; margin-bottom: 20px; }
.about-text p { line-height: 1.8; margin-bottom: 15px; color: #555; }
.about-image img, .story-image img { width: 100%; border-radius: 10px; box-shadow: var(--shadow-lg); background-color: #ddd; }
.our-story { 
   background: linear-gradient(135deg, rgba(230, 242, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
   backdrop-filter: blur(5px);
}
.values-grid, .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-card { text-align: center; padding: 40px 30px; background: var(--white); border-radius: 10px; transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 48px; color: var(--primary-color); margin-bottom: 20px; }
.value-card h3 { margin-bottom: 15px; color: var(--secondary-color); }
.features-list { max-width: 800px; margin: 0 auto; }
.feature-item { display: flex; gap: 20px; padding: 20px; background: var(--white); border-radius: 10px; margin-bottom: 20px; box-shadow: var(--shadow); }
.feature-icon { font-size: 32px; color: var(--primary-color); }
.feature-content h3 { margin-bottom: 10px; color: var(--secondary-color); }
.team-member { text-align: center; background: var(--white); padding: 30px; border-radius: 10px; transition: var(--transition); }
.team-member:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-member img { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; background-color: #ddd; }
.team-avatar {
    width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #c19d2f);
    display: flex; align-items: center; justify-content: center; font-size: 80px;
    box-shadow: var(--shadow-lg);
}
.team-member h3 { margin-bottom: 5px; color: var(--secondary-color); }
.role { color: var(--primary-color); font-weight: 600; margin-bottom: 10px; }
.team-member p { font-size: 14px; color: #666; margin-bottom: 15px; }
.about-image-emoji, .story-image-emoji {
    width: 100%; height: 400px; border-radius: 10px; box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color), #c19d2f);
    display: flex; align-items: center; justify-content: center;
    font-size: 100px; gap: 20px;
}
.about-cta { 
   background: linear-gradient(135deg, var(--dark-baby-blue) 0%, var(--baby-blue) 50%, var(--elegant-blue) 100%); 
   color: var(--secondary-color); 
   text-align: center; 
   box-shadow: inset 0 2px 40px rgba(255, 255, 255, 0.2);
}
.cta-content h2 { font-size: 32px; margin-bottom: 15px; font-weight: 800; }
.cta-content p { font-size: 18px; margin-bottom: 30px; opacity: 0.85; }

/* Contact Page */
.contact-info-section { 
   padding: 60px 0; 
   background: linear-gradient(135deg, var(--light-bg) 0%, rgba(173, 216, 230, 0.2) 100%);
   background-attachment: fixed;
}
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.contact-card { text-align: center; padding: 40px 30px; background: var(--white); border-radius: 10px; transition: var(--transition); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-icon { font-size: 48px; color: var(--primary-color); margin-bottom: 20px; }
.contact-card h3 { margin-bottom: 15px; color: var(--secondary-color); }
.contact-card p { color: #666; line-height: 1.8; }
.contact-form-section { 
   padding: 80px 0; 
   background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(230, 242, 255, 0.5));
}
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.contact-form-wrapper h2 { margin-bottom: 10px; color: var(--secondary-color); }
.contact-form-wrapper > p { margin-bottom: 30px; color: #666; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary-color); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 5px; font-size: 16px; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.checkbox-group label { display: flex; align-items: center; gap: 10px; font-weight: normal; }
.contact-sidebar { position: sticky; top: 120px; height: fit-content; }
.sidebar-card { background: var(--light-bg); padding: 30px; border-radius: 10px; margin-bottom: 20px; }
.sidebar-card h3 { margin-bottom: 20px; color: var(--secondary-color); }
.contact-features { list-style: none; }
.contact-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.contact-features i { color: var(--primary-color); }
.social-links-large { display: flex; flex-direction: column; gap: 10px; }
.social-link { display: flex; align-items: center; gap: 15px; padding: 12px; background: var(--white); border-radius: 5px; transition: var(--transition); }
.social-link:hover { background: var(--primary-color); color: var(--white); }
.social-link i { font-size: 20px; }
.map-section { height: 450px; }
.map-container iframe { width: 100%; height: 100%; }
.faq-section { 
   padding: 60px 0; 
   background: linear-gradient(135deg, var(--light-bg) 0%, rgba(173, 216, 230, 0.25) 50%, var(--light-bg) 100%);
   background-attachment: fixed;
}
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.faq-item { background: var(--white); padding: 30px; border-radius: 10px; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow); }
.faq-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.faq-item h3 { 
    display: flex; align-items: center; gap: 10px; margin-bottom: 15px; 
    color: var(--secondary-color); position: relative; padding-right: 30px;
    user-select: none;
}
.faq-item h3::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 0; transition: var(--transition);
}
.faq-item.active h3::after { transform: rotate(180deg); }
.faq-item i { color: var(--primary-color); }
.faq-item p { 
    line-height: 1.8; color: #666; max-height: 0; overflow: hidden; 
    transition: max-height 0.3s ease, margin-bottom 0.3s ease; margin-bottom: 0;
}
.faq-item.active p { max-height: 200px; margin-bottom: 15px; }

/* Cart Page */
.cart-section { 
   padding: 60px 0; 
   background: linear-gradient(135deg, rgba(230, 242, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
}
.cart-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; }
.cart-header-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.cart-table-wrapper { background: var(--white); border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead { background: var(--light-bg); }
.cart-table th { padding: 15px; text-align: left; font-weight: 600; color: var(--secondary-color); }
.cart-table td { padding: 20px 15px; border-bottom: 1px solid var(--border-color); }
.cart-product { display: flex; align-items: center; gap: 15px; }
.cart-product-image { width: 80px; height: 80px; background-size: cover; background-position: center; background-color: #eee; border-radius: 5px; }
.cart-product-name { font-weight: 600; color: var(--secondary-color); }
.cart-product-details { font-size: 12px; color: #999; }
.cart-qty { display: flex; align-items: center; gap: 10px; }
.cart-qty button { width: 30px; height: 30px; border: 1px solid var(--border-color); background: var(--white); cursor: pointer; }
.cart-qty input { width: 50px; text-align: center; border: 1px solid var(--border-color); padding: 5px; }
.remove-btn { background: none; border: none; color: var(--danger-color); cursor: pointer; font-size: 20px; }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart i { font-size: 80px; color: #ddd; margin-bottom: 20px; }
.empty-cart h3 { margin-bottom: 10px; color: var(--secondary-color); }
.cart-actions { display: flex; justify-content: space-between; margin-top: 20px; }
.cart-summary { position: sticky; top: 120px; background: var(--white); padding: 30px; border-radius: 10px; box-shadow: var(--shadow); height: fit-content; }
.cart-summary h3 { margin-bottom: 20px; color: var(--secondary-color); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
.coupon-section { margin: 20px 0; }
.coupon-section input { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 5px; margin-bottom: 10px; }
.coupon-message { margin-top: 10px; padding: 10px; border-radius: 5px; font-size: 14px; }
.coupon-message.success { background: #d4edda; color: #155724; }
.coupon-message.error { background: #f8d7da; color: #721c24; }
.shipping-options { margin: 20px 0; padding: 20px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.shipping-options h4 { margin-bottom: 15px; color: var(--secondary-color); }
.shipping-option { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: var(--light-bg); border-radius: 5px; margin-bottom: 10px; cursor: pointer; }
.shipping-option input { margin-right: 10px; }
.summary-divider { height: 1px; background: var(--border-color); margin: 20px 0; }
.total-row { font-size: 20px; font-weight: bold; color: var(--secondary-color); border: none; }
.total-row span:last-child { color: var(--primary-color); }
.payment-icons { display: flex; justify-content: center; gap: 15px; margin: 20px 0; font-size: 28px; opacity: 0.7; }
.security-badge { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; background: var(--light-bg); border-radius: 5px; color: var(--success-color); }
.cart-benefits { 
   display: grid; 
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
   gap: 30px; 
   margin-top: 60px; 
   padding: 40px; 
   background: linear-gradient(135deg, var(--light-bg) 0%, rgba(173, 216, 230, 0.2) 100%); 
   border-radius: 10px; 
   box-shadow: 0 4px 15px rgba(173, 216, 230, 0.2);
}
.benefit-item { display: flex; align-items: center; gap: 15px; }
.benefit-item i { font-size: 32px; color: var(--primary-color); }
.benefit-item h4 { margin-bottom: 5px; color: var(--secondary-color); }
.benefit-item p { font-size: 14px; color: #666; }
.recommended-products { 
   padding: 60px 0; 
   background: linear-gradient(135deg, var(--elegant-blue) 0%, var(--light-bg) 100%);
   background-attachment: fixed;
}

/* Responsive Design */
@media (max-width: 1200px) {
   .container { padding: 0 30px; }
   .hero { height: 600px; }
   .hero-emoji { font-size: 180px; }
}

@media (max-width: 1024px) {
   .shop-layout, .contact-layout, .cart-layout { grid-template-columns: 1fr; }
   .shop-sidebar, .contact-sidebar, .cart-summary { position: static; margin-bottom: 30px; }
   .product-details-layout { grid-template-columns: 1fr; }
   .section-header h2 { font-size: 36px; }
   .hero { height: 550px; }
   .hero-title { font-size: 56px; }
   .hero-emoji { font-size: 160px; }
   .badges-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
   .promo-content { flex-direction: column; gap: 10px; font-size: 13px; }
   .products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
   .product-image { height: 280px; }
   .product-card-emoji { font-size: 110px; }
   .footer-bottom-right { align-items: center; }
}

@media (max-width: 768px) {
   body.nav-open { 
      overflow: hidden;
      position: fixed;
      width: 100%;
   }
   .navbar {
      padding: 12px 0;
   }
   .nav-content {
      position: relative;
   }
   .mobile-menu-btn { 
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      font-size: 28px;
      background: rgba(173, 216, 230, 0.1);
      border-radius: 12px;
      transition: var(--transition);
      z-index: 13001;
      position: relative;
      pointer-events: auto;
      touch-action: manipulation;
   }
   .mobile-menu-btn:hover {
      background: rgba(173, 216, 230, 0.2);
   }
   .mobile-menu-btn:active {
      transform: scale(0.9);
      background: rgba(173, 216, 230, 0.3);
   }
   .logo-brand {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      order: 2;
      margin: 0;
   }
   .logo-brand img { height: 50px; }
   .nav-icons {
      gap: 8px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      margin-left: auto;
   }
   .icon-btn {
      width: 40px;
      height: 40px;
      font-size: 16px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      border: none;
      color: var(--secondary-color);
      cursor: pointer;
   }
   .icon-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
   }
   .nav-menu li {
      margin: 0;
      border-bottom: none;
   }
   .nav-menu li:last-child {
      border-bottom: none;
   }
   .nav-menu.active li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }
   .nav-menu.active li:last-child {
      border-bottom: none;
   }
   .nav-menu a {
      display: block;
      padding: 0;
      font-size: 17px;
      font-weight: 600;
      color: var(--secondary-color);
      border-radius: 0;
      margin: 0;
      transition: var(--transition);
   }
   .nav-menu.active {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
   }
   .nav-menu.active a {
      padding: 16px 20px;
   }
   /* Mobile search bar inside nav menu */
   .mobile-search { display: block; padding: 8px 0; }
   .mobile-search-container {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 10px;
      padding: 10px 14px;
      margin: 8px 20px 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   }
   .mobile-search-container i { color: var(--primary-color); font-size: 16px; }
   #mobileSearchInput {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-size: 16px;
      color: var(--secondary-color);
   }
   .nav-menu a:hover,
   .nav-menu a.active {
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
   }
   /* Mobile dropdown */
   .nav-dropdown > a {
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
   }
   /* Keep positioning simple for inline accordion behavior */
   .nav-dropdown { position: static; }
   .nav-dropdown .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      background: transparent;
      box-shadow: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      margin: 0;
      padding: 0;
      text-align: center;
   }
   .nav-dropdown:hover .dropdown-menu {
      max-height: 200px;
      padding: 8px 0;
   }
   /* Allow full dropdown expansion on mobile when opened */
   .nav-dropdown.open .dropdown-menu {
      max-height: 400px; /* enough for 4+ items */
      overflow: hidden;
      padding: 8px 0;
      position: static;
   }
   .dropdown-menu a {
      font-size: 15px;
      padding: 12px 20px;
      text-align: center;
   }
   .hero { height: 500px; }
   .hero-title { font-size: 42px; letter-spacing: 1px; }
   .hero-subtitle { font-size: 17px; line-height: 1.5; }
   .hero-emoji { font-size: 140px; }

   .hero-landing {
      min-height: 100vh;
      background-attachment: scroll;
      background-size: cover;
      background-position: center center;
      padding: 80px 20px 60px;
   }
   .hero-landing-overlay {
      background: rgba(10, 10, 10, 0.5);
   }
   .hero-logo-emoji {
      font-size: 80px;
      margin-bottom: 25px;
   }
   .hero-brand-name { 
      font-size: 56px; 
      letter-spacing: 2px;
      line-height: 1.2;
   }
   .hero-brand-tagline { 
      font-size: 20px; 
      letter-spacing: 1px;
      margin-bottom: 12px;
   }
   .hero-brand-subtext {
      font-size: 16px;
      margin-bottom: 35px;
      padding: 0 10px;
   }
   .hero-landing-btn {
      padding: 16px 40px;
      font-size: 16px;
   }
   .section-header h2 { font-size: 32px; }
   .section-header p { font-size: 15px; }
   .categories-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
   .products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
   .product-image { height: 260px; }
   .product-card-emoji { font-size: 100px; }
   .product-badge { padding: 6px 14px; font-size: 11px; }
   .feature-card { padding: 30px 20px; }
   .feature-icon { font-size: 48px; }
   .testimonial-card { padding: 30px 20px; }
   .category-card { height: 300px; }
   .category-emoji { font-size: 100px; }
   .footer-content { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; }
   .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
   .footer-bottom-right { align-items: center; }
   .cart-actions { flex-direction: column; gap: 10px; }
   .btn-large { padding: 14px 35px; font-size: 16px; }
   .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
   .badge-item { padding: 12px; }
   .badge-item i { font-size: 28px; }
   .badge-item span { font-size: 12px; }
   .cart-sidebar { width: 100%; right: -100%; }
   .about-content, .story-content { grid-template-columns: 1fr; }
   .form-row { grid-template-columns: 1fr; }
   .cart-table { display: block; overflow-x: auto; }
   .product-actions { opacity: 1; transform: translateX(0); }
}

@media (max-width: 480px) {
   .navbar {
      padding: 10px 0;
   }
   .mobile-menu-btn {
      width: 48px;
      height: 48px;
      font-size: 26px;
      border-radius: 10px;
   }
   .logo-brand img { height: 26px; }
   .nav-icons {
      gap: 6px;
      display: flex !important;
      margin-left: auto;
   }
   .icon-btn {
      width: 38px;
      height: 38px;
      font-size: 15px;
      border-radius: 8px;
      display: flex !important;
   }
   .badge {
      font-size: 10px;
      padding: 2px 5px;
   }
   .nav-menu {
      padding: 25px 0;
   }
   .nav-menu a {
      padding: 14px 20px;
      font-size: 17px;
      margin: 0 15px;
   }
   .hero { height: 400px; }
   .hero-title { font-size: 32px; line-height: 1.2; }
   .hero-subtitle { font-size: 15px; padding: 0 15px; }
   .hero-emoji { font-size: 100px; }

   .hero-landing {
      min-height: 100vh;
      background-attachment: scroll;
      background-size: cover;
      background-position: center center;
      padding: 100px 15px 50px;
   }
   .hero-landing-overlay {
      background: rgba(10, 10, 10, 0.4);
   }
   .hero-landing-content {
      padding: 10px;
   }
   .hero-logo-emoji {
      font-size: 60px;
      margin-bottom: 20px;
   }
   .hero-brand-name { 
      font-size: 42px; 
      margin-bottom: 10px; 
      letter-spacing: 1px;
      line-height: 1.1;
   }
   .hero-brand-tagline { 
      font-size: 16px; 
      margin-bottom: 10px;
      letter-spacing: 0.5px;
   }
   .hero-brand-subtext {
      font-size: 14px;
      margin-bottom: 30px;
      line-height: 1.5;
   }
   .hero-landing-btn {
      padding: 14px 35px;
      font-size: 15px;
      border-radius: 40px;
   }

   .section-header h2 { font-size: 28px; }
   .section-header p { font-size: 14px; }
   .categories-grid { grid-template-columns: 1fr; }
   .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
   .product-image { height: 200px; }
   .product-card-emoji { font-size: 85px; }
   .product-badge { padding: 5px 12px; font-size: 10px; top: 10px; left: 10px; }
   .category-card { height: 280px; }
   .category-emoji { font-size: 80px; }
   .feature-card { padding: 25px 15px; }
   .feature-icon { font-size: 42px; }
   .testimonial-card { padding: 25px 15px; }
   .product-actions { flex-direction: column; opacity: 1; transform: translateX(0); }
   .tab-buttons { overflow-x: auto; gap: 15px; }
   .btn { padding: 12px 24px; font-size: 14px; border-radius: 6px; }
   .btn-large { padding: 14px 28px; font-size: 15px; }
   .promo-content { font-size: 12px; flex-direction: column; gap: 8px; }
   .promo-content i { font-size: 16px; }
   .badges-grid { grid-template-columns: 1fr; gap: 10px; }
   .footer-content { grid-template-columns: 1fr; gap: 20px; }
   
   .cart-notification {
      right: 15px;
      left: 15px;
      top: 90px;
      padding: 15px 18px;
      transform: translateY(-150px);
   }
   .cart-notification.show {
      transform: translateY(0);
   }
   .cart-notification.hide {
      transform: translateY(-150px);
   }
   .cart-notification-icon {
      width: 40px;
      height: 40px;
      font-size: 20px;
   }
   .cart-notification-title {
      font-size: 14px;
   }
   .cart-notification-message {
      font-size: 12px;
   }
   .badge-item { padding: 10px; flex-direction: row; justify-content: center; }
   .badge-item i { font-size: 24px; }
   .nav-icons { gap: 8px; }
   .icon-btn { width: 38px; height: 38px; font-size: 16px; }
   .cart-sidebar { width: 100%; right: -100%; }
   .container { padding: 0 15px; }
   .product-info { padding: 16px; }
   .product-name { font-size: 16px; }
   .product-price { font-size: 20px; }
   .add-to-cart-btn { padding: 12px 14px; font-size: 14px; }
   
   /* Mobile navbar improvements */
   .navbar {
      padding: 20px 0;
   }
   .mobile-menu-btn {
      display: flex;
      font-size: 26px;
      padding: 10px;
   }
   .nav-content {
      gap: 10px;
   }
   .logo-brand img {
      height: 50px;
   }
   .nav-menu {
      display: none;
      gap: 0;
   }
   /* Keep search icon visible on small phones */
   .nav-icons {
      display: flex !important;
   }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
   .btn { min-height: 44px; padding: 12px 30px; }
   .icon-btn { width: 44px; height: 44px; }
   .product-card { touch-action: manipulation; }
   .wishlist-toggle-btn { width: 44px; height: 44px; }
   .add-to-cart-btn { min-height: 44px; }
   .product-card:active { transform: scale(0.98); }
   .btn:active { transform: translateY(1px); }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
   .hero { height: 400px; }
   .hero-title { font-size: 36px; }
   .hero-emoji { font-size: 120px; }
   .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
   *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
   }
}

/* Dark mode overrides removed to keep brand colors consistent across devices */

/* Print styles */
@media print {
   .header, .footer, .cart-sidebar, .wishlist-sidebar, 
   .overlay, .promo-banner, .btn, .nav-icons { display: none !important; }
   body { background: white; color: black; }
   .container { max-width: 100%; }
   .product-card, .category-card { break-inside: avoid; }
}

/* Coming Soon Banner */
.coming-soon-banner {
   text-align: center;
   padding: 40px 20px;
   background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(26,26,26,0.05));
   border: 1px solid rgba(212,175,55,0.25);
   border-radius: 12px;
   max-width: 800px;
   margin: 20px auto;
}
.coming-soon-banner h2 {
   font-size: 32px;
   background: linear-gradient(90deg, #d4af37, #ffd700, #d4af37);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: glowPulse 2.2s ease-in-out infinite;
}
.coming-soon-banner p {
   color: #666;
   margin-top: 8px;
}
@keyframes glowPulse {
   0%, 100% { text-shadow: 0 0 10px rgba(212,175,55,0.4), 0 0 20px rgba(212,175,55,0.2); }
   50% { text-shadow: 0 0 18px rgba(212,175,55,0.8), 0 0 36px rgba(212,175,55,0.5); }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
   .container { padding: 0 12px !important; }
   h1 { font-size: 1.5rem; margin-bottom: 15px; }
   h2 { font-size: 1.4rem; margin-bottom: 12px; }
   h3 { font-size: 1.1rem; }
   .section-header h2 { font-size: 1.6rem !important; }
   .section-header p { font-size: 0.9rem; }
   
   /* Form improvements for touch */
   input[type="text"], input[type="email"], input[type="tel"], 
   input[type="date"], input[type="number"],
   select, textarea { 
      font-size: 16px !important; /* Prevents zoom on iOS */
      padding: 14px 12px !important;
      min-height: 50px !important;
      border-radius: 8px;
      -webkit-appearance: none;
      appearance: none;
   }
   
   select { padding: 14px 10px 14px 12px !important; }
   textarea { min-height: 120px !important; }
   
   /* Button sizing for touch */
   .btn, button[type="submit"] { 
      padding: 16px 20px !important; 
      font-size: 1rem !important;
      min-height: 50px !important;
      min-width: 100px;
      border-radius: 8px;
      -webkit-tap-highlight-color: transparent;
   }
   
   /* Grid to single column */
   .grid, [style*="display: grid"] { 
      grid-template-columns: 1fr !important; 
   }
   .product-grid { grid-template-columns: 1fr !important; }
   
   /* Product cards */
   .product-card { margin-bottom: 15px; }
   
   /* Modal improvements */
   .modal { padding: 15px !important; }
   
   /* Better spacing */
   section { padding: 25px 0 !important; }
   .section-header { margin-bottom: 25px; }
}

/* Image Optimization */
img {
   max-width: 100%;
   height: auto;
   display: block;
}

/* Prevent layout shift during image load */
img {
   background-color: transparent;
}

/* Optimize product images */
.product-card img,
.full-width-image {
   object-fit: cover;
   object-position: center;
}

.logo-brand img {
   display: block;
}
/* Background Music Player */
.music-player {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 10000;
   animation: fadeInUp 0.6s ease-out;
}

.music-toggle {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--primary-color), var(--dark-baby-blue));
   border: none;
   color: var(--white);
   font-size: 22px;
   cursor: pointer;
   box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3), 0 0 20px rgba(173, 216, 230, 0.2);
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   overflow: hidden;
}

.music-toggle::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   width: 0;
   height: 0;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.3);
   transform: translate(-50%, -50%);
   transition: width 0.6s, height 0.6s;
}

.music-toggle:hover::before {
   width: 100%;
   height: 100%;
}

.music-toggle:hover {
   transform: scale(1.1) rotate(15deg);
   box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5), 0 0 30px rgba(173, 216, 230, 0.4);
}

.music-toggle.playing {
   animation: pulse 2s ease-in-out infinite;
}

.music-toggle.playing i {
   animation: musicNote 1s ease-in-out infinite;
}

@keyframes pulse {
   0%, 100% {
      box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3), 0 0 20px rgba(173, 216, 230, 0.2);
   }
   50% {
      box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6), 0 0 40px rgba(173, 216, 230, 0.5);
   }
}

@keyframes musicNote {
   0%, 100% {
      transform: translateY(0);
   }
   25% {
      transform: translateY(-3px);
   }
   75% {
      transform: translateY(3px);
   }
}

/* Mobile responsive */
@media (max-width: 768px) {
   .music-player {
      bottom: 20px;
      right: 20px;
   }
   
   .music-toggle {
      width: 50px;
      height: 50px;
      font-size: 18px;
   }
}