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

/* ========================================================= */
/* DESIGN TOKENS                                             */
/* ========================================================= */
:root {
  /* Colors */
  --primary-black: #111111;
  --bg-color: #F2F0EB;
  --secondary-gray: #6B6B6B;
  --light-gray: #D6D3CD;
  --primary-blue: #004182;
  --blue-light: rgba(0, 65, 130, 0.15);
  --blue-glow: rgba(0, 65, 130, 0.4);
  --charcoal: #2B2B2B;
  --white: #ffffff;
  --error: #e53e3e;
  --whatsapp: #25D366;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadow System */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.10), 0 20px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12), 0 40px 80px rgba(0,0,0,0.12);
  --shadow-blue: 0 4px 15px rgba(0, 65, 130, 0.3);

  /* Spacing & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions & Easings */
  --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  --header-height: 80px;
}

/* ========================================================= */
/* RESET                                                     */
/* ========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--primary-black);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #003366;
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) var(--bg-color);
}


/* ========================================================= */
/* PRELOADER                                                 */
/* ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  filter: brightness(0) invert(1);
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--primary-blue);
  border-radius: 2px;
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}


/* ========================================================= */
/* SCROLL PROGRESS BAR                                       */
/* ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), #0056b3);
  z-index: 10000;
  transition: none;
  box-shadow: 0 0 8px var(--blue-glow);
}


/* ========================================================= */
/* TYPOGRAPHY                                                */
/* ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

p {
  color: var(--secondary-gray);
  line-height: 1.7;
}

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

ul {
  list-style: none;
}

/* Text gradient utility */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue), #0056b3, var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================================= */
/* LAYOUT UTILITIES                                          */
/* ========================================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.text-center {
  text-align: center;
}


/* ========================================================= */
/* BUTTONS                                                   */
/* ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), color var(--transition-base);
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  transform: scale(10);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
}

.btn:active::after {
  transform: scale(0);
  opacity: 1;
  transition: 0s;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background-color: var(--primary-black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-black);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-blue {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-blue:hover {
  background-color: var(--primary-black);
  box-shadow: var(--shadow-lg);
}

.btn-black {
  background-color: var(--primary-black);
  color: var(--white);
}

.btn-black:hover {
  background-color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-black);
  border-color: var(--white);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-full-width {
  width: 100%;
  justify-content: center;
}


/* ========================================================= */
/* FORMS                                                     */
/* ========================================================= */
input,
textarea,
select {
  font-family: var(--font-body);
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--primary-black);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  font-size: 0.95rem;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px var(--blue-light);
}

input::placeholder,
textarea::placeholder {
  color: var(--light-gray);
  transition: opacity var(--transition-base);
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0.5;
}


/* ========================================================= */
/* HEADER                                                    */
/* ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--primary-black);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease-out-expo);
}

.header.scrolled {
  background-color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  height: 70px;
}

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

.header .logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-base);
}

.header .logo:hover img {
  transform: scale(1.05);
}

.header.scrolled .logo img {
  transform: scale(0.85);
}

.mobile-menu-header img {
  filter: brightness(0) saturate(100%);
  height: 32px;
}

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

.logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) saturate(100%);
}

.brand-name {
  font-family: 'Syncopate', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand-accent {
  color: var(--primary-blue) !important;
}

/* In footer, show white logo */
.footer .logo img,
.footer img[src*="logo"] {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}


/* ========================================================= */
/* NAV LINKS WITH ANIMATED UNDERLINE                         */
/* ========================================================= */
.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-gray);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
  background-color: rgba(200, 169, 81, 0.08);
  border: 1px solid rgba(200, 169, 81, 0.2);
}


/* ========================================================= */
/* HEADER ACTIONS                                            */
/* ========================================================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-icon-btn,
.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: color var(--transition-base), transform var(--transition-base);
}

.cart-icon-btn:hover,
.mobile-toggle:hover {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}

.cart-badge.bump {
  animation: cartBump 0.4s var(--ease-spring);
}

@keyframes cartBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.mobile-toggle {
  display: none;
}





/* ========================================================= */
/* MOBILE MENU                                               */
/* ========================================================= */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-black);
  transition: transform var(--transition-base);
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-black);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.mobile-nav-links a:hover {
  color: var(--primary-blue);
  padding-left: 0.5rem;
}

.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid var(--light-gray);
  padding-top: 2rem;
}

.mobile-menu-footer .btn {
  width: 100%;
}


/* ========================================================= */
/* FOOTER                                                    */
/* ========================================================= */
.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
}

/* Noise overlay on dark sections */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

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

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-desc {
  color: #a0a0a0;
  margin: 1rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #a0a0a0;
  font-size: 0.95rem;
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  color: var(--white);
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition-base);
}

.footer-socials a:hover {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(200, 169, 81, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a0a0a0;
  font-size: 0.85rem;
}

.footer .logo {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer .logo img {
  height: 50px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(105%);
}

.footer .brand-name {
  color: var(--white);
  margin-top: 0;
}

.footer-whatsapp {
  color: var(--whatsapp) !important;
}


/* ========================================================= */
/* CART SIDEBAR                                              */
/* ========================================================= */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1003;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

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

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

.cart-header h3 {
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-black);
  transition: transform var(--transition-base);
}

.close-cart:hover {
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1rem;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background-color: var(--bg-color);
}

.cart-item-details { flex: 1; }

.cart-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: var(--secondary-gray);
  margin-bottom: 0.5rem;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition-base);
}

.qty-btn:hover {
  background: var(--bg-color);
}

.qty-val {
  padding: 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.remove-item {
  background: none;
  border: none;
  color: var(--error);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  background-color: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.empty-cart-msg {
  text-align: center;
  color: var(--secondary-gray);
  padding: 3rem 0;
}

#checkout-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1rem;
}


/* ========================================================= */
/* ANIMATIONS                                                */
/* ========================================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ========================================================= */
/* TOAST NOTIFICATIONS                                       */
/* ========================================================= */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  right: 1rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--white);
  color: var(--primary-black);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-spring), opacity 0.3s ease;
  border-left: 4px solid var(--primary-blue);
  max-width: 320px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}


/* ========================================================= */
/* WHATSAPP FLOATING BUTTON                                  */
/* ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.3); opacity: 0.4; }
}


/* ========================================================= */
/* PAGE-LEVEL CONTENT                                        */
/* ========================================================= */
.page-main {
  padding-top: var(--header-height);
}


/* ========================================================= */
/* PAGE BANNERS (sub-pages)                                  */
/* ========================================================= */
.page-banner {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Noise overlay on page banners */
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

.page-banner--large {
  padding: 5rem 0;
  text-align: center;
  background-color: var(--primary-black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-banner--large::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-banner--large h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-banner--large p {
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}


/* ========================================================= */
/* HERO SECTION (index.html)                                 */
/* ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-black);
  overflow: hidden;
}

/* Animated mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(200, 169, 81, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 169, 81, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(43, 43, 43, 0.4) 0%, transparent 50%);
  animation: meshShift 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes meshShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -3%) rotate(1deg); }
  66% { transform: translate(-2%, 2%) rotate(-1deg); }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  opacity: 0.35;
  background-image: url('../assets/dummy/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary-black) 5%, rgba(17,17,17,0.4) 50%, rgba(17,17,17,0.7) 100%);
  z-index: 3;
}




.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-content h1 .gold-text {
  background: linear-gradient(135deg, var(--primary-blue), #e0c470, var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 1.1rem 2rem !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 1rem;
}

/* Hero text stagger reveal */
.hero-content.is-visible h1 { animation: fadeIn 0.8s var(--ease-out-expo) 0.1s both; }
.hero-content.is-visible p { animation: fadeIn 0.8s var(--ease-out-expo) 0.3s both; }
.hero-content.is-visible .hero-buttons { animation: fadeIn 0.8s var(--ease-out-expo) 0.5s both; }


/* ========================================================= */
/* SECTION BACKGROUNDS & HEADERS                             */
/* ========================================================= */
.section-bg-white {
  background-color: var(--white);
}

.section-bg-light {
  background-color: var(--bg-color);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}


/* ========================================================= */
/* FEATURED PRODUCTS (index.html)                            */
/* ========================================================= */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}


/* ========================================================= */
/* PRODUCT CARDS                                             */
/* ========================================================= */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  position: relative;
  padding-top: 100%;
  background: #eae8e1;
  overflow: hidden;
}

.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

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

.product-card-category {
  font-size: 0.8rem;
  color: var(--secondary-gray);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.product-card-price {
  font-weight: 700;
  color: var(--primary-black);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.product-card-actions {
  margin-top: auto;
}

.product-card-actions label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.product-card-actions .size-guide-link {
  text-decoration: underline;
  color: var(--secondary-gray);
  font-size: 0.75rem;
  font-weight: 400;
  float: right;
}

.product-card-actions select {
  margin-bottom: 1rem;
}

.product-card-btns {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.product-card-btns .btn {
  width: 100%;
}

/* No-results state */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
}

.no-results p {
  font-size: 1.2rem;
  color: var(--secondary-gray);
}


/* ========================================================= */
/* WHY CHOOSE US (index.html)                                */
/* ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.5s var(--ease-spring);
}

.animate-on-scroll.is-visible .feature-icon {
  animation: featureIconPop 0.6s var(--ease-spring) both;
}

@keyframes featureIconPop {
  0% { transform: scale(0) rotate(-15deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


/* ========================================================= */
/* SERVICE CARDS — HOME PAGE (Our Specializations)           */
/* ========================================================= */
.service-card-home {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.service-card-home:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

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

.service-card-home h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-black);
  padding: 1.25rem 1.5rem 0.5rem;
  margin: 0;
}

.service-card-home p {
  font-size: 0.95rem;
  color: var(--secondary-gray);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
  margin: 0;
}


/* ========================================================= */
/* TESTIMONIALS (index.html)                                 */
/* ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: -15px;
  right: -10px;
  font-size: 8rem;
  color: var(--bg-color);
  opacity: 0.5;
}

.testimonial-stars {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--secondary-gray);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-black), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.2rem;
  color: var(--primary-black);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--secondary-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ========================================================= */
/* ABOUT PAGE                                                */
/* ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.about-grid.reverse .about-story {
  order: 1;
}

.about-grid.reverse .about-image-clean {
  order: 2;
}

.about-image-clean {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-image-clean img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.about-image-clean:hover img {
  transform: scale(1.05);
}

.about-image-wrapper {
  aspect-ratio: 4/5;
  background-color: var(--bg-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-size: 4rem;
  background: linear-gradient(45deg, #eae8e1, #faf9f6);
}

.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}

.about-image-caption h3 {
  color: var(--white);
  margin-bottom: 0;
}

.about-image-caption p {
  color: var(--primary-blue);
  font-size: 0.9rem;
}

.about-story h2 { margin-bottom: 1.5rem; }
.about-story p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.about-story h3 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; }
.about-story .mission-text { font-size: 1.1rem; }

/* Promise Cards */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promise-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promise-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.promise-card h3 { margin-bottom: 1rem; }


/* ========================================================= */
/* CONTACT PAGE                                              */
/* ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 { margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item:last-child { margin-bottom: 0; }

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.contact-item:hover .icon-box {
  background-color: var(--primary-blue);
  color: var(--white);
}

.contact-item h4 { margin-bottom: 0.25rem; }

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.map-placeholder {
  height: 400px;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-gray);
  font-weight: 600;
  letter-spacing: 1px;
}

.map-placeholder i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}


/* ========================================================= */
/* CUSTOM DESIGN PAGE                                        */
/* ========================================================= */
.timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connector line */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--light-gray));
  opacity: 0.3;
}

.timeline-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
  position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-blue);
}

.timeline-number--gold { background-color: var(--primary-blue); }
.timeline-number--black { background-color: var(--primary-black); }

.timeline-step h3 { margin-bottom: 0.5rem; }

.cta-text {
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-large {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
}


/* ========================================================= */
/* FAQ PAGE                                                  */
/* ========================================================= */
.faq-container { max-width: 800px; }

.faq-category { margin-bottom: 3rem; }

.faq-category-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition-base);
}

.faq-item:hover {
  background: rgba(200, 169, 81, 0.03);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-base);
}

.faq-question:hover { color: var(--primary-blue); }

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
  color: var(--primary-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s ease;
  color: var(--secondary-gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

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

.faq-link {
  text-decoration: underline;
  color: var(--primary-black);
}


/* ========================================================= */
/* POLICY PAGE                                               */
/* ========================================================= */
.policy-section {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  transition: box-shadow var(--transition-base);
}

.policy-section:hover {
  box-shadow: var(--shadow-md);
}

.policy-section h2 { color: var(--primary-blue); margin-bottom: 2rem; border-bottom: 1px solid var(--bg-color); padding-bottom: 1rem; }
.policy-section h3 { margin-top: 2rem; margin-bottom: 1rem; }
.policy-section ul { margin-left: 1.5rem; margin-bottom: 1.5rem; color: var(--secondary-gray); line-height: 1.6; }
.policy-section p { margin-bottom: 1.5rem; color: var(--secondary-gray); line-height: 1.6; }


/* ========================================================= */
/* SIZE GUIDE                                                */
/* ========================================================= */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.size-table th, .size-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background var(--transition-base);
}

.size-table th {
  background-color: var(--primary-black);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.size-table tr:last-child td { border-bottom: none; }
.size-table tr:hover td { background-color: var(--blue-light); }

.size-guide-container { max-width: 900px; }
.size-table-wrapper { overflow-x: auto; }

.size-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.size-guide-grid h2 { margin-bottom: 1.5rem; font-size: 1.8rem; }

.measure-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.measure-list h4 { color: var(--primary-blue); margin-bottom: 0.25rem; }

.fit-tips-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.fit-tips-card h4 { margin-bottom: 0.25rem; }
.fit-tips-card p { margin-bottom: 1.5rem; }
.fit-tips-card p:last-child { margin-bottom: 0; }


/* ========================================================= */
/* PRODUCTS PAGE                                             */
/* ========================================================= */
.section--compact-top { padding-top: 2rem; }

.filter-bar {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.filter-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.filter-item { display: flex; align-items: center; gap: 0.5rem; }
.filter-label { font-weight: 600; font-size: 0.9rem; }
.filter-select { width: 120px; padding: 0.5rem; font-size: 0.9rem; }
.filter-select--wide { width: 150px; }
.btn-clear-filters { padding: 0.5rem 1rem; font-size: 0.8rem; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  min-height: 400px;
}


/* Utility Classes */
.hide-mobile {
  display: block;
}
.show-mobile {
  display: none;
}

/* ========================================================= */
/* MEDIA QUERIES                                             */
/* ========================================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem !important; }
  h2 { font-size: 1.8rem !important; }

  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }

  .nav-links { display: none !important; }
  
  .mobile-toggle { 
    display: flex !important;
    font-size: 1.5rem !important;
    color: var(--white) !important;
  }

  .header .logo img {
    height: 50px !important;
  }

  .brand-name {
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
  }

  .header-actions {
    gap: 0.75rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about-grid, .contact-grid, .form-row {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .size-guide-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
    line-height: 1.1 !important;
  }

  .hero-content p { 
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .hero-btn {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .hero {
    height: auto !important;
    min-height: 70vh !important;
    padding: 100px 0 60px !important;
  }

  .section { padding: 4rem 0 !important; }

  .whatsapp-float {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 1.4rem !important;
  }

  .testimonial-card { padding: 2rem 1.5rem !important; }
  .policy-section { padding: 2rem !important; }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .service-card-home h3 {
    font-size: 1.15rem !important;
    padding: 1rem 1.25rem 0.35rem !important;
  }

  .service-card-home p {
    font-size: 0.9rem !important;
    padding: 0 1.25rem 1.25rem !important;
  }

  .service-img-wrapper {
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
  }

  .filter-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 1rem !important;
  }

  .filter-group {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .filter-item {
    justify-content: space-between !important;
  }

  .filter-select {
    width: 100% !important;
  }

  .shop-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .footer-bottom {
    font-size: 0.75rem !important;
  }
}

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

  html { scroll-behavior: auto; }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-bg { height: 100%; }
}

/* ========================================================= */
/* FOCUS STATES (Accessibility)                              */
/* ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 3px;
}