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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

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

/* Navigation Styles */
.navbar {
    background-color: #FFF8E1;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}


.nav-logo:hover {
    transform: rotate(360deg);
}

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

.shop-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F9A825;
    word-break: break-word;
    transition: color 0.3s ease;
}

.shop-name:hover {
    color: #e09000;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F9A825;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(0);
}

.nav-link:hover,
.nav-link.active {
    color: #F9A825;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #F9A825;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Laptop/Desktop View - Apply margins */
@media (min-width: 1024px) {
    .nav-left {
        margin-left: -40px;
    }
    .nav-right {
        margin-right: -40px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #FFF8E1;
    position: fixed;
    height: 100%;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu li {
    padding: 0.5rem 20px;
    transition: background-color 0.3s ease;
}

.mobile-menu li:hover {
    background-color: #f5e9c2;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #333;
}

/* Landing Section */
.landing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 100%);
}

.landing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.landing-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInLeft 0.8s ease-out;
}

.landing-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.landing-image img {
    width: 100%;
    max-height: 380px; /* Normal card-like size */
    object-fit: cover;
    border-radius: 20px; /* More card-like instead of extreme curves */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.landing-image img:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #F9A825, #FFC107);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 168, 37, 0.4);
}

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

/* About Preview Section */
.about-preview {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
    animation: fadeInRight 0.8s ease-out;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.about-image img {
    width: 100%;
    border-radius: 20% 50% / 40% 10%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

/* Products Preview Section */
.products-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
}

.products-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 600;
    animation: fadeIn 0.8s ease-out;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px 45px 15px 45px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 30px 10px 30px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.product-card img:hover {
    transform: scale(1.03);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.more-button {
    background-color: #F9A825;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.more-button:hover::before {
    left: 100%;
}

.more-button:hover {
    background-color: #e09000;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F9A825, #FFC107);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
}

.cta-section .cta-button {
    background: white;
    color: #F9A825;
}

/* Footer */
.footer {
    background-color: #FFF8E1;
    padding: 3rem 0 1rem;
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h4 {
    color: #F9A825;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    text-align: left;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F9A825;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    text-align: left;
}

.contact-item i {
    color: #F9A825;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-left: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F9A825;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #666;
}

/* About Landing */
.about-landing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 100%);
}

.about-landing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-landing-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInLeft 0.8s ease-out;
}

.about-landing-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.about-landing-image img {
    width: 100%;
    max-height: 400px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 50% 20% / 10% 40%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    animation: fadeIn 0.8s ease-out;
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px 45px 15px 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 30px 10px 30px;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Products Page */
.products-landing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E1 100%);
    text-align: center;
}

.products-landing-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out;
}

.products-landing-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.products-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 600;
    animation: fadeIn 0.8s ease-out;
}

.products-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.products-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.products-row-two {
    justify-content: space-evenly;
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    background: white;
    border-radius: 45px 15px 45px 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 1 350px;
    animation: fadeInUp 0.6s ease-out;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 30px 10px 30px 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.product-item img:hover {
    transform: scale(1.03);
}

.product-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.product-item p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
}

.pricing-item {
    position: relative;
}

.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #F9A825, #FFC107);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 600;
    animation: fadeIn 0.8s ease-out;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form,
.contact-info {
    background: white;
    border-radius: 15px 45px 15px 45px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F9A825;
    box-shadow: 0 0 8px rgba(249, 168, 37, 0.3);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    background: linear-gradient(135deg, #F9A825, #FFC107);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-item:hover .icon {
    transform: rotate(360deg);
}

.info-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Payment Page */
.payment-page {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Ensures equal height */
}

/* Card Styles */
.qr-payment,
.other-payments {
    background: white;
    border-radius: 45px 15px 45px 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* QR Section */
.qr-payment h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.qr-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #F9A825;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.qr-box img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.qr-box img:hover {
    transform: scale(1.05);
}

.qr-box p {
    margin-bottom: 1rem;
}

.upi-apps {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.upi-apps span {
    background: linear-gradient(135deg, #F9A825, #FFC107);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.upi-apps span:hover {
    transform: scale(1.1);
}

/* Other Payments */
.other-payments h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split into 2 columns on large screens */
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.payment-icon {
    background: linear-gradient(135deg, #F9A825, #FFC107);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.payment-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.payment-info p {
    font-size: 0.85rem;
    color: #666;
}

/* Security Info */
.security-info {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
    padding: 1.5rem;
    border-radius: 15px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F9A825;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .payment-content {
        grid-template-columns: 1fr;
    }
    .payment-options {
        grid-template-columns: 1fr;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-right {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    .landing-content,
    .about-content,
    .about-landing-content,
    .contact-content,
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-text h1,
    .about-landing-text h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-row {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form,
    .contact-info,
    .qr-payment,
    .other-payments {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .shop-name {
        font-size: 1.2rem;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .landing-text h1 {
        font-size: 2rem;
    }

    .product-card,
    .product-item {
        padding: 1.5rem;
    }

    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .qr-box img {
        width: 150px;
        height: 150px;
    }

    .payment-option {
        padding: 1rem;
        gap: 1rem;
    }

    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .upi-apps {
        gap: 0.5rem;
    }

    .upi-apps span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-card,
.product-item,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* General video container */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

#videos h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  display: block; 
  width: 100%; 
  text-align: center; 
  position: relative;
  padding-bottom: 10px;
}

/* Styling for each video item */
.video-item video {
    width: 80%; /* Make videos responsive */
    /* max-width: 320px; Limit width */
    height: auto;
    position: relative;
    border-radius: 8px;
}

/* Row for 2 or more videos */
/* Row for 2 or more videos */
.video-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Specific layouts for different video counts */
.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

/* .video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
} */

/* .video-item .play-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
} */

/* 
/* Responsive handling */
@media (max-width: 768px) {
    .video-item video {
        max-width: 100%;
    }
    .video-container {
        flex-direction: column;
        align-items: center;
    }
}


/*watsapp*/

.whatsapp-btn {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    
    padding: 1rem;
    border-radius: 50%;
    
    z-index: 100;
}

.whatsapp-btn img {
    width: 60px;
    height: 60px;
}


/* Cart icon styles */
.cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s;
}

.cart-icon:hover {
    transform: translateY(-2px);
}

.cart-count {
    margin-right: 10px;
}

.cart-details {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.cart-item {
    /* display: flex; */
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.empty-cart {
    text-align: center;
    color: #666;
    padding: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        padding-right: 0;
    }
}




/* Custom Translate Button */
.translate-container {
    position: relative;
  }
  
  .translate-btn {
    background: #fff;
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
  }
  
  .translate-btn:hover {
    background: #939292;
  }
  
  /* Language Dropdown */
  .language-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    width: 120px;
    z-index: 100;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  /* @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  } */
  
  .language-dropdown button {
    background: none;
    border: none;
    color: #333;
    padding: 10px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .language-dropdown button:hover {
    background: #fff;
    color: red;
  }
  
  
  /* Hide Google Translate Branding Completely */
  .goog-te-banner-frame, .goog-logo-link, .goog-te-gadget span, .goog-te-balloon-frame, 
  #google_translate_element select, .goog-te-gadget {
    display: none !important;
  }
  
  
  
  /* Hide the Google Translate banner */
  .goog-te-banner-frame {
    display: none !important;
  }
  
  /* Hide the Google Translate branding and unnecessary elements */
  .goog-logo-link,
  .goog-te-gadget span,
  .goog-te-balloon-frame,
  #google_translate_element select,
  .goog-te-gadget {
    display: none !important;
  }
  
  /* Ensure body does not shift down due to hidden banner */
  body {
    top: 0px !important;
  }
  /* Hide Google Translate banner */
  .skiptranslate, .goog-te-banner-frame {
    display: none !important;
  }
  
  
/* General video container */

#videos {

padding: 2rem 0;

}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

#videos h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  display: block; /* Ensures it behaves as a block element */
  width: 100%; /* Makes sure it takes full width */
  text-align: center; /* Explicit centering */
  position: relative;
  padding-bottom: 10px;
}

/* Styling for each video item */
.video-item video {
    width: 80%; /* Make videos responsive */
    /* max-width: 320px; Limit width */
    height: auto;
    position: relative;
    border-radius: 8px;
}

/* Row for 2 or more videos */
.video-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Specific layouts for different video counts */
.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

/* .video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
} */

/* .video-item .play-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
} */

 
/* Responsive handling */
@media (max-width: 768px) {
    .video-item video {
        max-width: 100%;
    }
    .video-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Custom Translate Button */
.translate-container {
  position: relative;
}

.translate-btn {
  background: #fff;
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.translate-btn:hover {
  background: #939292;
}

/* Language Dropdown */
.language-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  width: 120px;
  z-index: 100;
  animation: fadeIn 0.3s ease-in-out;
}

/* @keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
} */

.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.language-dropdown button:hover {
  background: #fff;
  color: red;
}


/* Hide Google Translate Branding Completely */
.goog-te-banner-frame, .goog-logo-link, .goog-te-gadget span, .goog-te-balloon-frame, 
#google_translate_element select, .goog-te-gadget {
  display: none !important;
}



/* Hide the Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

/* Hide the Google Translate branding and unnecessary elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Ensure body does not shift down due to hidden banner */
body {
  top: 0px !important;
}
/* Hide Google Translate banner */
.skiptranslate, .goog-te-banner-frame {
  display: none !important;
}


/* ---pop up----- */
 /* ---pop up----- */
 #popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allow scrolling inside popup */
  z-index: 9999; /* Ensure it appears above everything */
}

/* Popup box (Centered properly) */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  max-height: 80vh; /* Restrict height */
  overflow-y: auto; /* Enable scrolling inside popup */
  z-index: 10001; /* Ensure it appears above navbar */
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.close-btn:hover {
  background: darkred;
}

/* Prevent background scrolling when popup is open */
body.no-scroll {
  overflow: hidden;
}

/* Fix Navbar Overlapping */
.navbar {
  position: relative;
  z-index: 100; /* Ensure navbar does not cover popup */
}


/* Product grid layout */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Dynamic grid */
  gap: 15px;
  padding: 10px;
}

.product-items {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.product-items img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.discounted-price {
  color: #d9534f;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #777;
}

/* Buttons inside the popup */
.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.popup button:hover {
  opacity: 0.8;
}

.cart-item button {
  background-color: #dc3545;
  color: white;
}

.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
}

.popup button:first-of-type {
  background-color: #007bff;
  color: white;
}
.view-cart-btn {
  position: absolute;
  top: 10px;
  right: 80px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.view-cart-btn:hover {
  background-color: #218838;
}
.cart-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: none;
  z-index: 9999;
}

/* Custom Translate Button */
.translate-container {
  position: relative;
}

.translate-btn {
  background: #fff;
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.translate-btn:hover {
  background: #939292;
}

/* Language Dropdown */
.language-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  width: 120px;
  z-index: 100;
  animation: fadeIn 0.3s ease-in-out;
}

/* @keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
} */

.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.language-dropdown button:hover {
  background: #fff;
  color: red;
}


/* Hide Google Translate Branding Completely */
.goog-te-banner-frame, .goog-logo-link, .goog-te-gadget span, .goog-te-balloon-frame, 
#google_translate_element select, .goog-te-gadget {
  display: none !important;
}



/* Hide the Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

/* Hide the Google Translate branding and unnecessary elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Ensure body does not shift down due to hidden banner */
body {
  top: 0px !important;
}
/* Hide Google Translate banner */
.skiptranslate, .goog-te-banner-frame {
  display: none !important;
}


    
