:root {
    /* Brand Colors */
    --primary: #039292;
    --primary-light: #04b3b3;
    --secondary: #70B6E2;
    --accent: #F0DBA3;

    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7FAFA;
    --bg-tertiary: #EEF5F5;

    /* Text */
    --text-primary: #0B1220;
    --text-secondary: #334155;
    --text-tertiary: #64748B;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Dimensions */
    --nav-height: 80px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.no-scroll {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

p {
    text-align: left;
    /* Back to default or left for short texts */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
nav {
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

nav.scrolled {
    height: 65px;
    background: #FFFFFF;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

nav.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    /* Slightly larger for touch */
    color: var(--text-primary);
    cursor: pointer;
    z-index: 2000;
    /* Higher than nav-links */
    position: relative;
}

.btn-whatsapp-nav {
    background: var(--primary);
    color: #FFFFFF !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .btn-whatsapp-nav {
        display: none !important;
    }
}

.btn-whatsapp-nav:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 146, 146, 0.2);
}

/* Sections */
section {
    padding: 3.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header p {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Confidence Section Enhanced */
.confidence {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.confidence-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.confidence-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(3, 146, 146, 0.1);
    border-color: var(--primary-light);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: var(--transition);
}

.confidence-item:hover .icon-wrapper {
    background: var(--primary);
    transform: rotate(10deg);
}

.confidence-item i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.confidence-item:hover i {
    color: #ffffff;
}

.confidence-item h3,
.confidence-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.confidence-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

/* Float Animation for Icons */
.animate-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-card.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-card:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-card:nth-child(2) {
    transition-delay: 0.3s;
}

.animate-card:nth-child(3) {
    transition-delay: 0.5s;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 60%,
            transparent 100%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-150%) rotate(45deg);
    }

    100% {
        transform: translateX(150%) rotate(45deg);
    }
}

.icon-wrapper i {
    animation: iconFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.featured-actions {
    text-align: center;
    margin-top: 3rem;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.lifestyle-banner {
    height: 500px;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.lifestyle-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.lifestyle-text {
    max-width: 600px;
}

.lifestyle-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.lifestyle-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Mini */
.hero-mini {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.hero-mini img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

.hero-mini .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-mini .container {
    position: relative;
    z-index: 3;
}

.hero-mini h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.hero-mini .filters {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-mini .filters input {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    min-width: 300px;
}

.hero-mini .filters .btn-outline {
    border-color: #fff;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    backdrop-filter: blur(5px);
}

.hero-mini .filters .btn-outline.active {
    background: #fff;
    color: var(--primary);
}

.hero-mini .filters .btn-outline:hover {
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-mini {
        height: 480px;
    }

    .hero-mini h1 {
        font-size: 2.2rem;
    }

    .hero-mini .filters {
        gap: 0.4rem;
    }

    .hero-mini .filters input {
        min-width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-mini .filters .btn-outline {
        padding: 0.5rem 0.7rem;
        font-size: 0.65rem;
        flex: 1 1 auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-mini {
        height: 520px;
    }

    .hero-mini .filters .btn-outline {
        padding: 0.5rem 0.5rem;
        font-size: 0.6rem;
    }
}

.hero-mini p {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Layout Helpers */
.hero-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.storytelling-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.storytelling-grid img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.lifestyle-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 1rem);
    padding-bottom: 2rem;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

/* Antigravity Inspired Multi-Layered Background */
.hero-bg-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.22;
}

.glow-1 {
    width: 80vw;
    height: 80vw;
    background: var(--primary);
    top: -40%;
    right: -20%;
    animation: gravityDrift 30s infinite alternate ease-in-out;
}

.glow-2 {
    width: 60vw;
    height: 60vw;
    background: var(--accent);
    bottom: -30%;
    left: -10%;
    animation: gravityDrift 35s infinite alternate-reverse ease-in-out;
}

.glow-3 {
    width: 50vw;
    height: 50vw;
    background: var(--secondary);
    top: 20%;
    left: 10%;
    animation: gravityDrift 40s infinite alternate ease-in-out;
    opacity: 0.12;
}

.glow-4 {
    width: 40vw;
    height: 40vw;
    background: var(--primary-light);
    bottom: 20%;
    right: 20%;
    animation: gravityDrift 25s infinite alternate-reverse ease-in-out;
    opacity: 0.08;
}

/* Subtle Grain Texture */
.hero-bg-glows::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 2;
}

@keyframes gravityDrift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(60px, -40px) scale(1.08) rotate(5deg);
    }

    66% {
        transform: translate(-40px, 50px) scale(0.92) rotate(-5deg);
    }

    100% {
        transform: translate(30px, 80px) scale(1.15) rotate(12deg);
    }
}

/* Cinematic Reveal Animations */
.hero-content {
    flex: 1;
    z-index: 10;
    position: relative;
    max-width: 50%;
    animation: antigravReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: linear-gradient(90deg, var(--text-primary) 0%, #444 50%, var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 8s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    animation: antigravReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    text-align: justify;
}

.story-content p,
.about-story p {
    text-align: justify;
}

.btn-group {
    opacity: 0;
    animation: antigravReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes antigravReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 60px;
    width: 42%;
    height: calc(100% - 60px);
    z-index: 10;
    opacity: 0;
    animation: visualEntrance 2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-container {
        height: 450px;
    }

    .carousel-slide {
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 350px;
    }
}

@keyframes visualEntrance {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-10deg) translateX(60px) scale(1.05);
        filter: brightness(0.6);
    }

    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(0) translateX(0) scale(1);
        filter: brightness(1);
    }
}

@keyframes cinematicFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(0) rotate(0);
    }
}

.btn-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(3, 146, 146, 0.1);
}

/* Cards */
.card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Blog Specific Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-post {
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-post-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-content .category-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-post-content h3 {
    margin: 1rem 0;
}

.blog-post-content p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-post-content .read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Mobile responsiveness for blog grid */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 650px;
    border-radius: 12px;
}

.category-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.category-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #FFFFFF;
}

/* Product Cards Store Aesthetics */
/* Product Grid & Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.product-card .img-container {
    height: 350px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.product-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    display: block;
    text-align: center;
}

.product-card .btn-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
}

.product-card .btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.product-card:hover .btn-link::after {
    width: 100%;
}

/* Neon Glow Animation */
.neon-glow {
    box-shadow: 0 0 10px rgba(3, 146, 146, 0.4);
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 5px rgba(3, 146, 146, 0.2), 0 0 10px rgba(3, 146, 146, 0.1);
    }

    to {
        box-shadow: 0 0 20px rgba(3, 146, 146, 0.6), 0 0 30px rgba(3, 146, 146, 0.3);
    }
}

.neon-btn:hover {
    text-shadow: 0 0 5px #fff, 0 0 10px var(--primary-light), 0 0 15px var(--primary-light);
    box-shadow: 0 0 10px var(--primary-light);
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
footer {
    background: #2a2a2a;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.footer-col p {
    color: #aaaaaa;
    font-size: 0.85rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #aaaaaa;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 0.78rem;
}

/* Responsive Optimization */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Navbar Mobile Fixes */
    nav {
        height: 70px;
    }

    .logo img {
        height: 50px !important;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-left: auto;
        /* Push it to the right */
        transition: var(--transition);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        display: flex;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.15rem;
        /* Further reduction */
        font-weight: 600;
        display: block;
        padding: 0.7rem;
        color: var(--text-primary);
        letter-spacing: 0.5px;
    }

    /* Hero Mobile Overhaul */
    .hero {
        padding-top: 100px;
        padding-bottom: 2rem;
        text-align: center;
        height: auto;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column !important;
        gap: 2rem;
    }

    .hero-content {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        text-align: center;
    }

    .hero-visual {
        order: 1;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .btn-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 1rem !important;
        font-size: 0.8rem;
    }

    /* Confidence Section Grid */
    .confidence-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Category Cards */
    .category-grid {
        gap: 1rem;
    }

    .category-card {
        height: 320px;
    }

    .category-info h3 {
        font-size: 1.4rem;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card .img-container {
        height: 180px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 0.85rem;
    }

    /* Storytelling & About */
    .storytelling-grid,
    .about-story .container>div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .story-content h2,
    .about-story h2 {
        font-size: 1.8rem !important;
    }

    .story-img img,
    .about-story img {
        max-width: 100%;
        height: auto;
    }

    /* Values Mobile */
    .values div[style*="grid-template-columns"],
    .about-story+section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Catalog Filters Scroll */
    .filters {
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }

    .filters .btn {
        padding: 0.6rem 1rem;
    }

    #catalog-search {
        margin-bottom: 1.5rem;
    }

    .lifestyle-content {
        padding: 1rem;
    }

    .contact-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-mini {
        height: 300px !important;
    }

    .hero-mini h1 {
        font-size: 2rem !important;
    }

    .lifestyle-banner {
        height: 350px !important;
    }

    .lifestyle-banner h2 {
        font-size: 1.8rem !important;
    }
}