@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   1. DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
  /* Colors */
  --primary: #0EA5E9;       /* Tropical wave blue */
  --primary-hover: #0284C7; /* Deep wave blue */
  --secondary: #FF6B8B;     /* Coral pink */
  --secondary-hover: #E11D48; /* Deep coral pink */
  --accent: #06B6D4;        /* Turquoise lagoon */
  --yellow: #FCD34D;        /* Sun yellow */
  --yellow-hover: #F59E0B;  /* Golden sand */
  --dark-teal: #0A4F60;     /* Deep sea teal text */
  --light-blue: #E0F2FE;    /* Soft sky blue bg */
  
  --bg-light: #F8FAFC;      /* Soft neutral background */
  --bg-white: #FFFFFF;      /* Clean card background */
  --text-main: #1E293B;     /* Slate 800 - high contrast readability */
  --text-muted: #64748B;    /* Slate 500 */
  --text-white: #FFFFFF;
  --border-color: #E2E8F0;  /* Slate 200 */
  
  /* Shadow & Glows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(14, 165, 233, 0.1), 0 8px 10px -6px rgba(14, 165, 233, 0.05);
  --shadow-coral: 0 10px 25px -5px rgba(255, 107, 139, 0.15);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-round: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Max width */
  --max-width: 1280px;
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* Elegant Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-round);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* ==========================================
   3. LAYOUT CONTAINERS & UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Grid Utilities */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Responsive Flex */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-round);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-white);
  box-shadow: var(--shadow-coral);
}
.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  margin-bottom: 48px;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}
.wave-decoration {
  display: none !important;
}

/* Wave Dividers */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}
.wave-divider-top {
  top: -1px;
}
.wave-divider-bottom {
  bottom: -1px;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: var(--bg-light);
}

/* ==========================================
   4. ANNOUNCEMENT & HEADER
   ========================================== */
.announcement-bar {
  background-color: var(--primary-hover);
  color: var(--text-white);
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announcement-bar a {
  background: var(--bg-white);
  color: var(--primary-hover);
  padding: 2px 12px;
  border-radius: var(--radius-round);
  font-size: 0.8rem;
  font-weight: 600;
}
.announcement-bar a:hover {
  background: var(--yellow);
  color: var(--text-main);
}

/* Announcement Bar Slider Styles */
.announcement-bar .container {
  position: relative;
  overflow: hidden;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.announcement-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.announcement-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}
.announcement-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-normal);
}
.main-header.scrolled {
  padding: 8px 0;
}
.main-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'><path d='M0,0 L1200,0 L1200,80 C1000,20 800,100 600,40 C400,100 200,20 0,80 Z' fill='rgba(255,255,255,0.95)'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
  filter: drop-shadow(0 8px 12px rgba(10, 79, 96, 0.08));
  -webkit-filter: drop-shadow(0 8px 12px rgba(10, 79, 96, 0.08));
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 28px; /* Elegant compact size */
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}
.logo img:hover {
  transform: scale(1.03);
}
.logo-white img {
  filter: brightness(0) invert(1);
}
.mobile-drawer .logo img {
  height: 26px; /* Fit perfectly in drawer header */
}
.footer-top .logo img {
  height: 32px; /* Proportional for footer */
}
.logo-icon {
  width: 44px;
  height: 44px;
  fill: var(--primary);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--secondary);
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
}

/* Dropdown Sub-menus */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Align last dropdown menu to the right to avoid off-screen overflow */
.nav-menu > .dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
  transform: translateY(10px);
}
.nav-menu > .dropdown:last-child:hover .dropdown-menu {
  transform: translateY(0);
}
.dropdown-menu li {
  position: relative;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-weight: 550;
  color: var(--text-main);
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
}
.dropdown-menu li a:hover {
  background-color: var(--light-blue);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 24px;
}
.dropdown-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 6px 0;
}
.dropdown-featured-link {
  color: var(--secondary) !important;
}
.dropdown-featured-link:hover {
  background-color: rgba(255, 107, 139, 0.06) !important;
  border-left-color: var(--secondary) !important;
  color: var(--secondary-hover) !important;
}

/* Mega Menu */
.has-mega-menu {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 30px;
}
.mega-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
  padding-bottom: 8px;
  text-align: left;
}
.mega-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-column ul li {
  text-align: left;
}
.mega-column ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: 0;
  border: none;
}
.mega-column ul li a i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}
.mega-column ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
  background: none;
  padding-left: 0;
}
.mega-spotlight .spotlight-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
}
.mega-spotlight .spotlight-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform var(--transition-slow);
}
.mega-spotlight .spotlight-card:hover img {
  transform: scale(1.05);
}
.mega-spotlight .spotlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.spotlight-info {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.spotlight-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin: 0;
}
.spotlight-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  background: var(--bg-white);
}
.icon-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--secondary);
  color: var(--text-white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bg-white);
  line-height: 1;
}
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-round);
  cursor: pointer;
}
.lang-selector:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 20px;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 9px;
  transition: var(--transition-fast);
}

/* ==========================================
   5. MOBILE MENU DRAWER
   ========================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--bg-white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: var(--transition-normal);
}
.mobile-drawer.open {
  right: 0;
}
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-drawer {
  font-size: 1.8rem;
  color: var(--text-main);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav-link:hover {
  color: var(--primary);
}

/* ==========================================
   6. FOOTER STYLING
   ========================================== */
.main-footer {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.75) 0%, rgba(224, 242, 254, 0.75) 100%) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  box-shadow: 0 -10px 30px rgba(10, 79, 96, 0.05);
  color: var(--dark-teal) !important;
  padding: 80px 0 20px;
  position: relative;
}
/* Ensure footer wave matches the light blue background */
.main-footer .wave-divider svg,
.main-footer .wave-divider svg path {
  fill: #f0f9ff !important;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo-title {
  color: var(--dark-teal) !important;
}
.footer-logo-subtitle {
  color: var(--primary) !important;
}
.footer-logo-icon {
  fill: var(--primary) !important;
}
.footer-desc {
  font-size: 0.95rem;
  color: rgba(10, 79, 96, 0.8) !important;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background-color: rgba(14, 165, 233, 0.1) !important;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}
.social-icon:hover {
  background-color: var(--primary) !important;
  color: var(--text-white) !important;
  transform: translateY(-3px);
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  color: var(--dark-teal) !important;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary) !important;
  border-radius: var(--radius-round);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.95rem;
  color: rgba(10, 79, 96, 0.8) !important;
}
.footer-links a:hover {
  color: var(--primary) !important;
  padding-left: 5px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(10, 79, 96, 0.8) !important;
}
.contact-item i {
  color: var(--primary) !important;
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(10, 79, 96, 0.1) !important;
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
/* Social logo override to original color */
.main-footer .logo-white img {
  filter: none !important;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover {
  color: var(--yellow);
}

/* ==========================================
   7. SHARED UI: SEARCH & POPUP MODALS
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
  transform: translateY(30px);
  transition: var(--transition-normal);
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
}
.modal-close:hover {
  color: var(--text-main);
}
.modal-icon {
  width: 70px;
  height: 70px;
  background-color: #DEF7EC;
  color: #0E9F6E;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.2rem;
}
.modal-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-teal);
}
.modal-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Search Bar Overlay */
.search-overlay {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  padding: 24px 0;
  transition: var(--transition-normal);
}
.search-overlay.active {
  top: 0;
}
.search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-round);
  font-size: 1.1rem;
}
.search-box button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--primary);
}

/* ==========================================
   8. MEDIA QUERIES FOR SHARED COMPONENTS
   ========================================== */
@media (max-width: 1024px) {
  .header-actions {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-top > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .announcement-bar .container {
    height: 48px;
  }
  .announcement-slide {
    flex-direction: column;
    gap: 4px;
    top: 50%;
    transform: translateY(-50%) translateY(10px);
    height: auto;
  }
  .announcement-slide.active {
    transform: translateY(-50%) translateY(0);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-top > div:first-child {
    grid-column: span 1;
    margin-bottom: 30px;
  }
  .footer-top > div:not(:first-child) {
    border-bottom: 1px solid rgba(10, 79, 96, 0.1);
  }
  .footer-title {
    margin-bottom: 0;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
  }
  .footer-title::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background-color: transparent !important;
    border-radius: 0;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
  }
  .footer-title.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .footer-links, .contact-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .footer-links.open, .contact-info.open {
    max-height: 500px;
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .accordion-header {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .accordion-content {
    padding: 16px 18px;
    font-size: 0.85rem;
  }
  .accordion-icon {
    width: 28px;
    height: 28px;
  }
  .cart-drawer {
    right: -100%;
    width: 100%;
  }
  .cart-drawer.open {
    transform: translateX(-100%);
  }
}

/* ==========================================
   9. PREMIUM ACCORDION & FAQ STYLES
   ========================================== */
.accordion-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-left: 4px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  transition: border-color var(--transition-normal), border-left-color var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-sm);
}
.accordion-card.active {
  border-left-color: var(--primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
}
.accordion-header {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--dark-teal);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
.accordion-header:hover {
  color: var(--primary);
}
.accordion-card.active .accordion-header {
  border-bottom: 1px solid var(--border-color);
}
.accordion-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-round);
  background-color: var(--light-blue);
  color: var(--primary);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-normal) !important;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.accordion-card.active .accordion-icon {
  background-color: var(--primary) !important;
  color: var(--text-white) !important;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  background-color: var(--bg-white);
}
.accordion-content {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   10. OFFCANVAS CART DRAWER
   ========================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 79, 96, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -10px 0 30px rgba(10, 79, 96, 0.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open {
  transform: translateX(-420px);
}
.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-teal);
}
.close-cart-drawer {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background-color: var(--bg-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
}
.close-cart-drawer:hover {
  background-color: #FCE8E6;
  color: var(--secondary);
}
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-drawer-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}
.cart-drawer-empty i {
  font-size: 3rem;
  color: var(--light-blue);
  margin-bottom: 16px;
  display: block;
}
.cart-drawer-item {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}
.cart-drawer-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cart-drawer-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--bg-light);
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}
.cart-drawer-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-drawer-item-details {
  flex: 1;
}
.cart-drawer-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.cart-drawer-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cart-drawer-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.cart-drawer-item-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.cart-drawer-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--bg-light);
}
.cart-drawer-qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.cart-drawer-qty-btn:hover {
  background-color: var(--border-color);
  color: var(--text-main);
}
.cart-drawer-qty-input {
  width: 32px;
  text-align: center;
  border: none;
  background: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}
.cart-drawer-item-remove {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.cart-drawer-item-remove:hover {
  color: var(--secondary);
}
.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light);
}
.cart-drawer-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-teal);
}
.cart-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cart-drawer-actions .btn {
  padding: 12px;
  font-size: 0.85rem;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}

/* ==========================================
   11. EXTRA SMALL VIEWPORTS (PHONES)
   ========================================== */
@media (max-width: 480px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  .announcement-bar a {
    font-size: 0.7rem;
    padding: 1px 8px;
  }
  .container {
    padding: 0 16px;
  }
  .section-padding {
    padding: 40px 0;
  }
}
