/* ═══════════════════════════════════════════════════════
   CARA — Premium Fashion E-Commerce
   Modern, Minimalist Design with GSAP Animations
   ═══════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Palette */
  --primary: #0A968C;
  --primary-dark: #087A72;
  --primary-light: #0CB5A8;
  --secondary: #041E42;
  --accent: #E8735A;
  --accent-light: #F4D2C1;
  --surface: #F5F0EB;
  --hero-bg: #DCEDFC;
  --success: #23C688;
  --white: #FFFFFF;
  --black: #1A1A1A;

  /* Neutrals */
  --neutral-50: #FAFBFC;
  --neutral-100: #F5F0EB;
  --neutral-200: #E8E3DE;
  --neutral-300: #C4D1DC;
  --neutral-400: #8C9AA8;
  --neutral-500: #6B7280;
  --neutral-600: #465B52;
  --neutral-700: #333333;
  --neutral-800: #222222;
  --neutral-900: #0B2B3A;

  /* Typography */
  --font-heading: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Sora', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;
  --radius-button: 7px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-nav: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 4px 16px rgba(10, 150, 140, 0.25);
  --shadow-elevated: 0 12px 32px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* Layout */
  --max-width: 1280px;
  --header-height: 64px;
}

/* Body */
* {
  font-family: 'Sora', system-ui, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

a {
  text-decoration: none;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 15px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  border: none;
  padding: 15px 30px;
  border-radius: 7px;
  transition: 0.2s ease;
  color: black;
  font-weight: 500;
}

button.white {
  font-size: 15px;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  border: none;
  padding: 11px 20px;
  border: 1px solid white;
  transition: 0.2s ease;
  color: #fff;
  font-weight: 500;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #dcedfc;
  padding: 20px 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  z-index: 1000;
  top: 0;
  left: 0;
}



#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: rgb(58, 51, 51);
  font-family: "Inter", sans-serif;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: var(--primary);
}

#navbar li a:hover::after,
#navbar li a.active::after {
  width: 100%;
}

#navbar li a i {
  font-size: 1.25rem;
}

#close {
  display: none;
}

/* Mobile Nav */
#mobile {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

#mobile a {
  color: var(--neutral-700);
  font-size: 1.25rem;
}

#mobile i {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--neutral-700);
}

/* ═══════════════════════════════════════════════════════
   HERO — 3-Slide Carousel with GSAP Animations
   ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--hero-bg) 0%, #EDF5FF 50%, var(--white) 100%);
  overflow: visible;
  padding-top: calc(var(--header-height) + 1rem);
  /* Reduced from +3rem */
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  /* Reduced padding to move content left */
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* gave text slightly more space to balance */
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  min-height: calc(80vh - var(--header-height));
  padding-top: 0;
  padding-bottom: clamp(1rem, 3vw, 3rem);
}

/* Hero Text Content */
.hero-content {
  position: relative;
  z-index: 10;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-title .line:first-child .line-inner {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--neutral-500);
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-style: italic;
}

.hero-title .line:last-child .line-inner {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--neutral-900);
  line-height: 1.05;
  margin-top: 0.15rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-600);
  max-width: 460px;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(15px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-button);
  transition: all var(--duration-normal) var(--ease-out);
  opacity: 0;
  transform: translateY(15px);
}

.hero-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 150, 140, 0.35);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast);
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* Hero 3D Card Carousel */
.hero-cards-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  padding-bottom: 120px;
}

.hero-card {
  position: absolute;
  width: 55%;
  max-width: 320px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.hero-card.active .hero-card-label {
  opacity: 1;
  transform: translateY(0);
}

.card-collection {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Card Positions */
.hero-card[data-position="center"] {
  z-index: 10;
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-card[data-position="left"] {
  z-index: 5;
  opacity: 0.9;
  transform: translateX(-70%) translateY(-5%) scale(0.88) rotateY(22deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-card[data-position="right"] {
  z-index: 5;
  opacity: 0.9;
  transform: translateX(70%) translateY(-5%) scale(0.88) rotateY(-22deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-card[data-position="hidden"] {
  z-index: 1;
  opacity: 0;
  transform: translateX(0) translateY(0) scale(0.5) rotateY(50deg);
  pointer-events: none;
}

/* Navigation Arrows */
.hero-card-nav {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.25rem;
  z-index: 15;
}

.hero-card-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-card-arrow:hover {
  background: rgba(10, 150, 140, 0.95);
  transform: scale(1.15);
  box-shadow: 0 10px 28px rgba(10, 150, 140, 0.4);
}

.hero-card-arrow svg {
  width: 22px;
  height: 22px;
}

/* ═══════════════════════════════════════════════════════
   FEATURES — Service Boxes
   ═══════════════════════════════════════════════════════ */
#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--white);
}


.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  margin-left: 1.5rem;
}

.fe-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
  padding: 25px 15px;
  border-radius: var(--radius-lg);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  box-shadow: 20px 20px 35px rgba(205, 237, 230, 0.09);
  transition: all var(--duration-normal) var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.fe-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.fe-box:nth-child(1) {
  background: #fce4ec22;
}

.fe-box:nth-child(2) {
  background: #e0f2f122;
}

.fe-box:nth-child(3) {
  background: #fff3e022;
}

.fe-box:nth-child(4) {
  background: #e8eaf622;
}

.fe-box:nth-child(5) {
  background: #e0f7fa22;
}

.fe-box:nth-child(6) {
  background: #fce4ec22;
}

.fe-box img {
  width: 100%;
  margin-bottom: 10px;
  object-fit: contain;
}

.fe-box h6 {
  display: inline-block;
  background: none;
  padding: 8px 0 0;
  line-height: 1.3;
  border-radius: 0;
  color: var(--neutral-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--neutral-400);
}

/* ═══════════════════════════════════════════════════════
   PRODUCT CARDS & GRID
   ═══════════════════════════════════════════════════════ */
#product1 {
  text-align: center;
}

.pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

.pro {
  width: 23%;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 5px 5px 15px rgba(65, 62, 62, 0.06);
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
  margin: 10px 0;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}

.pro:hover {
  box-shadow: 5px 5px 20px rgba(67, 66, 66, 0.2);
}

.pro img {
  width: 100%;
  border-radius: 25px;
}

.pro .des {
  text-align: start;
  padding-bottom: 0px;
}

.pro .des span {
  color: var(--neutral-400);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.pro .des h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  padding-top: 8px;
  color: var(--neutral-800);
  font-weight: 400;
}

.pro .des .star {
  display: flex;
  gap: 2px;
  margin-top: 0.5rem;
}

.star i {
  font-size: 16px;
  color: rgb(243, 181, 25);
}

.pro .des h4 {
  padding: 7px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 10px;
  bottom: 20px;
  background-color: #e8f5e9;
  border-radius: 50px;
  color: var(--primary);
  font-weight: 500;
  border: 1px solid #c8e6c9;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pro a:hover .cart {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(10, 150, 140, 0.3);
}

/* ═══════════════════════════════════════════════════════
   PROMO BANNER — Full-width CTA
   ═══════════════════════════════════════════════════════ */
#banner {
  position: relative;
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #0A2A50 50%, var(--secondary) 100%);
  overflow: hidden;
  text-align: center;
}

#banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 150, 140, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

#banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 115, 90, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

#banner h4 {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

#banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}

#banner h2 span {
  color: var(--accent);
}

#banner button,
#banner .banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-button);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

#banner button:hover,
#banner .banner-btn:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   SMALL BANNERS — Lifestyle Grid
   ═══════════════════════════════════════════════════════ */
#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 48%;
  min-height: 300px;
  padding: 30px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 5px;
}

.banner-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.banner-box>* {
  position: relative;
  z-index: 2;
}

#sm-banner .banner-box {
  background-image: url('img/banner/b17.jpg');
}

#sm-banner .banner-box2 {
  background-image: url('img/banner/b10.jpg');
}

.banner-box h4 {
  color: white;
  font-size: 20px;
}

.banner-box h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: white;
}

.banner-box span {
  font-size: 14px;
  color: white;
}

.banner-box .white {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  margin-top: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.banner-box .white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
}

#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#banner3 .banner-box {
  position: relative;
  width: 31%;
  min-height: 250px;
  padding: 20px;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #333;
  opacity: 1 !important;
  visibility: visible !important;
  /* Fallback color to prevent white blocking */
}

#banner3 .banner-box>* {
  position: relative;
  z-index: 2;
}

#banner3 .banner-box::before {
  display: none;
}

#banner3 .banner-box:nth-child(1) {
  background-image: url('img/banner/b10.jpg');
}

#banner3 .banner-box:nth-child(2) {
  background-image: url('img/banner/footwear_v5.png') !important;
}

#banner3 .banner-box:nth-child(2) h2 {
  color: #333 !important;
  text-shadow: none !important;
}

#banner3 .banner-box:nth-child(2) h3 {
  color: #ec544e !important;
  text-shadow: none !important;
}

#banner3 .banner-box:nth-child(3),
#banner3 .banner-box.banner-box3 {
  background-image: url('img/banner/tshirt_v3.png') !important;
  background-position: center;
  background-size: cover;
}

#banner3 .banner-box h2 {
  font-family: 'DM Serif Display', serif;
  color: white;
  font-size: 22px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

#banner3 .banner-box h3 {
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER — Dark CTA Strip
   ═══════════════════════════════════════════════════════ */
#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: #041e42;
}

.newstext h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
}

.newstext p {
  font-size: 16px;
  color: #818ea0;
}

.newstext p span {
  color: #ffbd27;
}

.form {
  display: flex;
}

.form input {
  width: 350px;
  height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 16px;
}

.form button {
  background-color: #088178;
  color: white;
  font-size: 16px;
  padding: 0 20px;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .col .logo {
  width: auto;
  margin-bottom: 30px;
}

footer .col h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer .col p {
  font-size: 13px;
  color: #465b52;
  margin: 0 0 8px 0;
}

footer .col a {
  font-size: 13px;
  color: #465b52;
  display: block;
  margin-bottom: 10px;
}

footer .col a:hover {
  color: #088178;
}

.follow {
  margin-top: var(--space-lg);
}

.follow .icon {
  display: flex;
  gap: var(--space-sm);
  margin-top: 0.5rem;
}

.follow .icon i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--neutral-50);
  color: var(--neutral-500);
  font-size: 0.9rem;
  transition: all var(--duration-fast);
  cursor: pointer;
}

.follow .icon i:hover {
  background: var(--primary);
  color: var(--white);
}

footer .install .row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

footer .install .row img {
  width: 120px;
  height: auto;
  border-radius: var(--radius-sm);
}

footer .install img:last-child {
  width: 220px;
  margin-top: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
  padding: var(--space-md) clamp(1rem, 3vw, 3rem) 0;
  border-top: 1px solid var(--neutral-200);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--neutral-400);
}

/* ═══════════════════════════════════════════════════════
   PAGE HEADER — Inner Pages (Shop, Blog, Product)
   ═══════════════════════════════════════════════════════ */
#page-header {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  overflow: hidden;
  background: var(--secondary);
}

#page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 30, 66, 0.7) 0%, rgba(4, 30, 66, 0.9) 100%);
  z-index: 1;
}

#page-header.shop-header {
  background: url('img/banner/b1.jpg') center/cover no-repeat;
}

#page-header.blog-header {
  background: url('img/banner/b19.jpg') center/cover no-repeat;
}

#page-header.product-header {
  background: url('img/banner/b4.jpg') center/cover no-repeat;
}

#page-header>* {
  position: relative;
  z-index: 2;
}

#page-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

#page-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════ */
#pagination {
  padding: var(--space-2xl) 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

#pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  transition: all var(--duration-fast);
}

#pagination a:hover,
#pagination a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ═══════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════════ */
#prodetails {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) clamp(1rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.single-pro-img {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.single-pro-img #MainImg {
  width: 100%;
  border-radius: var(--radius-xl);
  background: var(--surface);
  aspect-ratio: 1;
  object-fit: cover;
}

.small-img-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.small-img-col {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast);
}

.small-img-col:hover,
.small-img-col.active {
  border-color: var(--primary);
}

.small-img-col .small-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.single-pro-details {
  padding-top: var(--space-md);
}

.single-pro-details h6 {
  font-size: 0.75rem;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.single-pro-details h4:first-of-type {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.single-pro-details h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.single-pro-details select {
  width: 100%;
  max-width: 200px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--neutral-700);
  background: var(--white);
  margin-bottom: var(--space-md);
  cursor: pointer;
  outline: none;
  transition: border-color var(--duration-fast);
}

.single-pro-details select:focus {
  border-color: var(--primary);
}

.single-pro-details input[type="number"] {
  width: 80px;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-align: center;
  color: var(--neutral-700);
  margin-bottom: var(--space-lg);
  outline: none;
  transition: border-color var(--duration-fast);
}

.single-pro-details input[type="number"]:focus {
  border-color: var(--primary);
}

.single-pro-details button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-button);
  margin-bottom: var(--space-xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.single-pro-details button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.single-pro-details h4:last-of-type {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--neutral-200);
}

.single-pro-details span {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════════════════ */
.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) clamp(1rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

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

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-body .date {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: var(--space-md);
  transition: gap var(--duration-fast);
}

.blog-card-body .read-more:hover {
  gap: 0.6rem;
}

/* ═══════════════════════════════════════════════════════
   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;
  }

  .fe-box,
  .pro,
  .blog-card,
  .hero-label,
  .hero-subtitle,
  .hero-cta,
  .hero-card {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .hero-title .line-inner {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-card-label {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .hero-content {
    order: 2;
  }

  .hero-cards-wrapper {
    order: 1;
    min-height: 350px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

  }

  .hero-cards-wrapper {
    min-height: 250px;
  }
}

/* Legacy duplicate blocks removed — modern styles defined above */

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
#page-header.about-header {
  background: url('img/banner/b19.jpg') center/cover no-repeat;
}

#about-head {
  display: flex;
  align-items: center;
  gap: 40px;
}

#about-head img {
  width: 40%;
  height: auto;
  border-radius: 20px;
}

#about-head div {
  padding-top: 30px;
}

#about-head div p {
  font-size: 16px;
  color: #465b52;
  line-height: 1.8;
}

#about-head h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--neutral-800);
}

#about-app {
  text-align: center;
  padding: 40px 80px;
}

#about-app h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--neutral-800);
}

#about-app h1 a {
  color: var(--primary);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
#contact-details {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

#contact-details .details {
  width: 55%;
}

#contact-details .details span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

#contact-details .details h2 {
  font-size: 24px;
  color: var(--neutral-800);
  margin-bottom: 20px;
  line-height: 1.4;
}

#contact-details .details h3 {
  font-size: 18px;
  color: var(--neutral-700);
  margin-bottom: 15px;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #465b52;
}

#contact-details .details li i {
  color: var(--primary);
  font-size: 18px;
}

#contact-details .map {
  width: 45%;
}

#contact-details .map iframe {
  width: 100%;
  border-radius: 20px;
}

#form-details {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

#form-details form {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#form-details form span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

#form-details form h2 {
  font-size: 24px;
  color: var(--neutral-800);
  margin-bottom: 5px;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

#form-details form input:focus,
#form-details form textarea:focus {
  border-color: var(--primary);
}

#form-details .people {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#form-details .people div {
  text-align: center;
}

#form-details .people div p {
  font-size: 13px;
  line-height: 1.6;
  color: #465b52;
  margin-top: 10px;
}

#form-details .people div p span {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--neutral-800);
  margin-bottom: 5px;
}

/* ═══════════════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════════════ */
#cart table {
  width: 100%;
  border-collapse: collapse;
}

#cart table thead td {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-600);
  padding: 18px 10px;
  border-bottom: 2px solid var(--neutral-200);
}

#cart table tbody td {
  padding: 18px 10px;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 14px;
  color: var(--neutral-700);
  vertical-align: middle;
}

#cart table tbody td a {
  color: #e74c3c;
  font-size: 16px;
}

#cart-add {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

#coupon {
  flex: 1;
}

#coupon h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--neutral-800);
}

#coupon div {
  display: flex;
  gap: 10px;
  align-items: center;
}

#subtotal {
  width: 350px;
  background: var(--neutral-50);
  border-radius: 12px;
  padding: 30px;
}

#subtotal h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--neutral-800);
}

#subtotal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

#subtotal table td {
  padding: 12px 0;
  font-size: 14px;
  color: var(--neutral-600);
  border-bottom: 1px solid var(--neutral-200);
}

#subtotal table td:last-child {
  text-align: right;
}

#subtotal button {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

#subtotal button:hover {
  background: var(--primary-dark);
}

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: rgb(228, 241, 253);
    box-shadow: 0 50px 60px rgba(0, 0, 0, 0.2);
    padding: 80px 0 0 30px;
    transition: 0.3s ease;
  }

  #navbar li {
    margin-bottom: 30px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: black;
    font-size: 24px;
    padding-left: 25px;
  }

  #navbar.active {
    right: 0px;
  }

  #close {
    display: flex;
    color: black;
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 26px;
    font-weight: 900;
  }

  #lg-bag {
    display: none;
  }

  #hero {
    height: 70vh;
    padding: 0 60px;
    background-position: top 30% right 30%;
  }

  #hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
  }

  #hero .hero-content {
    align-items: center;
    margin-left: 0;
  }

  #hero .hero-cards-wrapper {
    display: none;
  }

  #feature {
    justify-content: center;
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  .section-p1 {
    padding: 20px 20px;
  }

  .pro-container {
    justify-content: center;
  }

  .pro {
    width: 45%;
    min-width: 150px;
  }

  #header {
    padding: 15px 20px;
  }

  #about-head {
    flex-direction: column;
  }

  #about-head img {
    width: 100%;
  }

  #contact-details {
    flex-direction: column;
  }

  #contact-details .details,
  #contact-details .map {
    width: 100%;
  }

  #form-details {
    flex-direction: column;
  }

  #form-details form,
  #form-details .people {
    width: 100%;
  }

  #cart-add {
    flex-direction: column;
  }

  #subtotal {
    width: 100%;
  }
}