:root {
  --color-white: #ffffff;
  --color-soft-white: #f7f7f5;
  --color-charcoal: #222222;
  --color-graphite: #5a5a5a;
  --color-primary: #0086d1;
  --color-primary-dark: #005ea8;
  --color-olive: #4f5e46;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 18px 40px rgba(0,0,0,0.12);

  --radius-lg: 28px;
  --radius-md: 18px;

  --transition: all 0.3s ease;

  --container-width: 1400px;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-charcoal);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: 48px;
}

section {
  padding: 120px 0;
}

/* ANNOUNCEMENT */

.announcement-bar {
  background: var(--color-olive);
  color: var(--color-white);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.header-inner {
  min-height: 105px;
  max-width: 1480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 0;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 34px;
}

.logo {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 0;

  line-height: 1;

  min-width: 240px;
}


.logo img {
  height: 92px;
  width: auto;
  display: block;
}

.logo-text {
  text-align: center;
  margin-top: -16px;
}

.logo-text strong {
  font-family: 'Poppins', sans-serif;

  font-size: 1.15rem;

  line-height: 1;
}

.logo-text span {
  display: block;

  font-size: 0.78rem;

  color: var(--color-graphite);

  letter-spacing: 0.12px;

  line-height: 1.1;
}


.header-phone {
  font-weight: 600;

  font-size: 1.05rem;
  letter-spacing: -0.2px;
  color: var(--color-charcoal);
  white-space: nowrap;
}


.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-weight: 500;
  padding-bottom: 8px;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
  border-radius: 999px;
}

.main-nav a:hover {
  color: var(--color-primary-dark);
}

.main-nav a:hover::after {
  width: 100%;
}

.marketplace-links {
  display: flex;
  gap: 14px;
}

.marketplace-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 108px;

  padding: 12px 20px;

  border-radius: 999px;

  font-size: 0.92rem;

  font-weight: 600;

  transition: all 0.3s ease;
}

.marketplace-links a:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}


.marketplace-links a:first-child {
  background: #111111;

  color: #ffffff;

  border: 1px solid #111111;
}

.marketplace-links a:first-child:hover {
  background: #ffffff;

  color: #111111;

  transform: translateY(-2px);
}

.marketplace-links a:last-child {
  background:
    linear-gradient(
      to right,
      #e53238 0%,
      #e53238 22%,

      #0064d2 22%,
      #0064d2 56%,

      #f5af02 56%,
      #f5af02 78%,

      #86b817 78%,
      #86b817 100%
    );
  font-weight:700;
  color: #111111;

  border: none;

  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.marketplace-links a:last-child:hover {
  transform: translateY(-2px);

  filter: brightness(1.06);

  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}




/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 32px;

  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;

  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;

  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  background: #004b84;
  transform: translateY(-4px);

  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #ffffff;

  border-color: rgba(255,255,255,0.35);

  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);

  border-color: rgba(255,255,255,0.7);

  transform: translateY(-4px);

  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

/* HERO */

.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-background img {
  position: absolute; 
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  width: 100%;
  padding: 50px 80px;
}


.hero-inner {
  max-width: 760px;
  color: #ffffff;
  text-align: left;

}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 26px;
  max-width: 900px;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin-bottom: 42px;
  color: rgba(255,255,255,0.92);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: rgba(255,255,255,0.14);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: flex-start;
}

.hero-trust {
  margin-top: 40px;
  display: block;
  width: fit-content;
  background: rgba(255,255,255,0.14);
  padding: 14px 22px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 500;
}

@media (max-width: 768px) {

  .hero {
    min-height: 620px;
  }

  .hero-content {
    min-height: 620px;
    padding: 100px 24px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

}

/* =========================================
   BULK ORDER CALLOUT
========================================= */

.hero-content {
    position: relative;
}

.bulk-order-callout {
    position: absolute;

    top: 40px;
    right: 0;

    display: flex;
    align-items: center;
    gap: 18px;

    width: 340px;

    padding: 20px 22px;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.04)
        );

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border:
        1px solid rgba(255,255,255,0.14);

    box-shadow:
        0 18px 44px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.10);

    z-index: 10;

    overflow: hidden;
}

.bulk-order-callout::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.14),
            transparent 45%
        );

    pointer-events: none;
}

.bulk-callout-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    background:
        linear-gradient(
             135deg,
             rgba(20,40,60,0.72),
             rgba(10,25,40,0.72)
         );

    color: #f0c978;

    font-size: 1.25rem;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 10px 24px rgba(0,0,0,0.16);
}

.bulk-callout-content span {
    display: block;

    margin-bottom: 6px;

    font-size: 0.82rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #e0b35a;
}

.bulk-callout-content p {
    margin: 0;

    font-size: 0.95rem;

    line-height: 1.6;

    color: rgba(255,255,255,0.94);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .bulk-order-callout {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;

        margin-top: 40px;
    }

}

/* SECTION HEADINGS */

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-graphite);
}

/* CATEGORIES */

.categories {
  background: var(--color-soft-white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 620px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.55) 28%,
      rgba(0,0,0,0.10) 55%,
      rgba(0,0,0,0.00) 100%
    );

  display: flex;
  align-items: stretch;

  padding: 40px;
}

.category-overlay h3 {
  font-family: 'Poppins', sans-serif;
  max-width: 260px;
  color: #ffffff;

  font-size: clamp(2rem, 3vw, 2.8rem);

  line-height: 1;

  letter-spacing: -1px;

  margin-bottom: 14px;

  text-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.category-content {
  position: relative;
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 250px;

  z-index: 10;
}

.category-content p {
  color: #ffffff;

  opacity: 0.92;

  font-size: 1rem;

  line-height: 1.7;

  margin-top: 12px;
  margin-bottom: 24px;

  max-width: 320px;

  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;

  padding: 14px 24px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.32);

  background: rgba(255,255,255,0.18);

  color: #ffffff !important;

  font-size: 0.95rem;

  font-weight: 600;

  letter-spacing: 0.2px;

  text-decoration: none !important;

  backdrop-filter: blur(14px);

  box-shadow: 0 8px 24px rgba(0,0,0,0.22);

  transition: all 0.3s ease;

  z-index: 20;
}
.category-btn span {
  color: #ffffff;

  font-size: 1rem;

  line-height: 1;
}

.category-btn:hover {
  background: rgba(255,255,255,0.22);

  border-color: rgba(255,255,255,0.55);

  color: #ffffff !important;

  transform: translateY(-3px);

  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}

.category-btn:hover span {
  transform: translateX(3px);
}

.category-btn span {
  transition: transform 0.3s ease;
}


/* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-products {
  padding: 120px 0;

  background: #f7f5f2;
}

.section-heading {
  text-align: center;

  max-width: 760px;

  margin: 0 auto 90px;
}

.section-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  padding: 8px 18px;

  border-radius: 999px;

  background: rgba(91, 108, 76, 0.12);

  color: var(--color-olive);

  font-size: 0.82rem;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);

  line-height: 1.02;

  margin-bottom: 18px;
}

.section-heading p {
  font-size: 1.08rem;

  line-height: 1.7;

  color: var(--color-graphite);
}

.featured-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;
}

.featured-card {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  min-height: 620px;

  background: #000;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.featured-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.featured-image {
  position: absolute;

  inset: 0;
}

.featured-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 30px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.42) 45%,
      rgba(0,0,0,0.08) 100%
    );
}


.featured-overlay h3 {
  font-size: 1.75rem;

  line-height: 1;
  min-height: 120px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #fff;
}

.featured-overlay p {
  font-size: 0.96rem;

  line-height: 1.7;
  min-height: 110px;
  color: rgba(255,255,255,0.88);

  margin-bottom: 28px;
}

.featured-btn {
  display: inline-flex;

  align-items: center;
  margin-top: auto;
  justify-content: center;

  width: fit-content;

  min-width: 140px;

  padding: 16px 28px;

  border-radius: 999px;

  background: rgba(255,255,255,0.12);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);

  color: #fff !important;

  font-weight: 600;

  transition: all 0.3s ease;
}

.featured-btn:hover {
  background: #fff;

  color: #111 !important;

  transform: translateY(-2px);
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials {
  padding: 90px 0 120px;

  background: #ffffff;
}

.testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.testimonial-card {
  position: relative;

  padding: 48px 42px;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 28px;

  background: #faf8f5;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.testimonial-stars {
  margin-bottom: 24px;

  font-size: 1.1rem;

  letter-spacing: 3px;

  color: #b28a3c;
}

.testimonial-text {
  font-size: 1.04rem;

  line-height: 1.75;

  color: var(--color-graphite);

  margin-bottom: 36px;
}

.testimonial-meta {
  display: flex;

  flex-direction: column;

  gap: 6px;
}

.testimonial-meta strong {
  font-size: 1rem;

  color: #111111;
}

.testimonial-meta span {
  font-size: 0.92rem;

  color: rgba(0,0,0,0.58);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 1100px) {

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================
   ABOUT HOME
========================================= */

.about-home {
  padding: 120px 0;

  background: #ffffff;
}

/* HEADER */

.about-home-header {
  text-align: center;

  margin-bottom: 56px;
}

.about-home-header h2 {
  margin-top: 18px;

  font-size: clamp(2.9rem, 5vw, 4.8rem);

  line-height: 1;

  letter-spacing: -3px;
}

/* GRID */

.about-home-grid {
  display: grid;

  grid-template-columns: 1.08fr 0.92fr;

  gap: 36px;

  align-items: start;
}

/* IMAGE */

.about-home-image {
  position: relative;

  overflow: hidden;

  border-radius: 34px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.14);
}

.about-home-image img {
  width: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s ease;
}

.about-home-image:hover img {
  transform: scale(1.03);
}

/* CONTENT */

.about-home-content {
  padding-top: 18px;
}

.about-home-content p {
  margin-bottom: 28px;

  font-size: 1.08rem;

  line-height: 1.95;

  color: var(--color-graphite);
}

/* STATS */

.about-home-stats {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 44px;
}

.about-stat {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 26px;

  border-radius: 24px;

  background: #faf8f5;

  border: 1px solid rgba(0,0,0,0.04);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.about-stat:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

/* ICON */

.about-stat-icon {
  width: 68px;

  height: 68px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #ffffff;

  color: #b7862e;

  font-size: 1.45rem;

  box-shadow:
    0 8px 18px rgba(0,0,0,0.05);
}

/* TEXT */

.about-stat-text strong {
  display: block;

  margin-bottom: 6px;

  font-size: 0.86rem;

  text-transform: uppercase;

  letter-spacing: 1.3px;

  color: rgba(0,0,0,0.48);
}

.about-stat-text span {
  font-size: 1.08rem;

  font-weight: 600;

  color: #111111;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 1100px) {

  .about-home-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}

@media (max-width: 768px) {

  .about-home {
    padding: 90px 0;
  }

  .about-home-header {
    margin-bottom: 50px;
  }

  .about-home-header h2 {
    font-size: 2.9rem;

    line-height: 1;
  }

  .about-home-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    padding: 22px;
  }

}

/* GUIDES */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.guide-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.guide-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-content {
  padding: 26px;
}

.guide-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.guide-content h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 14px;
}

.guide-content p {
  margin-bottom: 18px;
  color: var(--color-graphite);
}

.guide-content a {
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* TRUST */

.trust-banner {
  background: linear-gradient(135deg, #1d3f5e, #2e678d);
  color: var(--color-white);
  text-align: center;
  padding: 80px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.trust-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

/* FOOTER */

/* =========================================
   PREMIUM FOOTER
========================================= */

.site-footer {
  margin-top: 120px;

  padding: 0 24px 24px;

  background: #f5f5f3;
}

.footer-shell {
  background:
    radial-gradient(
      circle at top,
      #102033 0%,
      #09111d 42%,
      #05080d 100%
    );

  border-radius: 22px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.05);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.22);
}

/* GRID */

.footer-grid {
  display: grid;

  grid-template-columns:
    1.45fr
    0.9fr
    1fr
    1fr;

  gap: 42px;

  padding: 64px 54px 54px;

  color: rgba(255,255,255,0.82);
}

/* BRAND */

.footer-brand {
  max-width: 320px;
}

.footer-branding {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 24px;
}

.footer-branding img {
  width: 74px;

  height: auto;

  flex-shrink: 0;
}

.footer-brand-text h3 {
  margin: 0;

  font-family: 'Poppins', sans-serif;

  font-size: 3rem;

  line-height: 0.88;

  font-weight: 700;

  letter-spacing: -2px;

  color: #ffffff;
}

.footer-brand-text span {
  display: block;

  margin-top: 8px;

  font-size: 1rem;

  letter-spacing: 7px;

  color: #d3a548;

  font-weight: 600;
}

.footer-divider {
  width: 42px;

  height: 2px;

  background: #d3a548;

  margin-bottom: 24px;
}

.footer-brand p {
  line-height: 1.8;

  margin-bottom: 24px;

  font-size: 1rem;

  color: rgba(255,255,255,0.78);
}

.footer-established {
  color: #d3a548;

  line-height: 1.8;

  font-size: 1rem;
}

/* COLUMNS */

.footer-column {
  border-left: 1px solid rgba(255,255,255,0.08);

  padding-left: 38px;
}

.footer-column h4,
.footer-column h5 {
  margin-bottom: 24px;

  font-size: 0.92rem;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: #d3a548;
}

/* LINKS */

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 18px;
}

.footer-column a {
  color: rgba(255,255,255,0.82);

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-column a:hover {
  color: #d3a548;

  transform: translateX(4px);
}

/* ICONS */

.footer-marketplaces,
.footer-socials {
  display: flex;

  gap: 14px;

  margin-bottom: 22px;
}

.footer-icon {
  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(211,165,72,0.65);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.footer-icon:hover {
  transform: translateY(-4px);

  background: rgba(211,165,72,0.08);

  border-color: #d3a548;
}

.footer-icon img {
  width: 26px;

  height: 26px;

  object-fit: contain;
}

.footer-marketplace-text {
  margin-bottom: 28px;

  line-height: 1.7;

  color: rgba(255,255,255,0.72);
}

/* BOTTOM */

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 24px 54px;

  border-top: 1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.7);
}

.footer-bottom-item {
  font-size: 0.94rem;
}

.footer-copyright {
  text-align: center;

  flex: 1;
}

/* MOBILE */

@media (max-width: 1100px) {

  .footer-grid {
    grid-template-columns:
      1fr
      1fr;

    gap: 44px;
  }

  .footer-column {
    border-left: none;

    padding-left: 0;
  }

}

@media (max-width: 768px) {

  .site-footer {
    padding: 0;
  }

  .footer-shell {
    border-radius: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    padding: 54px 34px 40px;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;

    padding: 24px 34px;
  }

  .footer-brand-text h3 {
    font-size: 2.4rem;
  }

}
```css id="footer-override-fix"
/* =========================================
   FOOTER FINAL OVERRIDE
========================================= */

.site-footer {
  background: #f5f5f3 !important;

  padding: 0 24px 24px !important;

  margin-top: 120px !important;
}

.footer-shell {
  background:
    radial-gradient(
      circle at top,
      #11243a 0%,
      #09111c 42%,
      #05080d 100%
    ) !important;

  border-radius: 22px !important;

  overflow: hidden !important;

  border: 1px solid rgba(255,255,255,0.06) !important;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.28) !important;
}

/* GRID */

.footer-grid {
  display: grid !important;

  grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr !important;

  gap: 44px !important;

  padding: 48px 54px 38px !important;

  align-items: start !important;
}

/* BRAND */

.footer-brand {
  max-width: 340px !important;
}

.footer-branding {
  display: flex !important;

  align-items: center !important;

  gap: 18px !important;
  margin-top: 6px;
  margin-bottom: 22px !important;
}

.footer-branding img {
  width: 76px !important;

  height: auto !important;

  flex-shrink: 0 !important;
}

.footer-brand-text h3 {
  margin: 0 !important;

  font-family: 'Poppins', sans-serif !important;

  font-size: 2.6rem !important;

  line-height: 0.88 !important;

  letter-spacing: -2px !important;

  font-weight: 700 !important;

  color: #ffffff !important;
}

.footer-brand-text span {
  display: block !important;

  margin-top: 8px !important;

  font-size: 1rem !important;

  letter-spacing: 7px !important;

  font-weight: 600 !important;

  color: #e0b35a !important;
}

.footer-divider {
  width: 42px !important;

  height: 2px !important;

  background: #e0b35a !important;

  margin: 26px 0 !important;
}

.footer-brand p {
  margin-bottom: 22px !important;

  line-height: 1.65 !important;

  font-size: 1rem !important;

  color: rgba(255,255,255,0.8) !important;
}

.footer-established {
  color: #e0b35a !important;

  font-size: 1rem !important;

  line-height: 1.8 !important;
}

/* COLUMNS */

.footer-column {
  border-left: 1px solid rgba(255,255,255,0.08) !important;

  padding-left: 38px !important;
}

.footer-column h4,
.footer-column h5 {
  margin-bottom: 24px !important;

  font-size: 0.92rem !important;

  letter-spacing: 1px !important;

  text-transform: uppercase !important;

  color: #e0b35a !important;
}
.footer-column h4,
.footer-column h5,
.footer-established,
.footer-divider {
    box-shadow: 0 0 12px rgba(216,168,76,0.08);
}
/* LINKS */

.footer-column ul {
  list-style: none !important;

  padding: 0 !important;

  margin: 0 !important;
}

.footer-column ul li {
  margin-bottom: 18px !important;
}

.footer-column ul li a {
  position: relative !important;

  display: inline-block !important;

  padding-right: 18px !important;

  color: rgba(255,255,255,0.82) !important;

  transition:
    color 0.3s ease,
    transform 0.3s ease !important;
}

.footer-column ul li a::after {
  content: "›" !important;

  position: absolute !important;

  right: 0 !important;

  top: 50% !important;

  transform: translateY(-50%) !important;

  color: #e0b35a !important;

  font-size: 1rem !important;
}

.footer-column ul li a:hover {
  color: #e0b35a !important;

  transform: translateX(4px) !important;
}

/* ICONS */

.footer-marketplaces,
.footer-socials {
  display: flex !important;

  gap: 14px !important;

  margin-bottom: 24px !important;
}

.footer-icon {
  width: 58px !important;

  height: 58px !important;

  display: flex !important;

  align-items: center !important;

  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 50% !important;

  border: 1px solid rgba(216,168,76,0.7) !important;
overflow: hidden !important;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.01)
    ) !important;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease !important;
}

.footer-icon:hover {
  transform: scale(1.08)) !important;

  background: rgba(216,168,76,0.08) !important;

  border-color: #e0b35a !important;
  box-shadow: 0 0 18px rgba(216,168,76,0.22);
}

.footer-icon img {
    width: 44px !important;
    height: 44px !important;

    transform: scale(1.45) !important;

    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.footer-marketplace-text {
  margin-bottom: 28px !important;
  max-width: 220px;
  line-height: 1.7 !important;

  color: rgba(255,255,255,0.72) !important;
}

/* BOTTOM */

.footer-bottom {
  display: flex !important;
  position: relative;
  align-items: center !important;

  justify-content: space-between !important;

  gap: 20px !important;

  padding: 26px 54px !important;

  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.footer-copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-bottom-item {
  display: flex !important;

  align-items: center !important;

  gap: 12px !important;

  color: rgba(255,255,255,0.72) !important;

  font-size: 0.94rem !important;
}

.footer-bottom-item::before {
    width: 50px !important;
    height: 50px !important;

    font-size: 1.45rem !important;

    font-weight: 600 !important;

    border-radius: 50% !important;

    border: 1px solid rgba(224,179,90,0.8) !important;

    color: #e0b35a !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex-shrink: 0 !important;
}

.footer-bottom-item:first-child::before {
    content: "\f095" !important;

    font-family: "Font Awesome 6 Free" !important;

    font-weight: 900 !important;
}

.footer-bottom-item:last-child::before {
    content: "\f3c5" !important;

    font-family: "Font Awesome 6 Free" !important;

    font-weight: 900 !important;

    font-size: 1.45rem !important;
}

.footer-copyright::before {
  display: none !important;
}

/* MOBILE */

@media (max-width: 1100px) {

  .footer-grid {
    grid-template-columns:
      1fr
      1fr !important;
  }

  .footer-column {
    border-left: none !important;

    padding-left: 0 !important;
  }

}

@media (max-width: 768px) {

  .site-footer {
    padding: 0 !important;
  }

  .footer-shell {
    border-radius: 0 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;

    padding: 54px 34px 40px !important;
  }

  .footer-bottom {
    flex-direction: column !important;

    text-align: center !important;
  }

}
```

/* RESPONSIVE */

@media (max-width: 1100px) {

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .about-grid {
    display: grid;  
    grid-template-columns: 1fr;
    gap: 60px;
  }

}


@media (max-width: 768px) {

  .container {
    padding-inline: 24px;
  }

  section {
    padding: 80px 0;
  }

  .header-inner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }

  .logo img {
    height: 64px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .about-grid,
  .products-grid,
  .guides-grid,
  .footer-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 88vh;
    padding: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.42)
      );
  }


  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
