/*=====================================
RESET
=====================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #222;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

:root {
    --primary: #4D753D;
    --secondary: #9BE15D;
    --dark: #151515;
    --light: #ffffff;
    --gray: #777;
    --border: #ececec;
}

/*=====================================
LOADER
=====================================*/
#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: 1s;
}

#loader img {
    width: 180px;
    animation: loader 1.4s infinite alternate;
}

@keyframes loader {
    from {
        transform: scale(.9);
    }
    to {
        transform: scale(1.05);
    }
}

/*=====================================
NAVBAR - FIXED
=====================================*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 12px 0;
    transition: .4s ease-in-out;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.6); /* Dark background for better visibility */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.active {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.logo img {
    width: 130px;
    height: auto;
}

.menu {
    display: flex;
    gap: 24px;
}

.menu a {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    transition: .3s;
    opacity: 0.9;
}

.navbar.active .menu a {
    color: #222;
    opacity: 1;
}

.menu a:hover {
    color: var(--secondary);
}

.nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #ffffff;
}

.navbar.active .nav-right {
    color: #222;
}

.nav-right i {
    font-size: 16px;
    transition: .3s;
    cursor: pointer;
}

.nav-right i:hover {
    color: var(--secondary);
}

.shop-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 40px;
    transition: .3s;
    font-size: 13px;
    font-weight: 600;
}

.shop-btn:hover {
    transform: translateY(-3px);
    background: #3d6a2e;
}

/* ===== HAMBURGER MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    transition: .3s;
    padding: 5px;
}

.navbar.active .menu-toggle {
    color: #222;
}

.menu-toggle:hover {
    color: var(--secondary);
}

/*=====================================
BUTTONS
=====================================*/
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: .35s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: #3d6a2e;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: .35s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-outline:hover {
    background: #fff;
    color: #222;
}

/*=====================================
HERO - FIXED
=====================================*/
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .35));
    z-index: -2;
}

.hero-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 100vh;
    max-height: 100vh;
    padding-top: 80px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

.hero-left {
    width: 50%;
    max-width: 580px;
    min-width: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(15px);
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 0.5px;
    align-self: flex-start;
    white-space: nowrap;
}

.hero-left h1 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 15px;
    white-space: nowrap;
}

.hero-left h1 span {
    color: var(--secondary);
}

.hero-left p {
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ddd;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    align-items: center;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    padding: 12px 24px;
    font-size: 13px;
    white-space: nowrap;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.hero-stats h2 {
    color: var(--secondary);
    font-size: 32px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.hero-stats span {
    color: #ddd;
    font-size: 12px;
    white-space: nowrap;
}

/* ===== FLOATING CARDS ===== */
.hero-right {
    width: 42%;
    max-width: 440px;
    height: 420px;
    position: relative;
    flex-shrink: 0;
}

.floating-card {
    position: absolute;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    animation: float 5s ease-in-out infinite;
}

.floating-card img {
    width: 170px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .25));
}

.card1 {
    left: 15px;
    top: -10px;
}

.card2 {
    right: 0;
    top: 100px;
    animation-delay: 1s;
}

.card3 {
    left: 100px;
    bottom: 30px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0);
    }
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-down span {
    width: 24px;
    height: 38px;
    display: block;
    border: 2px solid #fff;
    border-radius: 30px;
    position: relative;
}

.scroll-down span::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 26px;
    }
}

/*=====================================
SECTIONS
=====================================*/
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 13px;
}

.section-heading h2 {
    font-size: 44px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 600px;
    margin: auto;
    color: #777;
    font-size: 16px;
}

.product-slider {
    padding: 100px 0;
    background: #f8f8f8;
}

.slider-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.slide {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    padding: 25px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.slide:hover {
    transform: translateY(-10px);
}

.slide img {
    width: 160px;
    margin: auto;
    margin-bottom: 20px;
}

.slide h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.slide p {
    color: #777;
    margin-bottom: 20px;
    font-size: 14px;
}

.luxury-categories {
    padding: 100px 0;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cat {
    height: 460px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    cursor: pointer;
}

.cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.cat:hover img {
    transform: scale(1.12);
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
}

.overlay h3 {
    color: #fff;
    font-size: 30px;
}

.video-section {
    height: 650px;
    background: url("../images/video-cover.jpg") center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.video-content {
    position: relative;
    z-index: 5;
    color: #fff;
    max-width: 700px;
}

.video-content span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.video-content h2 {
    font-size: 50px;
    margin: 18px 0;
}

.video-content p {
    font-size: 17px;
    color: #ddd;
    margin-bottom: 30px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 60px;
    background: #fff;
    color: #222;
    font-weight: 700;
    transition: .3s;
    font-size: 15px;
}

.play-btn:hover {
    transform: translateY(-5px);
}

.features {
    padding: 100px 0;
    background: #fafafa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 18px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    color: #777;
    font-size: 14px;
}

.testimonial-slider {
    padding: 100px 0;
    background: #fff;
}

.testimonial {
    max-width: 750px;
    margin: 30px auto;
    background: #fff;
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.testimonial p:first-child {
    font-size: 30px;
    color: #FFD700;
    margin-bottom: 18px;
}

.testimonial p {
    font-size: 18px;
    color: #555;
}

.testimonial h4 {
    margin-top: 20px;
    color: var(--primary);
    font-size: 20px;
}

.instagram {
    padding: 100px 0;
    background: #f7f7f7;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.insta-grid img {
    width: 100%;
    border-radius: 18px;
    transition: .4s;
    cursor: pointer;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.insta-grid img:hover {
    transform: scale(1.05);
}

.counter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4D753D, #2F4F2F);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.counter {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    color: #fff;
}

.counter h2 {
    font-size: 48px;
    color: #9BE15D;
    margin-bottom: 8px;
}

.counter p {
    font-size: 16px;
}

.newsletter {
    padding: 80px 0;
    background: #f8f8f8;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.newsletter span {
    color: #4D753D;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.newsletter p {
    color: #666;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.newsletter-form input {
    width: 380px;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    background: #4D753D;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: .3s;
}

.newsletter-form button:hover {
    background: #3d6a2e;
    transform: translateY(-2px);
}

.footer {
    background: #111;
    color: #ddd;
    padding: 80px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer p {
    color: #999;
    line-height: 1.8;
    font-size: 14px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #aaa;
    transition: .3s;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #9BE15D;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #222;
    color: #fff;
    transition: .3s;
    font-size: 16px;
}

.footer-social a:hover {
    background: #4D753D;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 25px;
    color: #888;
    font-size: 13px;
}

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    50% {
        transform: scale(1.08);
    }
}

.back-top {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #4D753D;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 999;
    font-size: 20px;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: #3d6a2e;
    transform: translateY(-3px);
}

/*=====================================
VIDEO MODAL
=====================================*/
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-box {
    position: relative;
    width: 100%;
    max-width: 880px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-box iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

#closeVideo {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}

#closeVideo:hover {
    transform: rotate(90deg);
}

/*=====================================
RESPONSIVE - TABLET
=====================================*/
@media(max-width:1024px) {
    .hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
    }
    
    .hero-container {
        height: auto;
        min-height: 100vh;
        max-height: none;
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero-left {
        width: 100%;
        max-width: 650px;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-left h1 {
        white-space: normal;
        text-align: center;
    }
    
    .hero-left p {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-right {
        display: block;
        width: 100%;
        max-width: 380px;
        height: 350px;
        margin: auto;
    }
    
    .floating-card img {
        width: 140px;
    }
    
    .card1 {
        left: 0;
        top: -5px;
    }
    .card2 {
        right: 0;
        top: 80px;
    }
    .card3 {
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
    }
    
    .scroll-down {
        display: none;
    }
    
    .slider-track {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*=====================================
RESPONSIVE - MOBILE (FIXED)
=====================================*/
@media(max-width:768px) {
    .container {
        width: 92%;
    }

    /* ===== NAVBAR MOBILE - FIXED ===== */
    .navbar {
        padding: 8px 0;
        background: rgba(255, 255, 255, 0.97);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar .menu a {
        color: #222;
    }
    .navbar .nav-right {
        color: #222;
    }
    .navbar .menu-toggle {
        color: #222;
    }

    /* Remove active class overrides for mobile */
    .navbar.active {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .nav-wrapper {
        min-height: 48px;
        position: relative;
    }

    .logo img {
        width: 90px;
    }

    /* Hamburger Menu Show */
    .menu-toggle {
        display: block;
        font-size: 22px;
        order: 2;
    }

    /* Menu - Hidden by default, shows on toggle */
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 15px 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        gap: 0;
        border-radius: 0 0 20px 20px;
        z-index: 100;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .menu.open {
        display: flex;
    }

    .menu li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .menu a {
        font-size: 15px;
        color: #222 !important;
        display: block;
        transition: .3s;
        opacity: 1;
    }

    .menu a:hover {
        color: var(--primary) !important;
        padding-left: 5px;
    }

    /* Nav Right - Order change */
    .nav-right {
        gap: 10px;
        order: 3;
    }

    .nav-right i {
        font-size: 15px;
    }

    .shop-btn {
        padding: 6px 14px;
        font-size: 11px;
        white-space: nowrap;
    }

    /* ===== HERO MOBILE ===== */
    .hero {
        height: auto;
        min-height: 100svh;
        max-height: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 110px;
        padding-bottom: 40px;
        gap: 20px;
        height: auto;
        min-height: 100svh;
        max-height: none;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 12px;
        align-self: center;
        white-space: nowrap;
    }

    .hero-left h1 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.2;
        margin-bottom: 12px;
        white-space: normal;
        text-align: center;
    }

    .hero-left p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 100%;
        padding: 0 5px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        min-height: 40px;
        padding: 8px 16px;
        font-size: 12px;
        flex: 0 1 auto;
        max-width: 150px;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 18px;
        font-size: 12px;
    }

    .hero-stats {
        justify-content: center;
        gap: 16px 24px;
        width: 100%;
    }

    .hero-stats>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats h2 {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .hero-stats span {
        font-size: 11px;
    }

    .hero-right {
        display: block;
        width: 100%;
        max-width: 320px;
        height: 280px;
        margin: auto;
    }
    
    .floating-card img {
        width: 110px;
    }
    
    .card1 {
        left: 0;
        top: 0;
    }
    .card2 {
        right: 0;
        top: 60px;
    }
    .card3 {
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
    }

    .scroll-down {
        display: none;
    }

    /* ===== OTHER SECTIONS MOBILE ===== */
    .product-slider,
    .luxury-categories,
    .features,
    .testimonial-slider,
    .instagram {
        padding: 50px 0;
    }

    .video-section {
        height: auto;
        min-height: 400px;
        padding: 50px 20px;
    }

    .video-content h2 {
        font-size: 28px;
    }
    .video-content p {
        font-size: 14px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 28px;
    }
    .section-heading p {
        font-size: 14px;
    }

    .slider-track,
    .category-grid,
    .feature-grid,
    .counter-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cat {
        height: 320px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .counter {
        padding: 30px 20px;
    }

    .counter h2 {
        font-size: 36px;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .newsletter {
        padding: 50px 0;
    }

    .newsletter-wrapper {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .newsletter h2 {
        font-size: 28px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 350px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    .whatsapp {
        width: 50px;
        height: 50px;
        right: 12px;
        bottom: 12px;
        font-size: 24px;
    }

    .back-top {
        width: 40px;
        height: 40px;
        left: 12px;
        bottom: 12px;
        font-size: 16px;
    }
}

/*=====================================
RESPONSIVE - SMALL PHONES
=====================================*/
@media(max-width:480px) {
    .nav-wrapper {
        min-height: 42px;
    }

    .logo img {
        width: 75px;
    }

    .menu-toggle {
        font-size: 19px;
    }

    .nav-right {
        gap: 6px;
    }

    .nav-right i {
        font-size: 13px;
    }

    .shop-btn {
        padding: 4px 10px;
        font-size: 10px;
    }

    .menu {
        padding: 12px 20px;
    }

    .menu li {
        padding: 10px 0;
    }

    .menu a {
        font-size: 14px;
    }

    .hero-container {
        padding-top: 95px;
        padding-bottom: 30px;
        min-height: 100svh;
    }

    .hero-left h1 {
        font-size: clamp(22px, 6vw, 28px);
        white-space: normal;
    }

    .hero-left p {
        font-size: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 11px;
        max-width: 130px;
    }

    .hero-stats {
        gap: 12px 16px;
    }

    .hero-stats h2 {
        font-size: 20px;
    }

    .hero-stats span {
        font-size: 10px;
    }
    
    .hero-right {
        height: 220px;
        max-width: 260px;
    }
    
    .floating-card img {
        width: 90px;
    }
    
    .card1 {
        left: 0;
        top: 5px;
    }
    .card2 {
        right: 0;
        top: 50px;
    }
    .card3 {
        left: 50%;
        bottom: 5px;
        transform: translateX(-50%);
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .cat {
        height: 260px;
    }

    .video-content h2 {
        font-size: 24px;
    }

    .counter h2 {
        font-size: 30px;
    }

    .newsletter h2 {
        font-size: 24px;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/*=====================================
RESPONSIVE - EXTRA SMALL PHONES
=====================================*/
@media(max-width:360px) {
    .logo img {
        width: 65px;
    }

    .menu-toggle {
        font-size: 17px;
    }

    .nav-right i {
        font-size: 11px;
    }

    .shop-btn {
        padding: 3px 8px;
        font-size: 9px;
    }

    .hero-container {
        padding-top: 85px;
    }

    .hero-left h1 {
        font-size: 20px;
        white-space: normal;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        max-width: 110px;
        font-size: 10px;
        padding: 5px 10px;
        min-height: 32px;
    }

    .hero-stats h2 {
        font-size: 18px;
    }
    
    .hero-right {
        height: 180px;
        max-width: 220px;
    }
    
    .floating-card img {
        width: 75px;
    }
    
    .card1 {
        left: 0;
        top: 10px;
    }
    .card2 {
        right: 0;
        top: 40px;
    }
    .card3 {
        left: 50%;
        bottom: 5px;
        transform: translateX(-50%);
    }

    .section-heading h2 {
        font-size: 20px;
    }

    .newsletter-form input,
    .newsletter-form button {
        max-width: 280px;
        font-size: 12px;
    }
    
}
/*=====================================
END
=====================================*/