       
 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: #FFFFFF;
        overflow-x: hidden;
    }

    /* Arina Beauty Brand Colors */
    :root {
        --gold: #D4AF37;
        --orange: #ae7a2b;

        --white: #FFFFFF;
        --champagne: #EEDCB3;
        --deep-gold: #C5A059;
        --marble: #F2EDE4;
        --dark-text: #2C1810;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* === ANNOUNCEMENT BAR === */
    .top-announcement {
        background: var(--deep-gold);
        color: var(--white);
        text-align: center;
        padding: 10px 0;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .top-announcement i {
        margin: 0 5px;
        color: var(--gold);
    }

   
    /* === DISCOUNT RIBBON === */
    .discount-ribbon {
        background: var(--dark-text);
        color: #fff;
        text-align: center;
        padding: 12px;
        font-weight: 600;
        font-size: 14px;
    }

    .discount-ribbon i {
        margin-right: 10px;
        color: var(--gold);
    }

    /* === FEATURES STRIP === */
    .features-strip {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        padding: 50px 20px;
        background: var(--marble);
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 20px;
        transform: translateY(-30px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .feature-item {
        text-align: center;
        flex: 1;
        min-width: 100px;
    }

    .feature-item i {
        font-size: 32px;
        color: var(--orange);
        margin-bottom: 10px;
        display: inline-block;
    }

    .feature-item h4 {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark-text);
    }

    /* === COMBO SECTION === */
    .combo-section {
        max-width: 1200px;
        margin: 40px auto 60px;
        padding: 0 20px;
    }

    .combo-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        background: var(--white);
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        border: 1px solid var(--champagne);
    }

    .combo-image {
        position: relative;
        background: var(--champagne);
        padding: 40px;
        text-align: center;
    }

    .combo-image img {
        max-width: 80%;
        height: auto;
    }

    .combo-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--orange);
        color: #fff;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 600;
    }

    .combo-info {
        padding: 40px;
    }

    .combo-info h2 {
        font-size: 36px;
        color: var(--dark-text);
        margin-bottom: 10px;
    }

    .combo-info h2 span {
        color: var(--gold);
    }

    .combo-price {
        font-size: 42px;
        font-weight: 800;
        color: var(--orange);
        margin: 20px 0;
    }

    .combo-price del {
        font-size: 22px;
        color: #999;
        margin-left: 10px;
        font-weight: 400;
    }

    .combo-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 25px 0;
    }

    .combo-features span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
    }

    .combo-features i {
        color: var(--orange);
    }

    /* === SECTION TITLES === */
    .section-title {
			display:flex;
			flex-direction:column;
			justify-content:center;
			align-items:center;
        text-align: center !important;
        margin-bottom: 5px !important;
    }

    .section-title h2 {
        font-size: 38px;
        color: var(--dark-text);
        font-weight: 700;
    }

    .section-title h2 span {
        color: var(--gold);
    }

    .section-title p {
        color: #666;
        margin-top: 10px;
    }

    /* === CATEGORIES & PRODUCTS WRAPPER === */
    .categories-wrap, .products-wrap {
        max-width: 1200px;
        margin: 30px auto;
        padding: 0 20px;
    }

    /* === HOW TO USE SECTION === */
    .howtouse-section {
        background: var(--champagne);
        padding: 80px 20px;
        margin: 60px 0;
    }

    .howtouse-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .step-card {
        text-align: center;
    }

    .step-circle {
        width: 80px;
        height: 80px;
        background: var(--orange);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 700;
        margin: 0 auto 20px;
    }

    .step-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--dark-text);
    }

    /* === ABOUT SECTION === */
    .about-section {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .about-image img {
        width: 100%;
        border-radius: 20px;
    }

    .about-content h2 {
        font-size: 38px;
        margin-bottom: 20px;
        color: var(--dark-text);
    }

    .about-content h2 span {
        color: var(--gold);
    }

    .about-feature-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
    }

    .about-feature-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        list-style: none;
    }

    .about-feature-list i {
        color: var(--orange);
    }

    /* === COUNTER SECTION === */
    .counter-section {
        background: var(--deep-gold);
        padding: 60px 20px;
        color: white;
    }

    .counter-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    .counter-box h3 {
        font-size: 48px;
        color: black;
        margin-bottom: 10px;
    }

    /* === VISION MISSION === */
    .vision-section {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
    }

    .vision-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .vision-card {
        background: var(--marble);
        padding: 40px;
        border-radius: 20px;
        text-align: center;
    }

    .vision-card i {
        font-size: 50px;
        color: var(--orange);
        margin-bottom: 20px;
    }

    .vision-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--dark-text);
    }

    

    /* === RESPONSIVE === */
    @media (max-width: 992px) {
        .hero-content h1 { font-size: 42px; }
        .combo-wrapper { grid-template-columns: 1fr; }
        .about-grid { grid-template-columns: 1fr; }
        .contact-container { grid-template-columns: 1fr; }
        .steps-grid { grid-template-columns: repeat(2, 1fr); }
        .counter-container { grid-template-columns: repeat(2, 1fr); }
        .vision-grid { grid-template-columns: 1fr; }
        .features-strip { transform: translateY(0); margin-top: 30px; }
        .hero { height: auto; padding: 80px 0; }
    }

    @media (max-width: 768px) {
        .hero-content h1 { font-size: 32px; }
        .hero-stats { gap: 20px; flex-wrap: wrap; }
        .steps-grid { grid-template-columns: 1fr; }
        .combo-features { grid-template-columns: 1fr; }
        .features-strip { flex-wrap: wrap; }
        .feature-item { min-width: 120px; }
    }
			
		


        /* === FOOTER SECTION STYLES === */
        .footer-section {
            background: var(--dark-text);
            color: var(--secondary-beige);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            height: 130px;
            margin-bottom: 20px;
        }

        .footer-column h5 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: var(--secondary-beige);
        }

        .footer-column a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 197, 162, 0.1);
            border-radius: 50%;
            color: var(--secondary-beige);
        }

        .footer-social a:hover {
            background: var(--primary-gold);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(212, 197, 162, 0.2);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-gold);
            margin: 0 10px;
        }

        /* === WHATSAPP BUTTON === */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        /* === HERO IMAGE STYLES === */
        .hero-image-container {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-shape {
            position: relative;
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--cream-bg) 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(173, 141, 74, 0.15);
            animation: shapeFloat 8s ease-in-out infinite;
        }

        @keyframes shapeFloat {
            0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
            50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
            75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
        }

        .hero-shape-inner {
            width: 90%;
            height: 90%;
            background: white;
            border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: inset 0 0 20px rgba(173, 141, 74, 0.1);
        }

        .hero-product {
            max-width: 85%;
            height: auto;
            animation: productFloat 6s ease-in-out infinite;
        }

        @keyframes productFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* === RESPONSIVE DESIGN === */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                padding: 80px 30px 30px;
                transition: var(--transition);
                box-shadow: 0 0 20px rgba(0,0,0,0.1);
                flex-direction: column;
                z-index: 1001;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu ul {
                flex-direction: column;
                gap: 20px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .about-container {
                flex-direction: column;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-top-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .hero-section {
                padding: 60px 0;
            }

            .features-section,
            .products-section,
            .about-section,
            .testimonials-section,
            .contact-section {
                padding: 60px 0;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .contact-form .form-row {
                grid-template-columns: 1fr;
            }

            .hero-shape {
                width: 280px;
                height: 280px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .products-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
    

/* Contact Section Container */
.contact-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form Column */
.contact-form-col {
    padding-right: 30px;
}

.section-header h2 {
    color: #2C1810;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #7A6C5D;
    margin-bottom: 30px;
}

/* Style Contact Form 7 to match your design */
.wpcf7-form {
    margin-top: 20px;
}

.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.wpcf7-form p {
    margin: 0 0 20px 0 !important;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    color: #2C1810;
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100% !important;
    padding: 12px 20px !important;
    border: 1px solid #E8D8C5 !important;
    border-radius: 8px !important;
    background: #FDF8F3 !important;
    color: #2C1810 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: #B8860B !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1) !important;
}

.wpcf7-form textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

/* Submit Button Styling */
.wpcf7-form .wpcf7-submit {
    background: #B8860B !important;
    color: white !important;
    padding: 12px 35px !important;
    border-radius: 30px !important;
    border: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.wpcf7-form .wpcf7-submit:hover {
    background: #D4AF37 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2) !important;
}

/* Contact Info Column */
.contact-info-col {
    padding-left: 30px;
}

.contact-info h4 {
    color: #2C1810;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: #B8860B;
    font-size: 1.2rem;
    margin-top: 5px;
    min-width: 20px;
}

.info-item h6 {
    color: #2C1810;
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-item p {
    color: #7A6C5D;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-col,
    .contact-info-col {
        padding: 0;
    }
    
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
			
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}


  /* === ABOUT SECTION === */
    .about-section {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .about-image img {
        width: 100%;
        border-radius: 20px;
    }

    .about-content h2 {
        font-size: 38px;
        margin-bottom: 20px;
        color: var(--dark-text);
    }

    .about-content h2 span {
        color: var(--gold);
    }

    .about-feature-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
    }

    .about-feature-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        list-style: none;
    }

    .about-feature-list i {
        color: var(--orange);
    }

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: #B8860B;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect */
.shop-now-btn:hover {
    background: #8B6508;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

/* Active/Click Effect */
.shop-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(184, 134, 11, 0.2);
}

/* Arrow Icon Animation */
.shop-now-btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.shop-now-btn:hover i {
    transform: translateX(5px);
}

/* ===== BUTTON VARIANTS ===== */

/* Large Button */
.shop-now-btn.large {
    padding: 18px 42px;
    font-size: 18px;
    gap: 12px;
}

.contact-page-section{
	padding-bottom:40px !important;
	
}