/* ===========================================
   SCOUT BAGS — STYLE.CSS
   Single shared stylesheet for all pages
   =========================================== */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap");

/* === 1. CSS VARIABLES === */

:root {
  --red: #d0201a;
  --red-dark: #a8180f;
  --red-light: #fff0ef;
  --black: #111111;
  --black-soft: #222222;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --grey-light: #eeeeee;
  --grey-mid: #cccccc;
  --grey-text: #666666;
  --font-display: "Bebas Neue", cursive;
  --font-body: "DM Sans", sans-serif;
  --nav-height: 75px;
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius: 10px;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.14);
  --shadow-red: 0 6px 24px rgba(208, 32, 26, 0.35);
  --transition: all 0.28s ease;
}

/* === 2. RESET === */

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

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

/* === 3. UTILITY === */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-tag-inv {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff7a75;
  background: rgba(208, 32, 26, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--black);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--grey-text);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 12px;
}

/* === 4. BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.hero .btn-outline {
  background: var(--white);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* === 5. NAVIGATION === */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 82px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black-soft);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-order-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -10px;
  right: -14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === 6. PAGE OFFSET === */

.page-content {
  padding-top: var(--nav-height);
}

/* === 7. HERO (HOME) === */

.hero {
  position: relative;
  min-height: 600px;
  background: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 280px);
  color: rgba(0, 0, 0, 0.032);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeSlideUp 0.75s ease both;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff7a75;
  background: rgba(208, 32, 26, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 20px;
}

.hero-title .hero-accent {
  color: var(--red);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideUp 0.75s 0.15s ease both;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 68%;
  height: 68%;
  background: none;
  border-radius: 50%;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.14));
  animation: float 7s ease-in-out infinite;
}

/* === 8. BRAND STRIP === */

.brand-strip {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
}

.brand-strip-track {
  display: flex;
  gap: 0;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.brand-strip-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  padding: 0 36px;
  white-space: nowrap;
}

.brand-strip-item::after {
  content: "✦";
  margin-left: 36px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
}

/* === 9. FEATURED PRODUCTS === */

.featured-products {
  padding: 100px 0;
  background: var(--white);
}

.featured-header {
  text-align: center;
  margin-bottom: 56px;
}

.featured-header .section-subtitle {
  margin: 12px auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.featured-footer {
  text-align: center;
  margin-top: 48px;
}

/* === 10. PRODUCT CARDS === */

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-image {
  position: relative;
  background: var(--white);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card:hover .card-overlay {
  transform: translateY(0);
}

.btn-add-order {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-add-order:hover {
  background: var(--red);
  color: var(--white);
}

.card-info {
  padding: 18px 20px 22px;
}

.card-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 5px;
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1.2;
}

.card-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.card-price {
  display: inline-block;
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-description {
  font-size: 0.8rem;
  color: var(--grey-text);
  line-height: 1.65;
  margin-top: 10px;
}

/* === 11. CAROUSEL === */

.card-carousel {
  position: relative;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.carousel-slide.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  color: var(--black);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-card:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--red);
  color: var(--white);
}

.carousel-prev {
  left: 8px;
}
.carousel-next {
  right: 8px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grey-mid);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--red);
}

/* === 12. WHY SCOUT === */

.why-scout {
  padding: 100px 0;
  background: var(--black-soft);
}

.why-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-header .section-title {
  color: var(--white);
}

.why-header .section-subtitle {
  color: rgba(255, 255, 255, 0.45);
  margin: 12px auto 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.07);
}

.why-item {
  background: #2a2a2a;
  padding: 52px 32px;
  text-align: center;
  transition: background 0.3s;
}

.why-item:hover {
  background: #333333;
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* === 12. CTA BANNER === */

.cta-banner {
  padding: 100px 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "SCOUT";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 220px;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-title {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-inner > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.97rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === 13. FOOTER === */

.footer {
  background: linear-gradient(
    to right,
    var(--white) max(30.77vw - 35px, 50vw - 266px),
    var(--black-soft) max(30.77vw - 35px, 50vw - 266px)
  );
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo img {
  height: 98px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.84rem;
  color: var(--grey-text);
  line-height: 1.7;
  max-width: 230px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  align-items: flex-start;
  line-height: 1.55;
}

.footer-contact-item .footer-icon {
  color: var(--red);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  background: linear-gradient(
    to right,
    var(--white) max(30.77vw - 35px, 50vw - 266px),
    var(--black-soft) max(30.77vw - 35px, 50vw - 266px)
  );
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === 14. PAGE HERO (INNER PAGES) === */

.page-hero {
  background: var(--black);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  display: none;
}

.page-hero--about {
  background: url('../images/hero_banner_image.webp') center/cover no-repeat;
}

.page-hero--products {
  background: url('../images/products_hero_banner.webp') center 20%/cover no-repeat;
}

.page-hero--contact {
  background: url('../images/contact_hero_banner.webp') center/cover no-repeat;
}

.page-hero--order {
  background: url('../images/order_hero_banner.webp') center/cover no-repeat;
}

.page-hero--about::before,
.page-hero--products::before,
.page-hero--contact::before,
.page-hero--order::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
}

.page-hero--about .page-hero-content,
.page-hero--products .page-hero-content,
.page-hero--contact .page-hero-content,
.page-hero--order .page-hero-content {
  position: relative;
  z-index: 1;
}

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

.page-hero-content .section-title {
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero-content > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.96rem;
  max-width: 500px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

/* === 15. ABOUT PAGE === */

.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap {
  position: relative;
  padding-right: 14px;
  padding-bottom: 14px;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  right: 0;
  bottom: 0;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  object-fit: contain;
  background: var(--off-white);
}

.about-text .section-title {
  margin-bottom: 22px;
}

.about-text p {
  font-size: 0.93rem;
  color: var(--grey-text);
  line-height: 1.82;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black);
  margin-top: 50px;
  overflow: hidden;
}

.stat-item {
  background: var(--black-soft);
  padding: 44px 20px;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover {
  background: #2a2a2a;
}

.stat-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* === TIMELINE === */

.timeline-section {
  padding: 100px 0;
  background: var(--white);
}

.timeline-header {
  text-align: center;
  margin-bottom: 64px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--grey-light);
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 16px;
  line-height: 1;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  z-index: 1;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.84rem;
  color: var(--grey-text);
  line-height: 1.65;
}

.leadership-section {
  padding: 80px 0;
  background: var(--black-soft);
}

.leadership-header .section-title {
  color: var(--white);
}

.leadership-header .section-tag {
  color: #ff7a75;
  background: rgba(208, 32, 26, 0.2);
}

.leadership-header {
  text-align: center;
  margin-bottom: 48px;
}

.leadership-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.leader-icon {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  color: var(--white);
}

.leader-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.leader-title {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

.leader-info p {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.75;
}

/* === 16. PRODUCTS PAGE === */

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

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  color: var(--grey-text);
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--black);
  color: var(--black);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card.hidden {
  display: none;
}

.coming-soon-card {
  background: var(--off-white);
  border-radius: var(--radius);
  border: 2px dashed var(--grey-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 40px;
  text-align: center;
}

.coming-soon-card .cs-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.coming-soon-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--black);
}

.coming-soon-card p {
  font-size: 0.84rem;
  color: var(--grey-text);
}

/* === 17. CONTACT PAGE === */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.25s;
}

.info-card:hover {
  box-shadow: var(--shadow);
}

.info-icon {
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.info-card p {
  font-size: 0.86rem;
  color: var(--grey-text);
  line-height: 1.6;
}

.info-card a {
  color: var(--grey-text);
  transition: color 0.2s;
}

.info-card a:hover {
  color: var(--red);
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 48px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black-soft);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* === 18. ORDER PAGE === */

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

.order-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.order-items-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.order-item:hover {
  border-color: var(--grey-light);
}

.order-item-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px;
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.order-item-category {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.order-qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--grey-mid);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font-body);
}

.qty-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.qty-value {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 22px;
  text-align: center;
}

.btn-remove-item {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--grey-mid);
  transition: color 0.2s;
  padding: 4px;
  line-height: 1;
}

.btn-remove-item:hover {
  color: var(--red);
}

.empty-order {
  text-align: center;
  padding: 72px 40px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 2px dashed var(--grey-mid);
}

.empty-order .empty-icon {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 18px;
}

.empty-order h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.empty-order p {
  font-size: 0.9rem;
  color: var(--grey-text);
  margin-bottom: 24px;
}

.payment-panel {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.qr-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 38px;
  text-align: center;
  border: 1px solid var(--grey-light);
}

.qr-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.qr-subtitle {
  font-size: 0.84rem;
  color: var(--grey-text);
  margin-bottom: 26px;
}

.qr-box {
  width: 200px;
  height: 200px;
  margin: 0 auto 22px;
  border: 2px dashed var(--grey-mid);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.qr-placeholder-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
  line-height: 1.6;
}

.qr-instructions {
  font-size: 0.84rem;
  color: var(--grey-text);
  line-height: 1.65;
  margin-bottom: 18px;
  text-align: left;
}

.qr-divider {
  height: 1px;
  background: var(--grey-light);
  margin: 20px 0;
}

.qr-contact-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
}

.qr-contact-box p {
  font-size: 0.84rem;
  color: var(--grey-text);
  margin-bottom: 5px;
  line-height: 1.5;
}

.qr-contact-box strong {
  color: var(--black);
}

.order-count-note {
  font-size: 0.8rem;
  color: var(--grey-text);
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-light);
}

.order-count-note span {
  font-weight: 700;
  color: var(--red);
}

/* === 19. TOAST NOTIFICATION === */

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--black-soft);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
}

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

.toast-icon {
  color: #4ade80;
  font-size: 1rem;
  font-weight: 700;
}

.qr-hours-note {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--grey-mid);
}

/* === 20. ANIMATIONS === */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* === 21. RESPONSIVE === */

@media (max-width: 1024px) {
  .products-grid,
  .products-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer {
    background: var(--black-soft);
  }
  .footer-bottom {
    background: var(--black-soft);
  }
  .footer-tagline {
    color: rgba(255, 255, 255, 0.38);
  }
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
  }
  .about-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid var(--grey-light);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px 24px 60px;
  }

  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-height: 300px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrap {
    padding-right: 0;
    padding-bottom: 0;
  }
  .about-image-wrap::before {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .payment-panel {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .cta-banner::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-btn {
    opacity: 1;
  }

  .card-overlay {
    transform: translateY(0);
  }

  .footer-brand {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
  }

  .footer-tagline {
    color: var(--grey-text);
  }
}

@media (max-width: 480px) {
  .products-grid,
  .products-full-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .timeline::before {
    display: none;
  }

  .order-item-img {
    width: 80px;
    height: 80px;
  }
}

/* === 22. VARIANT SELECTOR === */

.variant-selector {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.variant-thumb {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--grey-mid);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  background: var(--off-white);
}

.variant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.variant-thumb:hover {
  border-color: var(--black);
}

.variant-thumb.active {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

/* === 23. VIEW BUTTON === */

.btn-view {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

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

/* === 24. LIGHTBOX === */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 500px;
  width: 88vw;
  text-align: center;
}

.lightbox-img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  padding: 32px;
  display: block;
}

.lightbox-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 20px;
}

.lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.lightbox-dot.active {
  background: var(--white);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9999;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9999;
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.26);
}

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

.lightbox-prev.lb-hidden,
.lightbox-next.lb-hidden {
  display: none;
}
