/* ============================================================
   UPCYCLE AFRICA – Shared Global Stylesheet
   Applied to all pages for visual consistency
   ============================================================ */

html {
    overflow-y: scroll !important;
    scroll-behavior: smooth;
}

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

:root {
    --dark-blue: #050550;
    --green: #078e0d;
    --yellow: #dce614;
    --light-bg: #f5f8fa;
    --white: #ffffff;
    --gray: #4a5568;
    --font-head: 'Satoshi', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius-card: 32px;
    --border-radius-btn: 60px;
    --shadow-sm: 0 10px 30px -8px rgba(0, 40, 60, 0.1);
    --shadow-lg: 0 30px 60px -15px rgba(5, 5, 80, 0.25);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --brand-green: #078e0d;
    --scroll-speed: 20s;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --border-color: rgba(0, 0, 0, 0.08);
}

body {
    font-family: var(--font-body);
    color: var(--dark-blue);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    /* Base font size */
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

/* aspect ratios to prevent layout shift */
.logo-img {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

.hero-slide {
    aspect-ratio: 16/9;
}

.product-img {
    aspect-ratio: 1/1;
}

.program-img img {
    aspect-ratio: 16/9;
}

.blog-img-box img {
    aspect-ratio: 16/9;
}

.about-image img {
    aspect-ratio: 4/3;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   BUTTONS – Professional padding and consistent look
   ============================================================ */
.btn,
button,
.nav-cta,
.hero-btn,
.about-btn,
.cta-btn-primary,
.cta-btn-secondary,
.catalog-btn,
.checkout-btn,
.add-product {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

a.btn,
.hero-btn,
.about-btn,
.cta-btn-primary,
.cta-btn-secondary {
    padding: 1rem 2.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition);
    border: 3px solid white;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-5px);
    background: #20b859;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--dark-blue);
    color: white;
    padding: 0.7rem 0;
}

.top-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.95rem;
}

.top-contact i {
    color: var(--yellow);
    width: 1.2rem;
}

.top-contact a {
    color: white;
    text-decoration: none;
}

.top-social a {
    color: white;
    margin-left: 1rem;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.top-social a.no-gap {
    margin-left: 0.2rem;
}

.top-social a:hover {
    opacity: 1;
    color: var(--yellow);
    scale: 1.1;
}

/* ============================================================
   MAIN HEADER & NAV
   ============================================================ */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    gap: 2rem;
}

.header-logo {
    width: 250px;
    flex-shrink: 0;
}

.header-actions {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: 180px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    justify-content: center;
}



.nav-item {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--dark-blue);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a:hover {
    border-bottom-color: var(--yellow);
    color: var(--green);
}

.nav-cta-item {
    margin-left: auto;
    /* Pushes 'Shop Now' to the right boundary */
}

.nav-cta {
    background: var(--dark-blue);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 18px -6px rgba(5, 5, 80, 0.25);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.cart-icon-wrap {
    position: relative;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--dark-blue);
    z-index: 10;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--yellow);
    color: var(--dark-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 40px;
    min-width: 22px;
}

/* ============================================================
   DROPDOWN MENUS
   ============================================================ */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 1.2rem;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    transform: translateY(6px);
    border-top: 4px solid var(--yellow);
    pointer-events: none;
    border-radius: 0 0 20px 20px;
    min-width: 280px;
}

.nav-item:hover .simple-dropdown,
.nav-item:focus-within .simple-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.simple-dropdown ul {
    list-style: none;
}

.simple-dropdown ul li {
    margin-bottom: 0.5rem;
}

.simple-dropdown ul li:last-child {
    margin-bottom: 0;
}

.simple-dropdown ul li a {
    color: #0a1a4a;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: none !important;
    background-color: #f9f9fc;
    border-radius: 10px;
    padding: 0.5rem 1rem;
}

.simple-dropdown ul li a:hover {
    background: var(--yellow);
    color: var(--dark-blue);
    transform: translateX(4px);
}

.simple-dropdown ul li a i {
    color: var(--green);
    width: 1.2rem;
    flex-shrink: 0;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-blue);
    cursor: pointer;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 80, 0.96);
    z-index: 1000;
    padding: 2rem;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 2rem;
}

.mobile-nav-links li {
    margin-bottom: 1.2rem;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-links .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
}

.mobile-submenu {
    display: none;
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.mobile-submenu.show {
    display: block;
}

.mobile-submenu li {
    margin-bottom: 0.8rem;
}

.mobile-submenu a {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-swiper {
    width: 100%;
    height: 90vh;
    min-height: 600px;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark-blue);
    opacity: 0.7;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: white;
    text-align: center;
    padding: 0 2rem;
}

.hero-step {
    display: inline-block;
    background: rgba(220, 230, 20, 0.15);
    backdrop-filter: blur(4px);
    border-left: 4px solid var(--yellow);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-radius: 0 40px 40px 0;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-btn {
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 1rem 2.8rem;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 20px 30px -10px rgba(5, 5, 80, 0.4);
    transition: var(--transition);
    font-size: 1rem;
}

.hero-btn:hover {
    background: white;
    color: var(--dark-blue);
    transform: translateY(-2px);
}

/* Swiper shared */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--yellow);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--yellow);
    background: rgba(5, 5, 80, 0.3);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--dark-blue);
    color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================================================
   FEATURED / MEDIA LOGOS SCROLL
   ============================================================ */
.featured-section {
    background: #fff;
    padding: 1.5rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2rem;
    /* space before video section */
}

.featured-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.featured-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.4rem;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
    padding-right: 3rem;
    z-index: 2;
    position: relative;
    letter-spacing: -1px;
    white-space: nowrap;
}

.logo-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos var(--scroll-speed) linear infinite;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
}

.logo-group img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-group img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   VIDEOS SECTION
   ============================================================ */
.gm-video-section-wrapper {
    position: relative;
    padding: 2rem 0 0;
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gm-blue-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #050550;
    z-index: 1;
}

.gm-shape-divider {
    position: absolute;
    bottom: 180px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    color: #050550;
}

.gm-shape-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    fill: #050550;
}

.gm-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 100px 20px;
    position: relative;
    z-index: 2;
}

.gm-video-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 0.5px solid #ffffff;
    /* thinner white outline */
    background: #000;
    transition: transform 0.3s ease;
}

.gm-video-card:hover {
    transform: translateY(-8px);
}

.gm-video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
    padding: 3rem 0 3rem;
    /* reduced top space */
    background: #050550;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
}

.section-sub {
    text-align: center;
    color: var(--gray);
    max-width: 780px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.products-section .section-title,
.products-section .section-sub {
    color: white !important;
}

/* Product swiper wrapper – allows nav buttons to be OUTSIDE the slider */
.product-swiper-wrapper {
    position: relative;
    padding: 0 3.5rem;
    /* side space for nav buttons */
}

.product-swiper {
    padding: 1.5rem 0 3rem;
    /* reduced top, bottom space for dots */
}

.product-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid #eef2ee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 1.2rem;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.product-desc {
    color: var(--gray);
    margin: 0.4rem 0 0.8rem;
    line-height: 1.5;
    font-size: 0.92rem;
    flex: 1;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
    margin: 0.4rem 0;
}

.add-product {
    background: var(--dark-blue);
    color: white;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    font-size: 0.95rem;
}

.add-product:hover {
    background: var(--green);
}

/* Product slider nav – OUTSIDE swiper, overlapping the sides */
.swiper-button-product-next,
.swiper-button-product-prev {
    color: var(--dark-blue);
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    opacity: 1;
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-product-next {
    right: 0;
}

.swiper-button-product-prev {
    left: 0;
}

.swiper-button-product-next:hover,
.swiper-button-product-prev:hover {
    background: var(--yellow);
    color: var(--dark-blue);
}

.swiper-button-product-next::after,
.swiper-button-product-prev::after {
    font-size: 1rem;
    font-weight: 800;
}

/* Pagination dots closer to slider */
.product-swiper .swiper-pagination {
    bottom: 0.4rem;
}

/* ============================================================
   CATALOG / DOWNLOAD BUTTON – same style as nav-cta
   ============================================================ */
.catalog-btn-wrapper {
    text-align: center;
    margin: 1rem 0 2.5rem;
}

.catalog-btn {
    background: var(--dark-blue);
    color: white;
    font-weight: 700;
    padding: 0.9rem 2.8rem;
    border-radius: var(--border-radius-btn);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px -6px rgba(5, 5, 80, 0.35);
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}

.catalog-btn:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(7, 142, 13, 0.4);
}

/* ============================================================
   IMPACT STRIP
   ============================================================ */
.impact-strip {
    background: var(--light-bg);
    padding: 4rem 0;
}

.impact-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.impact-num {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
    font-family: var(--font-head);
}

.impact-label {
    font-size: 1rem;
    color: var(--gray);
    max-width: 180px;
    margin: 0.4rem auto 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-side {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.2rem;
}

.about-text p {
    margin: 0.8rem 0;
    color: var(--gray);
    line-height: 1.7;
}

.about-btn {
    background: var(--dark-blue);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    transition: var(--transition);
    font-size: 0.98rem;
}

.about-btn:hover {
    background: var(--green);
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-height: 450px;
    overflow: hidden;
    border-radius: 40px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   CRITICAL ISSUES
   ============================================================ */
.critical-issues {
    background: var(--dark-blue);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.issue-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 36px 28px;
    transition: var(--transition);
}

.issue-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 36px;
    color: var(--dark-blue);
}

.badge {
    background: var(--yellow);
    color: var(--dark-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 14px;
}

/* ============================================================
   PROGRAMS GRID
   ============================================================ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 2.5rem auto;
}

.program-card-wide {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef2ee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card-wide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}

.program-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-content {
    padding: 1.5rem 2rem;
}

.program-label {
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    margin-bottom: 0.4rem;
    display: block;
}

.program-content h3 {
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
}

.program-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================================
   REACH / MAP
   ============================================================ */
.reach-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.reach-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.map-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.map-wrapper img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.map-badge {
    position: absolute;
    top: 20%;
    left: 0;
    background: var(--green);
    color: white;
    padding: 8px 18px;
    border-radius: 0 40px 40px 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.country-stats {
    flex: 1;
    min-width: 260px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.country-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.country-card .flag-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    object-fit: cover;
}

.country-card h4 {
    color: var(--dark-blue);
    font-size: 1rem;
}

.country-card p {
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================================
   AWARDS / FLIP CARDS
   ============================================================ */
.awards-section {
    padding: 5rem 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.flip-card {
    background: transparent;
    perspective: 2000px;
    height: 255px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 28px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-front {
    background: var(--light-bg);
    color: var(--dark-blue);
}

.flip-front .award-icon {
    font-size: 2.8rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.flip-front h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.flip-back {
    background: var(--dark-blue);
    color: white;
    transform: rotateY(180deg);
    border: 2px solid var(--yellow);
}

.flip-back p {
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
}

.flip-back a {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================================
   BLOG / STORIES
   ============================================================ */
.stories-section {
    background: var(--light-bg);
    padding: 5rem 0 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2.5rem auto;
}

.blog-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-img-box {
    position: relative;
    height: 220px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--green);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
}

.blog-content {
    padding: 2rem 1.5rem 1.5rem;
}

.blog-cat {
    color: var(--gray);
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.7rem;
}

.blog-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.93rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--dark-blue);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: white;
    margin-bottom: 1.2rem;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 0.95rem 2.6rem;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-primary:hover {
    background: white;
    transform: translateY(-3px);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 0.95rem 2.6rem;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--yellow);
    transition: var(--transition);
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-secondary:hover {
    background: var(--yellow);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
    background: white;
    padding: 4rem 0;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

.partners-grid img {
    height: 55px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partners-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.mega-footer {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--yellow);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    font-size: 0.93rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: var(--transition);
    font-size: 0.93rem;
}

.footer-col a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.social-links a {
    font-size: 1.6rem;
    margin-right: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.social-links a.no-gap {
    margin-right: 0.2rem;
}

.social-links a:hover {
    color: var(--yellow);
    transform: translateY(-3px);
}

.social-links a .fa-tiktok:hover,
.top-social a .fa-tiktok:hover {
    color: #ff0050;
    /* TikTok characteristic color */
}

.visitor-counter {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.4rem;
    text-align: center;
    border: 1px solid var(--yellow);
}

.visitor-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    font-family: var(--font-head);
}

.visitor-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.4rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 460px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    box-shadow: -20px 0 50px rgba(0, 20, 0, 0.25);
    z-index: 200;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-radius: 40px 0 0 40px;
    overflow: hidden;
}

.cart-sidebar.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-header {
    background: var(--dark-blue);
    color: white;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f9fbf9;
}

.cart-item {
    display: flex;
    gap: 1.2rem;
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f7f0;
    align-items: center;
    transition: var(--transition);
}

.cart-item:hover {
    transform: translateX(-5px);
    border-color: var(--green);
}

.cart-item-img {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-item-title {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.05rem;
    line-height: 1.2;
}

.cart-price {
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
}

.qty-controls {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-top: 0.8rem;
    background: #f0f7f0;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 30px;
}

.qty-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--green);
}

.qty-btn:hover {
    color: var(--dark-blue);
    transform: scale(1.2);
}

.qty-controls span {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.remove-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #d0e0d0;
    background: white;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.grand-total {
    font-size: 1.5rem;
    color: var(--dark-blue);
    border-top: 1px solid #cde0cd;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

.checkout-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 1rem;
    width: 100%;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.checkout-btn:hover {
    background: var(--dark-blue);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    backdrop-filter: blur(2px);
}

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

.empty-cart {
    text-align: center;
    color: #888;
    padding: 5rem 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Animations */
@keyframes bump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.cart-count.bump {
    animation: bump 0.3s ease-out;
    background: var(--yellow) !important;
    color: var(--dark-blue) !important;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--dark-blue);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(220, 230, 20, 0.06);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .header-row {
        gap: 1rem;
    }

    .header-logo,
    .header-actions {
        width: auto;
        flex: 1;
    }

    .mobile-menu-btn {
        display: block;
    }

    .simple-dropdown {
        display: none;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .gm-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gm-blue-base {
        height: 450px;
    }

    .gm-shape-divider {
        bottom: 450px;
    }

    .program-card-wide {
        min-width: 0;
    }

    .hero-swiper {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-side {
        gap: 2rem;
    }

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 110px;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 1.6rem;
        padding-right: 1.5rem;
    }

    .logo-group {
        gap: 3rem;
        padding-right: 3rem;
    }

    .logo-group img {
        height: 28px;
    }

    .reach-flex {
        flex-direction: column;
        align-items: stretch;
    }

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

    .product-swiper-wrapper {
        padding: 0 1rem;
    }

    .swiper-button-product-next,
    .swiper-button-product-prev {
        display: none;
    }

    .impact-flex {
        justify-content: center;
        text-align: center;
    }

    .impact-item {
        width: 45%;
    }

    .top-bar {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

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

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

    .nav-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .flex-responsive {
        flex-direction: column !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .country-stats {
        grid-template-columns: 1fr;
    }

    .impact-item {
        width: 100%;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .featured-title {
        font-size: 1.4rem;
        padding-right: 1rem;
    }

    .cart-sidebar {
        width: 100%;
        border-radius: 0;
    }
}

/* ============================================================
   AWARDS PADS
   ============================================================ */
.awards-pads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.award-pad {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    background: white;
    padding: 4rem 2.5rem;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(220, 230, 20, 0.2);
    border: 1px solid #eee;
    transition: var(--transition);
}

.pad-icon {
    font-size: 2.5rem;
    color: var(--yellow);
    background: var(--dark-blue);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
}

.pad-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: var(--dark-blue);
}

.pad-info span {
    font-size: 1rem;
    color: var(--green);
    font-weight: 600;
}

/* BLOG READ MORE */
.blog-read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

/* ============================================================
   STAT BAR (REACH)
   ============================================================ */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    background: var(--dark-blue);
    padding: 3rem;
    border-radius: 32px;
    color: white;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2.2rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   INTERNAL PAGE DESIGN SYSTEM
   ============================================================ */

.internal-page-hero {
    background: linear-gradient(rgba(5, 5, 80, 0.85), rgba(5, 5, 80, 0.85)), url('Assets/Upcycle-Africa%20(424).JPG');
    background-size: cover;
    background-position: center;
    padding: 10rem 0 6rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.internal-page-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--yellow);
    line-height: 1.1;
}

.internal-page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.bread-crumb {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--yellow);
}

.bread-crumb a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
}

.bread-crumb i {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.section-title-wrap {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-wrap .tag {
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title-wrap h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark-blue);
    font-weight: 900;
}

/* Premium Card Styles */
.premium-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(5, 5, 80, 0.12);
    border-color: var(--yellow);
}

.premium-card i {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 2rem;
    display: inline-block;
}

/* Blog Page Refinement */
.blog-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .blog-grid-layout {
        grid-template-columns: 1fr;
    }
}

.blog-post-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.blog-post-card .post-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.blog-post-card .post-content {
    padding: 3rem;
}

.blog-post-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.blog-post-card p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 1rem;
    color: var(--dark-blue);
}

.sidebar-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.sidebar-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 0.8rem;
}

.sidebar-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--yellow);
}

/* Grid helper */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   PREMIUM PAGE UTILITIES (for Concept Note expansion)
   ============================================================ */

.side-content {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    margin-bottom: 8rem;
}

.side-content.reverse {
    flex-direction: row-reverse;
}

.side-text {
    flex: 1.2;
}

.side-visual {
    flex: 1;
    position: relative;
}

.side-visual img {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.floating-accent {
    position: absolute;
    background: var(--dark-blue);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--yellow);
}

.accent-br {
    bottom: -40px;
    right: -40px;
}

.accent-tl {
    top: -40px;
    left: -40px;
}

.step-card {
    display: flex;
    gap: 2rem;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: var(--border-radius-card);
    transition: var(--transition);
    border-left: 6px solid var(--yellow);
    margin-bottom: 2rem;
}

.step-card:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(10px);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    opacity: 0.8;
}

.step-info h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.step-info p {
    color: var(--gray);
    line-height: 1.7;
}

/* Grid Helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {

    .side-content,
    .side-content.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 3rem;
    }

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

    .floating-accent {
        position: static;
        margin-top: 1rem;
    }
}

@media (max-width: 650px) {

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

/* Shop Refinement */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-chip {
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    border: 2px solid #eef2ee;
    background: white;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.filter-chip.active {
    background: var(--dark-blue);
    color: white;
    border-color: var(--dark-blue);
}

.product-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

/* Callout Section */
.callout-box {
    background: var(--dark-blue);
    color: white;
    padding: 5rem;
    border-radius: 60px;
    text-align: center;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

.callout-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(220, 230, 20, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

.product-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.product-swiper {
    padding-bottom: 50px !important;
}

/* ============================================================
   GLOBAL SEARCH MODAL
   ============================================================ */
#searchModal .modal-content {
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#searchResults::-webkit-scrollbar {
    width: 6px;
}
#searchResults::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* ============================================================
   NEWSLETTER FORM
   ============================================================ */
#newsletterForm input:focus {
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.3);
}

#newsletterForm button:hover {
    transform: scale(1.05);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-text h2 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray);
}

/* ============================================================
   UTILITY ENHANCEMENTS
   ============================================================ */
.premium-card {
    transition: var(--transition);
}
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}