
     
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #e2e5ec !important; 
    color: var(--light-text);
    line-height: 1.6;
  }
  
  /* Navbar Styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
    position: fixed;
    background-color: #0f172a;
    z-index: 1000;
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  /* Logo Styling */
  .logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.2em;
  }
  
  .logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  /* Navigation List */
  .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
  }
  
  .nav-list a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
    padding: 10px;
    font-size: 0.9em;
    
  }

  .shop-name {
    width: 170px;
    word-break: break-all;
    font-size: 1em;

  }
  
  
  
  /* Language Dropdown */
  /* .language-dropdown {
    display: none;
    position: absolute;
    background-color: #0f172a;
    border-radius: 5px;
    padding: 5px;
    top: 40px;
    left: 0;
    z-index: 100;
}

.language-dropdown button {
    display: block;
    background: none;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.language-dropdown button:hover {
    background-color: rgba(255, 255, 255, 0.2);
} */

  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: whitesmoke;
    margin: 3px 0;
  }
  
  /* Book Now Button */
  .book-now {
    background: var(--accent);
    color: var(--dark) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
    margin-right: 1rem;
  }
  
  .book-now:hover {
    transform: translateY(-3px);
  }
  
  /* Navigation Button */
  .nav-btn {
    background: #0f172a;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-right: 10px; /* Adjust spacing between Login and Language button */
    
    
  }
  
  .nav-btn:hover {
    background: #0f172a;
  }
  
  /* Mobile Responsive */
  @media (max-width: 1024px) {
    .nav-list {
        display: none; /* Default hidden */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f172a;
        text-align: center;
        padding: 10px;
        z-index: 1002;
        transition: all 0.3s ease-in-out;
    }
  
    .nav-list.active {
        display: flex; /* ✅ Fix: Changed from block to flex */
        flex-direction: column;
        gap: 10px;
    }
  
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
  
    .menu-toggle .bar {
        height: 3px;
        width: 25px;
        background-color: whitesmoke;
        margin: 5px 0;
        transition: all 0.3s ease-in-out;
    }
  }
  .login-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 10px 15px;
    cursor: pointer;
}

.login-btn i {
    font-size: 1.2rem;
    margin-right: 5px;
}


/* Home Section */
.home {
    position: relative;
    width: 100%;
    height: 118vh; /* Full viewport height */
    background: url('images/background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay for readability */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
}

/* Center Content */
.welcome-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
    padding: 5%;
    text-align: center;
}

/* Heading */
.welcome-container h1 {
    font-size: 4vw;
    font-weight: bold;
    color: white;
    margin-bottom: 1%;
}

/* Paragraph */
.welcome-container p {
    font-size: 1.8vw;
    color: white;
    margin-bottom: 2%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-container h1 {
        font-size: 6vw;
    }

    .welcome-container p {
        font-size: 3.5vw;
    }

    .btn {
        font-size: 4vw;
        padding: 10px 20px;
    }
}


/* About Section */
.about {
    width: 100%;
    padding: 6% 0;
    background: linear-gradient(135deg, #f8f8f8, #e0f7fa);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

/* About Content - Using Grid for a Clean Layout */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* About Text */
.about-text {
    text-align: left;
    animation: fadeIn 1.5s ease-in-out;
}

.about-text h2 {
    font-size: 3rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Button */


/* About Image */
.about-image {
    text-align: center;
    position: relative;
    animation: fadeInRight 1.5s ease-in-out;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .about-image img {
        max-width: 100%;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.products {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.products-container {
    max-width: 90%;
    margin: auto;
    padding: 20px;
}

.products h2 {
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 40px;
}

/* Improved Masonry Layout with Flexbox */
.product-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start; /* Ensures last row alignment */
}

/* Product Items */
.product-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 columns */
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    align-self: stretch; /* Makes all items stretch to the tallest in the row */
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(180, 139, 139, 0.2);
}

/* Product Image */
.product-item img {
    width: 100%;
    height: 100%; /* Maintain aspect ratio */
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Product Description */
.product-description {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.product-item:hover .product-description {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-item {
        flex: 1 1 calc(50% - 20px); /* 2 columns */
    }
}

@media (max-width: 768px) {
    .product-item {
        flex: 1 1 100%; /* 1 column */
    }
}
/* Prices Section */
.prices {
    background-color: #ecf0f3;
    padding: 60px 0;
    text-align: center;
}

.prices-container {
    max-width: 100%;
    margin: auto;
    padding: 20px;
}

.prices h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

/* Price Group - Grid Layout */
.price-group {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping */
    justify-content: center;
    gap: 20px;
}

/* Price Item Styling */
.price-item {
    background: #ecf0f3;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 7px 7px 15px #bebebe, -7px -7px 15px #ffffff;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    width: 100%; /* Full width on mobile */
    
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

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

/* Ensure Image Takes Full Width */
.price-item img {
    width: 100%;
    height: 95%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}


/* Responsive Design */
@media (min-width: 600px) {
    .price-item {
        width: 48%; /* 2 items per row on small tablets */
    }
}

@media (min-width: 1024px) {
    .price-item {
        width: 30%; /* 3 items per row on desktops */
    }
}

/* Delay Animation */
.price-item:nth-child(1) { animation-delay: 0s; }
.price-item:nth-child(2) { animation-delay: 0.2s; }
.price-item:nth-child(3) { animation-delay: 0.4s; }
.price-item:nth-child(4) { animation-delay: 0.6s; }
.price-item:nth-child(5) { animation-delay: 0.8s; }

/* Gallery Section */
.gallery {
    width: 100%;
    padding: 50px 0;
    background: #f8f8f8;
}

/* Masonry Grid Layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}
.gallery h2 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 2rem;
}

/* Base Styling for Gallery Items */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Asymmetrical Layout */
.gallery-item.tall {
    grid-row: span 2;
    height: 100%;
}

.gallery-item.wide {
    grid-column: span 2;
    height: 100%;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

/* Hover Effect */
.gallery-item:hover {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
    }
}

.payment-section {
    width: 100%;
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

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

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-in-out;
}

p {
    color: #666;
    font-size: 1.3rem;
    animation: fadeIn 1.2s ease-in-out;
}

/* Payment Layout */
.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    align-items: center;
}

/* QR Code with Animation */
.qr-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideRight 1s ease-in-out;
}

.qr-box img {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Scan Text */
.scan-text {
    font-size: 1rem;
    margin-top: 10px;
    color: #444;
}

/* Payment Steps with Animation */
.payment-steps {
    text-align: left;
    font-size: 1.1rem;
    color: #444;
    animation: slideLeft 1s ease-in-out;
}

.payment-steps li {
    margin-bottom: 8px;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 80px;
    height: 80px;
    margin: 10px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.payment-icons img:hover {
    transform: scale(1.2);
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .payment-container {
        grid-template-columns: 1fr; /* Stack items */
        text-align: center;
    }

    .qr-box img {
        max-width: 250px; /* Smaller QR code */
        max-height: 250px;
    }

    .payment-steps {
        text-align: center; /* Center text */
    }

    .qr-box, .payment-steps {
        animation: fadeIn 1s ease-in-out;
    }
}

/* Contact Section */
.contact-section {
    width: 100%;
    min-height: 100vh; /* Ensures it covers full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    padding: 20px;
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Left Side: Contact Map */
.contact-map {
    width: 50%;
    height: auto;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

/* Right Side: Contact Info */
.contact-info {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.contact-info h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
}

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

.contact-info ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #040505;
}

/* Contact Button */
.btn-contact {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 1rem;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

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

/* Fully Responsive */
@media (max-width: 1024px) {
    .contact-info {
        padding: 40px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

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

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

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }

    .contact-map, .contact-info {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .contact-map img {
        height: 250px;
        object-fit: cover;
    }

    .contact-info {
        padding: 30px;
    }

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

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 1.5rem;
    }

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

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

    .btn-contact {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}


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

/* Footer Icons */
.footer-icons {
    display: flex;
    justify-content: center;
    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 Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

/* Copyright Text */
.footer-bottom 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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-icons {
        gap: 10px;
    }

    .footer-icons a {
        font-size: 1.2rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}

  
  /* 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: #585555;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }
    
    .form-group button:hover {
      background-color: #585555;
    }
    
    .form-group button:active {
      background-color: #585555;
    }
    
    /* 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:#0f172a;
      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:#0f172a;
    }
    
    /* 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:#0f172a;
      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;
}

.product-height {
  height: 100% !important;
}

    