/* =========================================
   FULL SOUL – Main Stylesheet
   Dark Fashion Editorial Theme
   ========================================= */

/* ===========================
   CUSTOM FONTS
=========================== */

@font-face {
    font-family: "Hoover";
    src: url("font/Hoover-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Hoover";
    src: url("font/Hoover-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Hoover";
    src: url("font/Hoover-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Clash Grotesk";
    src: url("font/ClashGrotesk-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Clash Grotesk";
    src: url("font/ClashGrotesk-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Clash Grotesk";
    src: url("font/ClashGrotesk-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

/* ---------- CSS Variables ---------- */
:root {
  --bg:           #080808;
  --bg-secondary: #0f0f0f;
  --bg-card:      #141414;
  --bg-card-hover:#1c1c1c;
  --orange:       #FF5500;
  --orange-light: #FF7733;
  --orange-glow:  rgba(255,85,0,0.18);
  --white:        #F0F0F0;
  --gray:         #888888;
  --gray-light:   #aaaaaa;
  --border:       rgba(255,85,0,0.25);
  --border-subtle:rgba(255,255,255,0.07);
  --font-display: 'Hoover', sans-serif;
  --font-sub:     'Clash Grotesk', sans-serif;
  --font-body:    'Clash Grotesk', sans-serif;
  --nav-h:        80px;
  --radius:       4px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ---------- Utility ---------- */
.section-pad    { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.container      { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-label  { font-family: var(--font-sub); font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section-title  { font-family: var(--font-display); font-size: clamp(38px, 5vw, 72px); line-height: 1; color: var(--white); }
.section-title span { color: var(--orange); }
.section-body   { font-size: 15px; color: var(--gray-light); line-height: 1.8; max-width: 560px; }

/* Divider line accent */
.accent-line {
  display: inline-block;
  width: 60px; height: 2px;
  background: var(--orange);
  margin-bottom: 20px;
  vertical-align: middle;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 280px; width: auto; object-fit: contain; }
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--orange);
  letter-spacing: 3px;
  display: inline-block;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a, .nav-links .dropdown-toggle {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
  cursor: pointer;
  background: none;
}
.nav-links a::after, .nav-links .dropdown-toggle::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links .dropdown-toggle:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links .dropdown-toggle:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  overflow: hidden;
}
.dropdown-menu.show {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-sub);
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), color var(--transition), padding var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--orange-glow); color: var(--orange); padding-left: 30px; }

/* Nav CTA */
.nav-cta {
  font-family: var(--font-sub);
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
  padding: 10px 24px;
  background: var(--orange);
  color: #000;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; width: 100%; height: calc(100vh - var(--nav-h));
  background: rgba(8,8,8,0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 998; border-top: 1px solid var(--border-subtle);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 42px; letter-spacing: 4px;
  color: var(--gray-light);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mobile-sub {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.mobile-menu .mobile-sub a {
  font-size: 22px;
  color: var(--gray);
}

/* =========================================
   HERO CAROUSEL
   ========================================= */
.hero-carousel {
    width: 100vw;       /* ✅ IMPORTANT */
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.carousel-slides {
  display: flex;
  height: 100%;
  width: 100%;                 /* ✅ ADD */
  transform: translateX(0);    /* ✅ ADD */
  will-change: transform;      /* ✅ ADD */
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
}
.carousel-slide {
  min-width: 100%; height: 100%;
  position: relative;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  display: block;              /* ✅ ADD */
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.6) 0%, transparent 50%, rgba(255,85,0,0.08) 100%);
}
.slide-content {
  position: absolute;
  bottom: 18%; left: 8%;
  max-width: 620px;
}
.slide-content .tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,85,0,0.12);
  border: 1px solid rgba(255,85,0,0.35);
  padding: 6px 16px; border-radius: 2px;
  margin-bottom: 20px;
}
.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.92;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 22px;
}
.slide-content h1 span { color: var(--orange); }
.slide-content p {
  font-size: 16px; color: var(--gray-light);
  margin-bottom: 36px; line-height: 1.7;
}
.slide-content .btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sub);
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
  padding: 16px 36px;
  background: var(--orange);
  color: #000;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.slide-content .btn-primary:hover { background: var(--orange-light); transform: translateX(4px); }
.slide-content .btn-primary svg { transition: transform var(--transition); }
.slide-content .btn-primary:hover svg { transform: translateX(4px); }



/* Carousel Controls */
.carousel-prev, .carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(8,8,8,0.5);
  color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}
.carousel-prev { left: 30px; }
.carousel-next { right: 30px; }
.carousel-prev:hover, .carousel-next:hover {
  background: var(--orange); border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.carousel-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 28px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all var(--transition);
}
.dot.active { background: var(--orange); width: 48px; }

/* =========================================
   ABOUT SECTION (Home)
   ========================================= */
.home-about {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative; overflow: hidden;
}
.home-about::before {
  content: 'SOUL';
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 280px;
  color: rgba(255,85,0,0.03); line-height: 1;
  pointer-events: none; user-select: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text-side { }
.about-img-side { position: relative; }
.about-img-side img {
  width: 100%; height: 560px;
  object-fit: cover; border-radius: var(--radius);
  filter: brightness(0.88);
}
.about-img-side::before {
  content: '';
  position: absolute; top: -16px; left: -16px;
  width: 80%; height: 80%;
  border: 1px solid var(--border);
  border-radius: var(--radius); z-index: 0;
  pointer-events: none;
}
.about-img-side img { position: relative; z-index: 1; }
.about-text-side .section-body { margin: 24px 0 36px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sub);
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
  padding: 14px 32px;
  border: 1px solid var(--orange);
  color: var(--orange);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--orange); color: #000; transform: translateY(-2px); }

/* =========================================
   CATEGORY CARDS
   ========================================= */
.categories { padding: 100px 0; background: var(--bg); }
.categories-header { text-align: center; margin-bottom: 60px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer; aspect-ratio: 3/4;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition);
}
.category-card:hover { border-color: var(--border); }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s;
  filter: brightness(0.5) saturate(0.8);
}
.category-card:hover img { transform: scale(1.06); filter: brightness(0.35) saturate(0.6); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  padding: 36px 24px; text-align: center;
  transition: background var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.98) 30%, rgba(8,8,8,0.5) 70%, rgba(0,0,0,0.2) 100%);
}
.category-num {
  font-family: var(--font-display);
  font-size: 60px; color: var(--orange);
  opacity: 0.15; position: absolute;
  top: 20px; right: 20px; line-height: 1;
}
.category-name {
  font-family: var(--font-display);
  font-size: 42px; letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
}
.category-count {
  font-family: var(--font-sub);
  font-size: 12px; letter-spacing: 3px;
  color: var(--gray); text-transform: uppercase;
  margin-bottom: 20px;
}
.category-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  transform: translateY(20px); opacity: 0;
  transition: all var(--transition);
}
.category-card:hover .category-arrow { transform: translateY(0); opacity: 1; }

/* =========================================
   PRODUCT HIGHLIGHT SECTION
   ========================================= */
.product-highlight { padding: 100px 0; background: var(--bg-secondary); }
.product-highlight-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,85,0,0.08);
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
  filter: brightness(0.85);
}
.product-card:hover .product-card-img img { transform: scale(1.05); filter: brightness(0.7); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-sub);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  padding: 5px 12px;
  border-radius: 2px;
}
.badge-new { background: var(--orange); color: #000; }
.badge-hot { background: #ff1a1a; color: #fff; }
.badge-sale { background: #1a6eff; color: #fff; }
.product-card-info { padding: 20px 20px 22px; }
.product-category {
  font-family: var(--font-sub);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-sub);
  font-size: 17px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: var(--font-sub);
  font-size: 18px; font-weight: 700;
  color: var(--white);
}
.product-price .original {
  font-size: 13px; color: var(--gray);
  text-decoration: line-through; margin-left: 8px; font-weight: 400;
}
.product-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange-glow); border: 1px solid var(--border);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-size: 16px;
}
.product-card:hover .product-btn { background: var(--orange); color: #000; }

.view-more-wrap { text-align: center; margin-top: 56px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sub);
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
  padding: 16px 40px;
  background: var(--orange);
  color: #000;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,85,0,0.3); }

/* =========================================
   BANNER SECTION
   ========================================= */
.banner-section {
  position: relative; overflow: hidden;
  height: 520px; display: flex; align-items: center;
}
.banner-section img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35);
}
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.85) 0%, rgba(255,85,0,0.12) 100%);
}
.banner-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  width: 100%;
}
.banner-content .banner-tag {
  font-family: var(--font-sub);
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.94; color: var(--white);
  margin-bottom: 28px;
}
.banner-content h2 span { color: var(--orange); }
.banner-content p {
  font-size: 15px; color: var(--gray-light);
  max-width: 460px; margin-bottom: 40px; line-height: 1.8;
}
.banner-stats {
  display: flex; gap: 48px; margin-top: 48px;
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 44px; color: var(--orange); line-height: 1;
}
.stat-item .label {
  font-family: var(--font-sub);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-top: 4px;
}

/* =========================================
   CONTACT FORM (Home & Contact Page)
   ========================================= */
.contact-section { padding: 100px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info-side .section-body { margin: 24px 0 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 18px;
  background: var(--orange-glow);
}
.contact-detail-text .label {
  font-family: var(--font-sub);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 2px;
}
.contact-detail-text .value {
  font-size: 15px; color: var(--white); font-weight: 500;
}
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light); font-size: 16px;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-sub);
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,85,0,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group textarea { height: 140px; }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sub);
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700;
  padding: 16px 40px;
  background: var(--orange); color: #000;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}
.btn-submit:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,85,0,0.3); }
.form-status {
  padding: 12px 18px; border-radius: var(--radius);
  font-family: var(--font-sub); font-size: 13px; letter-spacing: 1px;
  display: none;
}
.form-status.success { background: rgba(0,200,80,0.1); border: 1px solid rgba(0,200,80,0.3); color: #00c850; display: block; }
.form-status.error { background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.3); color: #ff4444; display: block; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #040404;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 36px; color: var(--orange);
  letter-spacing: 4px; display: block;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.8; max-width: 260px; margin-bottom: 28px; }
.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px; color: var(--gray);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-bottom .footer-socials { display: flex; gap: 16px; }
.footer-bottom .footer-socials a {
  font-size: 14px; color: var(--gray);
  transition: color var(--transition);
}
.footer-bottom .footer-socials a:hover { color: var(--orange); }



/* =========================================
   whatsap float
   ========================================= */

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}



/* =========================================
   PAGE HERO
   ========================================= */
.page-hero {
  position: relative; height: 60vh; min-height: 400px;
  display: flex; align-items: center;
  overflow: hidden; margin-top: var(--nav-h);
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.3);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.8) 0%, rgba(255,85,0,0.08) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.page-hero-content .breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sub);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 18px;
}
.page-hero-content .breadcrumb a { color: var(--orange); }
.page-hero-content .breadcrumb span { color: var(--gray); }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.9; color: var(--white);
}
.page-hero-content h1 span { color: var(--orange); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-story { padding: 120px 0; background: var(--bg); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-img { position: relative; }
.about-story-img img { width: 100%; height: 600px; object-fit: cover; border-radius: var(--radius); filter: brightness(0.9); }
.img-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  z-index: -1;
}

.vision-mission { padding: 100px 0; background: var(--bg-secondary); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.vm-card {
  padding: 60px;
  position: relative; overflow: hidden;
  background: var(--bg-card);
}
.vm-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}
.vm-card:first-child { border-right: 1px solid var(--border-subtle); }
.vm-icon { font-size: 40px; margin-bottom: 24px; }
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 44px; color: var(--white);
  margin-bottom: 20px;
}
.vm-card p { font-size: 15px; color: var(--gray-light); line-height: 1.9; }

.about-banner { position: relative; height: 400px; display: flex; align-items: center; overflow: hidden; }
.about-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25); }
.about-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,8,0.8) 0%, transparent 100%); }
.about-banner-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 24px; text-align: center; width: 100%; }
.about-banner-content h2 { font-family: var(--font-display); font-size: clamp(44px, 6vw, 76px); color: var(--white); margin-bottom: 16px; }
.about-banner-content h2 span { color: var(--orange); }
.about-banner-content p { font-size: 16px; color: var(--gray-light); max-width: 500px; margin: 0 auto; }

/* =========================================
   PRODUCTS PAGE
   ========================================= */
.products-section { padding: 80px 0; background: var(--bg); }
.products-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  font-family: var(--font-sub);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  padding: 10px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--gray);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  border-color: var(--orange); color: var(--orange);
  background: var(--orange-glow);
}
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-full-section { padding: 100px 0; background: var(--bg); }
.map-section { height: 440px; margin-top: 0; overflow: hidden; border-top: 1px solid var(--border-subtle); }
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.7) invert(0.9) contrast(0.85); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fade-up  { animation: fadeUp 0.7s ease forwards; }
.animate-fade-in  { animation: fadeIn 0.6s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.35s; }
.anim-delay-4 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.15s; }
.stagger > *:nth-child(3) { transition-delay: 0.25s; }
.stagger > *:nth-child(4) { transition-delay: 0.35s; }
.stagger > *:nth-child(5) { transition-delay: 0.45s; }
.stagger > *:nth-child(6) { transition-delay: 0.55s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .about-grid, .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-side img, .about-story-img img { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card:first-child { border-right: none; border-bottom: 1px solid var(--border-subtle); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .category-grid { grid-template-columns: 1fr; gap: 18px; }
  .category-card { aspect-ratio: 16/9; }
  .product-grid, .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-highlight-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .banner-stats { flex-wrap: wrap; gap: 28px; }
  .slide-content { left: 5%; bottom: 15%; }
  .carousel-prev, .carousel-next { width: 40px; height: 40px; font-size: 16px; }
  .carousel-prev { left: 16px; }
  .carousel-next { right: 16px; }
  .vm-card { padding: 40px 32px; }
  .about-img-side::before { display: none; }
  .img-accent { display: none; }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }

    

    .hamburger{
        display:flex;
    }
}

@media (max-width: 480px) {
  .product-grid, .products-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 4/3; }
}
