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

body {
    
    background-color: #FFF5F0;
    
    font-family: 'Cinzel', serif;
}


/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #948979;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
}

/* Navbar Content */
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-content a{
    text-decoration: none;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    color: white;
}

.logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Shop Name */
.shop-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
    max-width: 200px;
    word-wrap: break-word;
}

/* Nav List */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #FFD700;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color:#948979;
        width: 100%;
        text-align: center;
        padding: 10px;
        gap: 0.9rem;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}


.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    background: #f8f6f5; /* Soft background for contrast */
}

/* Container */
.home-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
    background: #FDF8F4; 
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    padding-top: 0px;
}

/* Left Section: Image */
.banner-left {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Image Zoom Effect */
.banner-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease-in-out, opacity 0.5s;
    border: 3px solid #7A1111; /* Thin border for better visibility */
    opacity: 0;
    animation: zoomIn 1s ease-in-out forwards;
    margin-top: 2.5em;

}

/* Image Hover Effect */
.banner-left img:hover {
    transform: scale(1.05);
}

/* Right Section: Text */
.banner-right {
    flex: 1;
    padding: 50px;
    background: #F9F5F1;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.2s ease-in-out forwards;
}

/* Text Styling */
.banner-right h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #7A4B4B;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
}

.banner-right h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #7A1111;
    font-weight: bold;
    padding-bottom: 0.8rem;
}

.banner-right h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #7A4B4B;
    padding-bottom: 0.8rem;
}

.banner-right p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #7A4B4B;
    padding-bottom: 1rem;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Button Styling */
.btn {
    padding: 12px 20px;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid #7A1111;
    color: #7A1111;
    background: transparent;
    transition: 0.3s ease-in-out, transform 0.3s;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.btn:hover {
    background: #7A1111;
    color: white;
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Keyframe Animations */

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Image Zoom In */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .home-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .banner-right {
        padding: 30px;
    }

    .banner-right h2 {
        font-size: 2rem;
    }

    .banner-right h1 {
        font-size: 1.8rem;
    }

    .banner-right h3 {
        font-size: 1.3rem;
    }

    .banner-right p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-right {
        padding: 20px;
    }

    .banner-right h2 {
        font-size: 1.8rem;
    }

    .banner-right h1 {
        font-size: 1.5rem;
    }

    .banner-right h3 {
        font-size: 1.2rem;
    }

    .banner-right p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}
/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 50px;
    background: #F9F5F1;
  
}

/* Container */
.about-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* Left: Text */
.about-text {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: #7A4B4B;
    text-transform: uppercase;
    letter-spacing: 2px;
   padding-bottom: 1rem;
    text-align: center;
}



.about-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
}

/* Right: Image */
.about-image {
    flex: 1;
    overflow: hidden;
    text-align: center;
    height: 100%;
    
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    border: 10px solid #7A1111; 
}

/* Image Zoom Effect on Hover */
.about-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
}

/* Products Section */
.products-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #FDF8F4;
    width: 100%;
}
.products-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem; /* Adjust size */
    font-weight: bold;
    color: #7A4B4B; /* Dark gray color */
    text-transform: uppercase; 
    letter-spacing: 2px; /* Spacing between letters */
   padding-top: 2.5em;
}

/* Products Container - Grid Layout */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Flexible columns */
    grid-auto-rows: auto;
    gap: 20px;
    justify-content: center; /* Ensures alignment */
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

/* Individual Product Items */
.products-item {
    width: 100%;
    height: 100%;
    text-align: center;
    background: white;
  
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Thin border with slight transparency */
}

/* Image Styling */
.products-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* Slightly smaller than the parent container */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Thin border on images */
}


/* Smooth Zoom Effect on Hover */
.products-item:hover {
    transform: scale(1.05);
}

.products-item {
    position: relative; /* Ensures absolute positioning inside */
    overflow: hidden; /* Prevents overflow issues */
}

/* Initially hide the text */
/* Adjusted Product Text Styling */
.products-item p {
    position: absolute;
    top: 1px; /* Distance from the top */
    left: 50%;
    transform: translateX(-50%);
    background: #948979; /* Darker shade for better readability */
    color: white;
    padding: 8px 15px;
    font-size: 16px;

    border-radius: 5px;
    max-width: 100%; /* Allows text to wrap within the container */
    white-space: normal; /* Allows text to break into multiple lines */
    text-align: center;
    opacity: 0; /* Hide text by default */
    transition: opacity 0.3s ease-in-out; /* Smooth fade-in effect */
    word-wrap: break-word;
}

/* Show text on hover */
.products-item:hover p {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    }
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(1, 1fr); /* 1 image per row */
    }
}
/* General Section Styling */
.prices-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #FDF8F4;
}

/* Container for Price Items */
.prices-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default 2 items per row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Price Item Styling */
.price-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 2px solid #ddd; /* Add border around the price item */
    padding: 10px; /* Optional: Add padding inside the border */
}

/* Zoom Effect on Hover */
.price-item:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Image Section */
.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Price Sticker Styling - Always Visible */
.price-sticker {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #948979;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
}

/* Remove Hover Effect on Price */
.price-item:hover .price-sticker {
    transform: none; /* No movement */
}

/* Item Details Section */
.item-details {
    padding: 15px;
    background-color: white;
    border-radius: 0 0 15px 15px;
}

#prices h2 {
    font-size: 2.5rem; /* Large font for the section title */
    color: #7A4B4B; /* Dark color for the title */
    margin-bottom: 30px; /* Space below the title */
    text-transform: uppercase; /* Make title uppercase */
    letter-spacing: 2px;
}

.item-details p {
    font-size: 16px;
    font-weight: normal;
    color: #444;
}

/* Layout for First Row (2 items) */
.prices-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items in the first row */
    gap: 30px;
}

/* Layout for Second Row (3 items) */
.prices-container .price-item:nth-child(3),
.prices-container .price-item:nth-child(4),
.prices-container .price-item:nth-child(5) {
    grid-column: span 1; /* Second row has 3 items */
}

/* Responsive Design for Larger Screens */
@media (min-width: 1024px) {
    .prices-container {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row for larger screens */
    }
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .prices-container {
        grid-template-columns: repeat(1, 1fr); /* 1 item per row for small screens */
    }
}

/* Gallery Container */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    text-align: center;
    padding: 20px 0;
    background-color: #FDF8F4;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color:#7A4B4B ;
    text-transform: uppercase; 
    letter-spacing: 2px;
    padding-top: 2.5em;
}

/* Gallery Items */
.gallery-item {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    border: 2px solid #ddd; /* Add border around the price item */
    padding: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Overlay Effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Full-screen Payment Section */
.payment-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background:#FDF8F4;
    padding: 30px 20px;
    color: #333;
    box-sizing: border-box;
}

/* Heading Style */
.payment-section h2 {
    font-size: 2.5em; /* Slightly reduced for better fit */
    margin-bottom: 20px;
    text-align: center;
    padding-top: 2rem;
    font-weight: normal;
    color: #7A4B4B;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Payment Container */
.payment-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    box-sizing: border-box;
}

/* Card Style for Both Sections */
.card {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
    
}

/* Hover Effects on Cards */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #f9f9f9;
}

/* QR Section */
.qr-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #444;
}

/* QR Code Styling */
.qr-glow {
    background: rgba(255, 255, 255, 0.9);
    /* padding: 20px; */
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 50%;
    /* margin: 20px; */
}



.qr-glow img {
    width: 100%;
    border-radius: 10px;
}

/* Scan Text */
.scan-text {
    font-size: 1.2rem;
    color: #777;
    padding: 10px;
}

/* Instructions Section */
.instructions h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #444;
}

/* Payment Steps */
.payment-steps {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    margin-top: 15px;
    color: #333;
    width: 100%;
    max-width: 500px;
}

/* Individual Step */
.payment-steps li {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.2s ease, background 0.3s ease;
}

/* Hover effect */
.payment-steps li:hover {
    transform: translateX(10px);
    background: #f0f0f0;
}

/* Numbering Circle */
.payment-steps span {
    width: 40px;
    height: 40px;
    background: #f0a500;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .payment-container {
        flex-direction: column;
        gap: 20px; /* Reduce gap for better mobile layout */
    }

    .card {
        width: 100%;
    }

    .instructions,
    .qr-section {
        text-align: center;
    }

    .payment-steps {
        text-align: left;
    }

    .payment-steps li {
        justify-content: flex-start;
        font-size: 1rem; /* Reduce text size for mobile */
        padding: 10px;
    }

    .payment-steps span {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .scan-text {
        font-size: 1rem;
    }

    
}

@media (max-width: 480px) {
    
   

    .payment-steps {
        font-size: 1rem;
    }

    .payment-steps span {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .qr-glow{
        width: 50%;
        margin: 10px;
        margin: auto;
    }
    .card{
        width: 100%;
    }
    .qr-section{
        width: 100%;
    }
    .qr-glow img {
       width: 100%;
    }
}


/* Contact Section */
.contact-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FDF8F4;
    padding: 40px 5%;
    border-radius: 20px; /* Rounded corners */
    overflow: hidden;
}

/* Contact Container */
.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

/* Contact Card */
.contact-card {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    align-items: stretch;
}

/* Contact Info (Left Side) */
.contact-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    min-width: 300px;
    text-align: left;
}

/* Contact Heading */
.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: normal;
    margin-bottom: 20px;
    color: #7A4B4B;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 2.5em;
    font-weight: bold;
}

/* Contact Text */
.contact-info p {
    font-size: 1.1rem;
    color: #1e1414;
    margin-bottom: 20px;
}

/* Contact Details List */
.contact-info ul {
    list-style: none;
    padding: 0;
}

/* Contact Info Items */
.contact-info ul li {
    font-size: 1rem;
    color: #060606;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Icons */
.contact-info ul li i {
    font-size: 1.4rem;
    color: #15171a;
    min-width: 24px;
    text-align: center;
}

/* Contact Button */
.btn-contact {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 1.1rem;
    background: #948979;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    width: fit-content;
    align-self: center;
}

.btn-contact:hover {
    background: #7d7162;
    transform: scale(1.05);
}

/* Right Side: Contact Map */
.contact-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    padding: 20px;
    min-width: 300px;
    border-radius: 15px;
}

.contact-map img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.contact-map img:hover {
    transform: scale(1.02);
}

/* Responsive Design for Tablets */
@media (max-width: 1024px) {
    .contact-section {
        padding: 30px 5%;
    }

    .contact-card {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        text-align: center;
        padding: 30px;
        width: 100%;
    }

    .btn-contact {
        align-self: center;
    }

    .contact-map {
        width: 100%;
        padding: 20px;
    }

    .contact-info ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info ul li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-card {
        flex-direction: column;
        width: 100%;
    }

    .contact-info {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .contact-info ul {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .contact-info ul li {
        justify-content: center;
        font-size: 1rem;
    }

    .contact-map {
        width: 100%;
        padding: 15px;
        display: flex;
        justify-content: center;
    }

    .contact-map img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* Smaller Mobile Screens */
@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-info {
        padding: 15px;
    }

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

    .contact-info ul li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .contact-info ul li i {
        font-size: 1.2rem;
    }

    .btn-contact {
        font-size: 1rem;
        padding: 10px;
    }

    .contact-map {
        padding: 10px;
    }
}


/* Footer Styling */
.footer {
    background-color: #948979; /* Dark background */
    color: #fff;
    padding: 20px 0;
    font-size: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
}

/* Centered Content */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Footer Icons */
.footer-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    margin-bottom: 10px;
}

.footer-icons a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s ease;
}

.footer-icons a:hover {
    color: #f5f5ed; /* Highlight color on hover */
}

/* Footer Text */
.footer-text {
    text-align: center;
}

/* Copyright Text */
.footer-text p {
    margin: 5px 0;
    font-size: 1rem;
    opacity: 0.8;
    color: white;
}

/* Powered By AI4Bazaar */
.copyright {
    font-weight: bold;
    color: #f5f5ed; /* Highlight color */
    font-size: 1rem;
} 

  /* Styling for the floating WhatsApp button */
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background 0.3s;
    text-decoration: none;
    }
    
    /* Hover effect */
    .whatsapp-btn:hover {
    background-color: #1EBE5D;
    transform: scale(1.1);
    }
    
    /* WhatsApp icon */
    .whatsapp-btn img {
    width: 35px;
    height: 35px;
    }
  
    
    .form-container {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 500px;
    }
    
    .form-container h2 {
      text-align: center;
      color: #333;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 12px;
      margin-top: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
      background-color: #f9f9f9;
    }
    
    .form-group button {
      width: 100%;
      padding: 12px;
      background-color: #948979;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }
    
    .form-group button:hover {
      background-color: #948979;
    }
    
    .form-group button:active {
      background-color: #948979;
    }
    
    /* Thank You Message */
    .thank-you-message {
      display: none;
      text-align: center;
      font-size: 18px;
      color: #4CAF50;
      padding: 20px;
    }
    
    /* Popup styles */
    
    #contactpopup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    
    .popup-content {
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      width: 100%;
      max-width: 500px;
      position: relative;
    }
    
    /* Close button (cross mark) */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 24px;
      color: #333;
      cursor: pointer;
      background: none;
      border: none;
    }
    
    .close-btn:hover {
      color: red;
    }
    
    /* Button to select date */
    
    #datePickerButton {
      background-color:#948979;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
      transition: background-color 0.3s ease;
    }
    
    #datePickerButton:hover {
      background-color:#948979;
    }
    
    /* Text input for hidden date selection */
    #popup input[type="text"] {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      border: 2px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
      display: none;
    }
    
    /* Text input for email address */
    input[type="email"] {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      border: 2px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
    }
    
    /* Textarea */
    textarea {
      width: 100%;
      padding: 12px;
      margin: 15px 0;
      border: 2px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
      resize: vertical;
      min-height: 120px;
    }
    
    /* Submit button */
    button[type="submit"] {
      background-color:#948979;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      width: 100%;
      transition: background-color 0.3s ease;
    }
    
    button[type="submit"]:hover {
      background-color:#585555;
  
    }
    
    #popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      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;
  }
  
      

/* 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;
    }
}

/* ---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-item {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.product-item 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;
}

    