/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff !important;
    color: #333333 !important;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    background-color: #ffffff !important;
}

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

body, html, main, .container {
    background-color: #ffffff !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 0 120px;
    overflow: visible;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 20px;
    position: relative;
}

.logo {
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 136px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    background: transparent !important;
    mix-blend-mode: multiply;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #FFC72C;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #FFC72C;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #FFC72C;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    padding-top: 120px;
    padding-bottom: 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    list-style: none;
    margin: 0;
}

.mobile-nav ul li {
    list-style: none;
    margin: 0;
}

.mobile-nav ul li a {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 1rem 2rem;
    text-align: center;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: #FFC72C;
    transform: scale(1.1);
}

/* Main Content */
main {
    margin-top: 160px;
}

/* Hero Section - Revolution Style */
.hero.revolution {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    padding: 8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero.revolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 199, 44, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-background-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-product {
    position: absolute;
    width: 200px;
    height: 250px;
    object-fit: contain;
    opacity: 0.15;
    filter: blur(1px);
    transition: all 0.4s ease;
}

.hero-bg-product-1 {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

.hero-bg-product-2 {
    top: 60%;
    right: 15%;
    transform: rotate(20deg);
}

.hero-bg-product-3 {
    bottom: 10%;
    left: 20%;
    transform: rotate(-10deg);
}

/* Section background images - scattered throughout page */
.section-background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.section-bg-product {
    position: absolute;
    width: 180px;
    height: 220px;
    object-fit: contain;
    opacity: 0.35;
    filter: blur(1px);
    transition: all 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

/* Social proof section products */
.section-bg-product-4 {
    top: 20%;
    right: 8%;
    transform: rotate(25deg);
}

.section-bg-product-5 {
    bottom: 15%;
    left: 5%;
    transform: rotate(-20deg);
}

/* Nutritional section products */
.section-bg-product-6 {
    top: 10%;
    left: 8%;
    transform: rotate(-18deg);
}

.section-bg-product-7 {
    top: 50%;
    right: 10%;
    transform: rotate(15deg);
}

.section-bg-product-8 {
    bottom: 12%;
    left: 15%;
    transform: rotate(-12deg);
}

/* Retailer benefits section products */
.section-bg-product-9 {
    top: 25%;
    left: 12%;
    transform: rotate(-22deg);
}

.section-bg-product-10 {
    bottom: 20%;
    right: 10%;
    transform: rotate(18deg);
}

/* Lifestyle Images - Repositioned to visible margin areas with increased opacity */
.section-bg-lifestyle-1 {
    position: absolute;
    top: 5%;
    right: 2%;
    width: 160px;
    height: 200px;
    opacity: 0.45 !important;
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    transform: rotate(22deg);
}

.section-bg-lifestyle-2 {
    position: absolute;
    top: 3%;
    left: 3%;
    width: 160px;
    height: 200px;
    opacity: 0.45 !important;
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    transform: rotate(-20deg);
}

.section-bg-lifestyle-3 {
    position: absolute;
    bottom: 5%;
    right: 4%;
    width: 160px;
    height: 200px;
    opacity: 0.45 !important;
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    transform: rotate(16deg);
}

.section-bg-lifestyle-4 {
    position: absolute;
    bottom: 8%;
    left: 3%;
    width: 160px;
    height: 200px;
    opacity: 0.45 !important;
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    transform: rotate(-18deg);
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero.revolution h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFC72C;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: #FFC72C;
    color: #1a1a1a;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button.secondary {
    background-color: #2d2d2d;
    color: #FFC72C;
    border: 2px solid #FFC72C;
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.2);
}

.cta-button.secondary:hover {
    background-color: #FFC72C;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 199, 44, 0.4);
}

.cta-button:hover {
    background-color: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: #FFC72C;
    border: 2px solid #FFC72C;
}

.cta-button.secondary:hover {
    background-color: #FFC72C;
    color: #1a1a1a;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Social Proof Section - Compact Bullet Point Style */
.social-proof {
    position: relative;
    background-color: #f8f8f8;
    padding: 3rem 0;
    text-align: center;
    overflow: hidden;
}

.social-proof .container {
    position: relative;
    z-index: 1;
}

.social-proof h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 2rem;
}

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

.award-item {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
    flex: 0 1 auto;
}

.award-item:hover {
    transform: translateY(-2px);
    border-color: #FFC72C;
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.3);
}

.award-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.award-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFC72C;
    margin: 0;
    white-space: nowrap;
}

.award-item p {
    display: none;
}

/* Challenge Section */
.challenge-section {
    position: relative;
    background-color: #ffffff;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.challenge-section .container {
    position: relative;
    z-index: 1;
}

.challenge-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.challenge-card {
    background-color: #f8f8f8;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.challenge-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.challenge-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1rem;
}

.challenge-card p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #FFC72C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #ffb700;
}

/* Featured Products Section */
.featured-products {
    background-color: #f8f8f8;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 199, 44, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.flavour-background-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.flavour-bg-product {
    position: absolute;
    width: 120px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    filter: blur(1px);
    transition: all 0.4s ease;
    z-index: 0;
}

.flavour-bg-product-1 {
    top: 20%;
    left: 8%;
    transform: rotate(-12deg);
}

.flavour-bg-product-2 {
    top: 15%;
    right: 10%;
    transform: rotate(18deg);
}

.flavour-bg-product-3 {
    bottom: 25%;
    left: 15%;
    transform: rotate(-8deg);
}

.flavour-bg-product-4 {
    bottom: 20%;
    right: 20%;
    transform: rotate(15deg);
}

.flavour-bg-product-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.featured-products .container {
    position: relative;
    z-index: 2;
}

.featured-products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.flavour-text-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.flavour-bubble {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 3px solid #FFC72C;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 199, 44, 0.2);
    position: relative;
    overflow: hidden;
}

.flavour-bubble::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFC72C, #ffb700, #FFC72C, #ffb700);
    border-radius: 25px;
    z-index: -1;
    animation: bubble-glow 3s ease-in-out infinite alternate;
}

@keyframes bubble-glow {
    0% {
        background: linear-gradient(45deg, #FFC72C, #ffb700, #FFC72C, #ffb700);
    }
    100% {
        background: linear-gradient(45deg, #ffb700, #FFC72C, #ffb700, #FFC72C);
    }
}

.flavour-bubble:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 199, 44, 0.3);
}

.flavour-bubble h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFC72C;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-family: 'Lilita One', sans-serif;
}

.flavour-bubble p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Retailer Benefits Section */
.retailer-benefits {
    position: relative;
    background-color: #ffffff;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.retailer-benefits .container {
    position: relative;
    z-index: 1;
}

.retailer-benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 4rem;
}

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

.benefit-card {
    background-color: #f8f8f8;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Lilita One', sans-serif;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
    color: #FFC72C;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    color: #666666;
}

/* Product Preview Section */
.product-preview {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.product-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #FFC72C;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.preview-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.preview-card:hover {
    transform: translateY(-10px);
}

.preview-card img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.preview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFC72C;
}

.preview-card p {
    color: #666666;
    font-size: 1rem;
}

/* 3D Product Reel Carousel - Multi-Product View */
.carousel-container {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.product-reel {
    width: 100%;
    height: 450px;
    padding: 0 20px;
}

.swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    width: 280px;
    height: 420px;
    opacity: 0.7;
    transform: scale(0.8);
    filter: none;
    transition: all 0.6s ease;
}

.swiper-slide h3 {
    color: #FFC72C;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.6s ease;
    opacity: 0.8;
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: 260px;
    object-fit: contain;
    transition: all 0.6s ease;
    filter: brightness(0.9);
}

/* Active slide - Center focus with clean professional appearance */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1.15);
    z-index: 10;
}

.swiper-slide-active .product-image {
    filter: brightness(1.0);
    max-width: 280px;
    height: 320px;
}

.swiper-slide-active h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.6rem;
    opacity: 1;
    transform: scale(1.1);
}

/* Side slides - Slightly visible but dimmed */
.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.9;
    transform: scale(0.85);
}

.swiper-slide-prev .product-image,
.swiper-slide-next .product-image {
    filter: brightness(0.95);
}

.swiper-slide-prev h3,
.swiper-slide-next h3 {
    opacity: 0.9;
    font-size: 1.3rem;
}

/* Swiper Navigation Arrows - Desktop Only */
.swiper-button-next,
.swiper-button-prev {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFC72C !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: -35px !important;
    cursor: pointer !important;
    z-index: 20 !important;
    border: 3px solid #FFC72C !important;
    position: absolute !important;
    top: 50% !important;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev {
    left: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #FFC72C !important;
    color: #1a1a1a !important;
    transform: scale(1.1) !important;
    box-shadow: 0 12px 40px rgba(255, 199, 44, 0.35) !important;
    border-color: #ffb700 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: 'Arial', sans-serif !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    color: inherit !important;
    line-height: 1 !important;
    margin: 0 !important;
    text-shadow: none !important;
}

.swiper-button-prev:after {
    content: '\2039' !important;
    margin-left: -2px !important;
}

.swiper-button-next:after {
    content: '\203A' !important;
    margin-right: -2px !important;
}

/* Force override any Swiper default styles */
.swiper-button-next::before,
.swiper-button-prev::before {
    display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none !important;
}

/* Hide arrows on mobile and tablet */
@media (max-width: 1024px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* Ensure product links are clickable */
.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: relative;
}

.swiper-slide {
    pointer-events: auto;
}



/* Content Section */
.content {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFC72C;
    text-align: center;
}

.content p {
    font-size: 1.1rem;
    color: #666666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Content Styling */
.story-content {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.story-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 20px;
}

.story-image {
    width: 100%;
    max-width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: scale(1.05);
}

/* Awards images styling */
.awards-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
    flex-wrap: nowrap;
}

.award-image {
    width: 200px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #f8f8f8;
    transition: opacity 0.3s ease;
}

.award-image:not([src]),
.award-image[src=""],
.award-image:not([src]):after {
    content: "Image Loading...";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
}

.award-image {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .challenge-section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .container {
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }

    .story-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-image {
        max-width: 200px;
        height: 160px;
    }

    /* Keep award images horizontal on mobile */
    .awards-images-container {
        gap: 0.5rem;
        margin: 1.5rem auto;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px;
    }

    .award-image {
        width: 140px;
        height: 110px;
        flex-shrink: 0;
    }

    /* Reduce mobile spacing overall */
    .story-content {
        padding: 3rem 0;
    }

    .story-section {
        margin-bottom: 2.5rem;
    }

    .story-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .story-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .story-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .nutrition-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
        margin: 1.5rem auto;
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .nutrition-card {
        padding: 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .nutrition-card * {
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .nutrition-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .nutrition-card > p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.5 !important;
    }

    .benefits-list {
        gap: 0.8rem !important;
    }

    .benefit {
        padding: 0.8rem !important;
        font-size: 0.85rem !important;
    }

    .benefit strong {
        font-size: 0.9rem !important;
    }

    .benefit ul {
        margin-top: 0.3rem !important;
        margin-left: 1rem !important;
    }

    .benefit ul li {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }

    .nutrition-card:nth-child(3) {
        grid-column: auto;
    }

    .nutrition-summary-card {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    .nutrition-summary-card h3 {
        font-size: 1.6rem;
    }

    .nutrition-highlight-item {
        font-size: 1rem;
        padding: 1.2rem;
    }

    /* Mobile: Mission Callout */
    .mission-callout {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .mission-callout p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Mobile: Alternating Section Background */
    .story-section-alt {
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .award-image {
        width: 110px;
        height: 85px;
    }

    .awards-images-container {
        gap: 0.3rem;
    }

}

.story-section {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.story-section-alt {
    background-color: #F8F9FA;
    padding: 3rem 2rem;
    border-radius: 15px;
}

.story-intro {
    font-size: 1.3rem;
    color: #FFC72C;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.story-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-section p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Mission Statement Callout */
.mission-callout {
    background: linear-gradient(135deg, #FFC72C 0%, #FFD700 100%);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 25px rgba(255, 199, 44, 0.3);
    border-left: 5px solid #E5B02A;
}

.mission-callout p {
    font-size: 1.3rem;
    color: #333333;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    margin: 0;
    line-height: 1.7;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 20px;
}

.nutrition-summary-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 3rem auto;
    max-width: 900px;
}

.nutrition-summary-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 2rem;
    text-align: center;
}

.nutrition-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 0 2.5rem 0;
}

.nutrition-highlight-item {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 10px;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nutrition-highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nutrition-highlight-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
}

.nutrition-cta {
    text-align: center;
    margin-top: 2rem;
}

.nutrition-card:nth-child(3) {
    grid-column: 1 / -1;
}

.nutrition-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 0 auto;
    width: 100%;
}

.nutrition-card:hover {
    transform: translateY(-5px);
}

.nutrition-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1.5rem;
    text-align: center;
}

.nutrition-card > p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #FFC72C;
}

.benefit strong {
    color: #FFC72C;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Stockist Page Styling */
.stockist-options {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.stockist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stockist-grid-centered {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.stockist-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

/* Background System for Both Sides */
.stockist-options {
    position: relative;
}

/* Centered Video Background */
.center-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.production-video {
    position: absolute;
    width: 100%;
    height: 50%;
    object-fit: cover;
    pointer-events: none;
}

.production-video.video-1 {
    top: 0;
}

.production-video.video-2 {
    top: 50%;
}

.center-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(248, 248, 248, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 2;
}

/* Make Both Cards Semi-Transparent and Floating */
.stockist-card.independent,
.stockist-card.national {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stockist-card:hover {
    transform: translateY(-10px);
}

.stockist-card.independent .card-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.stockist-card.national .card-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.card-header {
    padding: 3rem 2.5rem;
    text-align: center;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

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

.stockist-bubble {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 3px solid #FFC72C;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 199, 44, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.stockist-bubble::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFC72C, #ffb700, #FFC72C, #ffb700);
    border-radius: 25px;
    z-index: -1;
    animation: bubble-glow 3s ease-in-out infinite alternate;
}

.stockist-bubble:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 199, 44, 0.3);
}

.stockist-bubble p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.benefits-list {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: #f0f0f0;
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.discussion-points {
    margin-bottom: 2.5rem;
}

.discussion-points h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1rem;
}

.discussion-points ul {
    list-style: none;
    padding: 0;
}

.discussion-points li {
    padding: 0.8rem 2rem 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666666;
    font-size: 1.1rem;
    position: relative;
}

.discussion-points li:after {
    content: "\2713";
    color: #FFC72C;
    font-weight: bold;
    position: absolute;
    right: 0.5rem;
    top: 0.8rem;
}

.discussion-points li:last-child {
    border-bottom: none;
}

.closing-text {
    font-size: 1.1rem;
    color: #333333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.card-cta {
    text-align: center;
}

.stockist-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stockist-button.primary {
    background-color: #FFC72C;
    color: #333333;
}

.stockist-button.primary:hover {
    background-color: #333333;
    color: #FFC72C;
    border-color: #FFC72C;
}

.stockist-button.secondary {
    background-color: #333333;
    color: #ffffff;
}

.stockist-button.secondary:hover {
    background-color: #FFC72C;
    color: #333333;
}

@media (max-width: 768px) {
    .stockist-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 0 10px;
    }

    .stockist-grid-centered {
        max-width: 100%;
        margin: 0 10px;
    }

    .stockist-card {
        margin: 0;
    }

    /* Hide videos on mobile for performance */
    .center-video-background {
        display: none;
    }

    .stockist-card.independent,
    .stockist-card.national {
        background-color: #ffffff;
        backdrop-filter: none;
        border: none;
    }

    .card-header {
        padding: 1rem 0.8rem;
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .card-header h2 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .card-content {
        padding: 1rem 0.8rem;
    }

    .stockist-bubble {
        padding: 1rem 0.8rem;
        margin-bottom: 1rem;
    }

    .stockist-bubble p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .intro-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .benefits-list {
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .benefit-icon {
        font-size: 1.5rem;
        margin-right: 0.8rem;
    }

    .benefit-item h3 {
        font-size: 0.9rem;
    }

    .discussion-points {
        margin-bottom: 1.5rem;
    }

    .discussion-points h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .discussion-points li {
        font-size: 0.85rem;
        padding: 0.5rem 2rem 0.5rem 0;
    }

    .discussion-points li:after {
        top: 0.5rem;
        right: 0.5rem;
    }

    .closing-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .card-cta {
        margin-top: 1rem;
    }

    .stockist-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Contact Page Styling */
.contact-content {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1.5rem;
}

.contact-card p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button.primary {
    background-color: #FFC72C;
    color: #1a1a1a;
}

.contact-button.primary:hover {
    background-color: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.4);
}

.contact-button.secondary {
    background-color: transparent;
    color: #FFC72C;
    border: 2px solid #FFC72C;
}

.contact-button.secondary:hover {
    background-color: #FFC72C;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.3);
}

.contact-info {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info strong {
    color: #FFC72C;
}

/* Typography - Lilita One for headings */
h1, h2, .logo a {
    font-family: 'Lilita One', sans-serif;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
}

h3 {
    font-family: 'Lilita One', sans-serif;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: #FFC72C;
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: #1a1a1a;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    color: #333333;
    transform: translateY(-2px);
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #333333;
}

.copyright {
    color: #1a1a1a;
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail {
    padding: 6rem 0;
    background-color: #f8f8f8;
    min-height: calc(100vh - 80px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-image-section {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.product-detail-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.product-detail-image:hover {
    transform: scale(1.05);
}

.product-info-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFC72C;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-description {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.product-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 1rem;
}

.ingredients-text {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nutrition-table-container {
    overflow-x: auto;
    border-radius: 10px;
    background-color: #f8f8f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.nutrition-table th {
    background-color: #FFC72C;
    color: #1a1a1a;
    padding: 1rem 0.8rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nutrition-table th:first-child {
    text-align: left;
}

.nutrition-table th:not(:first-child) {
    text-align: center;
}

.nutrition-table td {
    padding: 0.8rem;
    color: #666666;
    border-bottom: 1px solid rgba(255, 199, 44, 0.1);
}

.nutrition-table .nutrient-name {
    font-weight: 600;
    text-align: left;
}

.nutrition-table td:not(.nutrient-name) {
    text-align: center;
    font-weight: 500;
}

.nutrition-table .alt-row {
    background-color: rgba(255, 199, 44, 0.05);
}

.product-actions {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero.revolution h1 {
        font-size: 3rem;
    }

    .hero-bg-product {
        width: 150px;
        height: 190px;
        opacity: 0.1;
    }

    .section-bg-product {
        width: 130px;
        height: 160px;
        opacity: 0.08;
    }

    /* Mobile: Lifestyle Images */
    .section-bg-lifestyle-1,
    .section-bg-lifestyle-2,
    .section-bg-lifestyle-3,
    .section-bg-lifestyle-4 {
        width: 120px;
        height: 150px;
    }

    .challenge-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Fixes */
    header {
        padding: 0;
        border-radius: 0 0 0 60px;
    }

    nav {
        padding: 1rem 15px;
        justify-content: space-between;
        position: relative;
        align-items: center;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }

    .logo img {
        height: 78px;
    }

    /* Hide desktop navigation on mobile */
    nav > ul {
        display: none !important;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        order: 1;
    }

    /* Mobile Product Carousel Fixes */
    .carousel-container {
        padding: 3rem 0;
    }

    .product-reel {
        height: 400px;
        padding: 0 10px;
    }

    .swiper-slide {
        width: 280px !important;
        height: 380px;
    }

    .product-image {
        max-width: 250px;
        height: 280px;
    }

    .swiper-slide h3 {
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    /* Mobile carousel adjustments */
    .product-reel {
        height: 380px;
        padding: 0 10px;
    }

    .swiper-slide {
        width: 240px;
        height: 360px;
    }

    .swiper-slide-active .product-image {
        max-width: 220px;
        height: 280px;
    }

    .product-image {
        max-width: 180px;
        height: 230px;
    }

    /* Page Header Mobile */
    main {
        margin-top: 120px;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Contact Page Mobile Fixes */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin: 0 auto;
        max-width: none;
    }

    .contact-card {
        margin: 0 15px;
        padding: 2rem 1.5rem;
    }

    .contact-card h2 {
        font-size: 1.6rem;
    }

    .contact-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Hero Section Mobile */
    .hero.revolution {
        padding: 6rem 0;
    }

    .hero.revolution h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-bg-product {
        width: 100px;
        height: 130px;
        opacity: 0.08;
    }

    .section-bg-product {
        width: 90px;
        height: 110px;
        opacity: 0.05;
    }

    /* Very small mobile: Lifestyle Images */
    .section-bg-lifestyle-1,
    .section-bg-lifestyle-2,
    .section-bg-lifestyle-3,
    .section-bg-lifestyle-4 {
        width: 80px;
        height: 100px;
    }

    .hero-content-centered {
        max-width: 90%;
        padding: 0 20px;
    }

    .awards-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .award-item {
        min-width: 280px;
        justify-content: center;
    }

    .challenge-grid,
    .flavour-text-showcase,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flavour-bg-product {
        width: 80px;
        height: 100px;
        opacity: 0.05;
    }

    .social-proof h2 {
        font-size: 1.6rem;
    }

    .award-item {
        min-width: 240px;
        padding: 1rem 1.5rem;
        gap: 0.6rem;
    }

    .award-item h3 {
        font-size: 0.9rem;
    }

    .challenge-section h2,
    .featured-products h2,
    .retailer-benefits h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Product Detail Responsive */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .product-image-section {
        padding: 2rem;
    }

    .product-info-section {
        padding: 2rem;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .product-description {
        font-size: 1.1rem;
    }

    .nutrition-table th,
    .nutrition-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Stockist page very small screens */
    .stockist-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin: 0 5px;
    }

    .stockist-grid-centered {
        margin: 0 5px;
    }

    .card-header {
        padding: 1rem 0.8rem;
    }

    .card-header h2 {
        font-size: 1rem;
        line-height: 1.1;
    }

    .card-content {
        padding: 1rem 0.8rem;
    }

    .stockist-bubble {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1rem;
    }

    .stockist-bubble p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .benefit-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .benefit-item h3 {
        font-size: 0.9rem;
    }

    .discussion-points h3 {
        font-size: 1rem;
    }

    .discussion-points li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .stockist-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Header adjustments for very small screens */
    header {
        padding: 0;
        border-radius: 0 0 0 50px;
    }

    nav {
        padding: 0.8rem 10px;
    }

    .logo img {
        height: 68px;
    }

    main {
        margin-top: 110px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }

    /* Container alignment fixes for very small screens */
    .challenge-section .container,
    .social-proof .container,
    .retailer-benefits .container {
        padding: 0 15px;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .challenge-section,
    .social-proof,
    .retailer-benefits {
        overflow-x: hidden;
    }

    /* Very small screen carousel adjustments */
    .carousel-container {
        padding: 2rem 0;
    }

    .product-reel {
        height: 350px;
        padding: 0 5px;
    }

    .swiper-slide {
        width: 240px !important;
        height: 330px;
    }

    .product-image {
        max-width: 200px;
        height: 240px;
    }

    .swiper-slide h3 {
        font-size: 1.1rem;
        margin-top: 0.8rem;
    }

    /* Very small screen carousel adjustments */
    .product-reel {
        height: 340px;
        padding: 0 5px;
    }

    .swiper-slide {
        width: 200px;
        height: 320px;
    }

    .swiper-slide-active .product-image {
        max-width: 180px;
        height: 240px;
    }

    .product-image {
        max-width: 150px;
        height: 200px;
    }

    .swiper-slide h3 {
        font-size: 1rem;
        margin-top: 0.8rem;
    }

    .swiper-slide-active h3 {
        font-size: 1.3rem;
    }

    /* Page content adjustments */
    .page-header {
        padding: 1.5rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* Contact page very small screens */
    .contact-card {
        margin: 0 10px;
        padding: 1.5rem 1rem;
    }

    .contact-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-card {
        width: 250px;
        height: 350px;
    }
}

/* Policy Pages Styling */
.policy-page {
    padding: 4rem 0 6rem 0;
    background-color: #f8f8f8;
    min-height: calc(100vh - 200px);
}

.policy-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFC72C;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.policy-updated {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.policy-page h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333333;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.2rem;
}

.policy-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.8rem;
}

.policy-page a {
    color: #FFC72C;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-page a:hover {
    color: #ffb700;
}

.policy-page strong {
    color: #333333;
    font-weight: 600;
}

/* Footer styling adjustments for mobile */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        margin: 1rem 0;
        font-size: 0.85rem;
    }

    .footer-links a {
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }

    /* Policy pages mobile */
    .policy-page .container {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .policy-page h1 {
        font-size: 1.8rem;
    }

    .policy-page h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .policy-page p,
    .policy-page li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policy-page ul {
        padding-left: 1.5rem;
    }
}

/* Shop Page Styling */
.shop-content {
    padding: 4rem 0 6rem 0;
    background-color: #ffffff;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 20px;
}

.shop-product-thumbnail {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 450px;
}

.shop-product-thumbnail:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 199, 44, 0.4);
}

.shop-product-thumbnail img {
    width: 280px !important;
    max-width: 100% !important;
    max-height: 320px !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto 1rem auto !important;
    display: block !important;
}

.shop-product-thumbnail h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    font-family: 'Lilita One', sans-serif;
    margin: 0 0 0.8rem 0;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.product-buy-button {
    background: #FFC72C;
    color: #333333;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 2px 8px rgba(255, 199, 44, 0.3);
    margin-top: auto;
    min-width: 140px;
    min-height: 48px;
}

.product-buy-button:hover {
    background: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.5);
}

.shop-info-section {
    background: linear-gradient(135deg, #FFC72C 0%, #ffb700 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.shop-info-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.shop-info-section p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
}

/* Product Modal Styling */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.product-modal.active {
    display: flex;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 25px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #333333;
    cursor: pointer;
    z-index: 10002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #FFC72C;
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    background-color: #f8f8f8;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.modal-details {
    padding: 3rem 3rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFC72C;
    margin-bottom: 1.5rem;
    font-family: 'Lilita One', sans-serif;
    text-transform: uppercase;
}

.modal-details p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.modal-purchase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-purchase label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
}

.modal-purchase select {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #FFC72C;
    border-radius: 50px;
    background-color: #ffffff;
    color: #333333;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-purchase select:hover {
    background-color: #fffbf0;
}

.modal-purchase select:focus {
    outline: none;
    border-color: #333333;
}

.modal-buy-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #FFC72C;
    color: #333333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-buy-button:hover {
    background-color: #333333;
    color: #FFC72C;
    border-color: #FFC72C;
    transform: translateX(5px);
}

/* Shop Page Mobile Responsive */
@media (max-width: 768px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .shop-product-thumbnail img {
        max-width: 200px;
    }

    .shop-product-thumbnail h3 {
        font-size: 1.3rem;
    }

    .shop-info-section {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .shop-info-section h2 {
        font-size: 1.4rem;
    }

    .shop-info-section p {
        font-size: 1rem;
    }

    #productModal .modal-content {
        width: 95%;
        max-height: 70vh;
        padding: 1rem;
    }

    #productModal .modal-grid {
        grid-template-columns: 1fr;
    }

    #productModal .modal-image {
        padding: 1rem;
    }

    #productModal .modal-image img {
        max-width: 140px;
    }

    #productModal .modal-details {
        padding: 1rem;
    }

    #productModal .modal-details h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    #productModal .modal-details p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    #productModal .modal-purchase {
        gap: 0.8rem;
    }

    #productModal .modal-purchase label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    #productModal .modal-purchase select {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    #productModal .modal-buy-button {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
        margin-top: 0.5rem;
    }

    #productModal .modal-close {
        top: 8px;
        right: 8px;
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }
}

/* Shopping Cart Button */
.cart-button {
    background-color: #FFC72C;
    color: #333333;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-button:hover {
    background-color: #333333;
    color: #FFC72C;
    transform: scale(1.05);
}

.cart-count {
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

/* Cart Modal Base Styles */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.cart-modal-content {
    position: relative;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 2rem;
}

.cart-modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 1.5rem 0;
    padding-right: 2rem;
    font-family: 'Lilita One', sans-serif;
}

.cart-summary {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;
}

.cart-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666666;
    cursor: pointer;
    z-index: 10002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: #333333;
}

.cart-header {
    flex-shrink: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 0;
}

.cart-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Lilita One', sans-serif;
    text-align: center;
}

.cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem 0;
    min-height: 0;
    margin: 0;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    align-items: center;
}

.cart-item-image {
    width: 80px !important;
    max-width: 80px !important;
    height: 80px !important;
    max-height: 80px !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    display: block !important;
}

.cart-item-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 0.5rem 0;
}

.cart-item-details p {
    margin: 0.3rem 0;
    color: #666666;
    font-size: 0.95rem;
}

.cart-item-price {
    font-weight: 700;
    color: #FFC72C;
    font-size: 1.1rem !important;
}

.cart-item-remove {
    background-color: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.cart-item-remove:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

.empty-cart-message {
    text-align: center;
    padding: 2rem 1rem;
    color: #999999;
    font-size: 1.1rem;
    display: none;
}

.cart-footer {
    flex-shrink: 0;
    border-top: 2px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 0;
    background-color: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

.cart-total span {
    color: #FFC72C;
}

.checkout-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #FFC72C;
    color: #333333;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.checkout-button:hover:not(:disabled) {
    background-color: #333333;
    color: #FFC72C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 199, 44, 0.4);
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cart-button {
        display: none !important;
    }

    /* Mobile floating cart button */
    .mobile-floating-cart {
        display: flex !important;
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 9999 !important;
        width: 70px !important;
        height: 70px !important;
        border-radius: 50% !important;
        background: #FFC72C !important;
        color: #333333 !important;
        border: none !important;
        box-shadow: 0 6px 20px rgba(255, 199, 44, 0.6) !important;
        font-weight: 700 !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        transition: all 0.3s ease !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        touch-action: manipulation !important;
    }

    .mobile-floating-cart:hover {
        background: #ffb700 !important;
        transform: scale(1.05) !important;
        box-shadow: 0 8px 25px rgba(255, 199, 44, 0.8) !important;
    }

    .mobile-floating-cart .cart-count {
        background-color: #333333 !important;
        color: #FFC72C !important;
        border-radius: 50% !important;
        padding: 0.15rem 0.4rem !important;
        font-size: 0.75rem !important;
        min-width: 20px !important;
        height: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 800 !important;
    }

    /* Hide desktop nav but keep cart */
    nav > ul {
        display: none !important;
    }
    nav .cart-button {
        display: flex !important;
    }
}
/* Legal Pages Styling */
.legal-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 4rem 0 2rem 0;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #FFC72C;
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: #cccccc;
    font-size: 1rem;
}

.legal-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    color: #FFC72C;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Lilita One', sans-serif;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #333333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.legal-container p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #333333;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.policy-highlight {
    background-color: #fff8e1;
    border-left: 4px solid #FFC72C;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.policy-summary {
    font-weight: 700;
    color: #FFC72C;
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.policy-note {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-style: italic;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-table thead {
    background-color: #FFC72C;
    color: #333333;
}

.policy-table th,
.policy-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.policy-table th {
    font-weight: 700;
}

.policy-table tbody tr:hover {
    background-color: #f8f8f8;
}

.process-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFC72C;
    color: #333333;
    font-weight: 700;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-box {
    background-color: #f8f8f8;
    border: 2px solid #FFC72C;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: #FFC72C;
    font-weight: 600;
}

/* Shop Page - Policy Agreement Checkbox */
.policy-agreement {
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: #333333;
}

.checkbox-label a {
    color: #FFC72C;
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: #ffb700;
}