** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; /* Full viewport height */
}

.logo-container img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Body styles */
body {
    font-family: 'Times New Roman', Times, serif;
}

#topBanner2 {
    background-color: white;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto; /* Three columns: logo, title, buttons */
    align-items: center;
    gap: 20px; /* Space between columns */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center;
}

.banner-title {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px; /* Space between logo and title */
}

#topBanner {
}

/* Logo styles */


/* Title styles */
#topBanner h1 {
    text-align: center;
    font-size: 48px; /* Large font size for the title */
    font-weight: bold;
    text-transform: uppercase; /* Uppercase text for a bold look */
    letter-spacing: 2px; /* Slightly increased letter spacing */
}

#topBanner2 img {
    height: 60px; /* Adjust logo size */
    margin-right: 10px; /* Space between logo and title */
}

#topBanner2 h1 {
    font-size: 28px; /* Adjust font size */
    font-weight: bold;
    color: #000000; /* Deep color that matches the theme */
    text-transform: uppercase; /* Uppercase text for a bold look */
    letter-spacing: 1px; /* Slightly increased letter spacing */
    margin: 0; /* Remove default margin */
}

#topBanner {
    background-color: #671100;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column; /* Added to ensure stacking of elements */
}

/* Default: Hide both marquee and icons */
/* Default: Hide both marquee and icons */
#marqueeContainer, #iconContainer {
    display: none;
}

/* Show marquee only on lap/tablet view (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    #marqueeContainer {
        display: block;
    }
}
#marqueeContainer {
    display: block;
}
@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

#marqueeContainer {
    display: none; /* Initially hidden */
    width: 100%;   /* Make sure the container spans the full width */
    overflow: hidden; /* Ensure content within the marquee does not overflow */
    white-space: nowrap; /* Prevent wrapping of text */
    background-color: #671100; /* Background color for contrast */
    color: #d9b94c;/* Text color */
    font-size: 18px; /* Adjust font size */
    padding: 10px 0; /* Padding for visual spacing */
}

#marqueeContainer marquee {
    display: block;
    width: 100%; /* Ensure the marquee spans the full width */
    font-size: 18px; /* Adjust font size */
    line-height: 1.5; /* Adjust line height for better readability */
}

/* Show marquee on larger screens (lap/tablet view) */
@media screen and (min-width: 768px) {
    #marqueeContainer {
        display: block;
    }
}


#marqueeContainer span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}



/* Show icons only on mobile view (less than 768px) */
@media screen and (max-width: 767px) {
    #iconContainer {
        display: flex;
        justify-content: center;
    }

    #iconContainer li {
        display: inline-block;
        margin: 0 10px;
    }

    #iconContainer a {
        color: white;
        font-size: 1.0em; /* Increase icon and text size */
        text-decoration: none;
    }

    #iconContainer i {
        margin-right: 5px;
    }
}

.banner-title h1 {
    font-size: 24px;
    margin-left: 10px;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px; /* Space between buttons */
}

.nav-buttons a {
    font-size: 16px; /* Adjust font size */
    text-decoration: none;
    padding: 8px 12px; /* Adjust padding */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    color: #ffffff;
    background-color: rgb(254, 0, 0);
    border: 2px solid #000000;
    text-align: center;
    font-weight: bold;
}

.nav-buttons a:hover {
    background-color: #c4c4c443;
    color: #fff;
}
#downloadProductListButton {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #14A44D;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#downloadProductListButton:hover {
    background-color: #555;
}

.category-title {
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 0;    
    background-color: #4056A1;
    margin-bottom: 10px;
    position: relative;
    color: white;
}


.category-section {
    margin-bottom: 20px;
    padding-bottom: 10px;
}


.arrow {
    font-size: 16px;
    margin-left: 10px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.products-container {
    display: block; /* Initially visible */
}

.product {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
}

.product img {
    max-width: 100px;
    max-height: 100px;
    margin-right: 20px;
    object-fit: contain;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-mrp{
    color: red;
}
.product-price{
    color: #000000;
}

.product-name, .product-description, .product-mrp, .product-price, .product-quantity, .product-total {
    margin: 0 10px;
    flex: 1;
    font-weight: bold; /* Make the product name bold */

    text-align: center;
}

.product-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.quantity-button {
    background-color: #14A44D;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.quantity-input {
    width: 50px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .product-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-name, .product-description, .product-mrp, .product-price, .product-quantity, .product-total {
        text-align: left;
        margin: 5px 0;
    }
}

.product-total {
    font-weight: bold;
}


#viewCartButton {
    position: fixed; /* Ensure it stays fixed on the viewport */
    top: calc(95px + 20px); /* Adjust based on navbar height and additional spacing */
    right: 20px;
    padding: 10px 20px;
    background-color: #0DCAF0;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1000; /* Ensure it's above other content */
}

#viewCartButton:hover {
    background-color: #555;
}


@media screen and (max-width: 768px) {
    #viewCartButton {
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 8px 16px; /* Adjust padding */
        top: calc(70px + 10px); /* Adjust for smaller screens */
        right: 10px; /* Adjust right distance */
    }
}

.cart-badge {
    background-color: red;
    border-radius: 50%;
    padding: 5px 10px;
    color: #fff;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's above other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    overflow: auto; /* Enable scrolling if needed */
}
.mail-icon {
    color: #d14836; /* Mail icon color */
}

.phone-icon {
    color: #1e90ff; /* Phone icon color */
}

.whatsapp-icon {
    color: #25d366; /* WhatsApp icon color */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #topBanner2 {
        grid-template-columns: 1fr; /* Single column layout on smaller screens */
        grid-template-rows: auto auto auto; /* Three rows for title, buttons, and logo */
        text-align: center;
    }

    .banner-title {
        grid-template-columns: 1fr; /* Single column for logo and title */
        margin-bottom: 20px; /* Space below title */
    }

    #topBanner2 img {
        margin-bottom: 10px; /* Space below logo */
    }

    #topBanner2 h1 {
        font-size: 24px; /* Adjust font size for smaller screens */
    }

    .nav-buttons {
        grid-template-columns: 1fr; /* Single column layout for buttons */
        gap: 5px; /* Space between buttons */
    }

    .nav-buttons a {
        font-size: 14px; /* Adjust font size */
        padding: 6px 10px; /* Adjust padding */
    }
}

@media screen and (max-width: 480px) {
    #topBanner2 h1 {
        font-size: 20px; /* Further reduce font size */
    }

    .nav-buttons a {
        font-size: 12px; /* Further adjust font size */
        padding: 4px 8px; /* Adjust padding */
    }
}
.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, adjust as needed */
    max-width: 600px; /* Max width for larger screens */
    position: relative;
}

.modal-image {
    max-width: 30%;
    height: auto;
    margin-bottom: 10px;
}
/* Modal container */
/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.cart-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .cart-modal-content {
        width: 90%;
        max-width: 500px;
    }
}

/* Cart Items */
.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Close button */
.cart-modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Modal header */
.cart-modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Form and input styles */
.cart-modal-content form {
    margin-bottom: 20px;
}

.cart-modal-content form label {
    font-weight: bold;
}

.cart-modal-content form input[type="text"],
.cart-modal-content form input[type="number"],
.cart-modal-content form input[type="email"],
.cart-modal-content form textarea {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.cart-modal-content form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.cart-modal-content form button:hover {
    background-color: #45a049;
}

/* Styling for cart items and summary */
.cart-modal-content #cart {
    margin-bottom: 20px;
    max-height: 300px; /* Limit height and enable scrolling if needed */
    overflow-y: auto; /* Enable vertical scrolling */
}

.cart-modal-content .cart-summary {
    margin-top: 20px;
    padding: 10px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cart-modal-content .cart-summary table {
    width: 100%;
    border-collapse: collapse;
}

.cart-modal-content .cart-summary th,
.cart-modal-content .cart-summary td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cart-modal-content .cart-summary .amount-box {
    font-weight: bold;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .cart-modal-content {
        width: 90%; /* Adjust width for smaller screens */
    }
}

.close {
    color: white;
    background-color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header h2 {
    margin-top: 0;
}

.modal-body {
    padding: 10px;
}
.upi-details {
    display: block;
    margin-left: 15px;
    font-weight: 500; /* Adjust the value to the desired weight, e.g., 400 for normal, 700 for bold */
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-item-info {
    flex: 1;
    text-align: center;
}

.amount-box {
    font-weight: bold;
    text-align: right;
}

.total-display {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 18px;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Initially visible */
    display: flex;
}

.loading-spinner {
    font-size: 24px;
    color: #333;
}

/* Hide the loading overlay once the page is loaded */
.loading-overlay.hidden {
    display: none;
}


@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .products-table {
        flex-direction: column;
        gap: 10px;
    }

    .product {
        width: 100%; /* Adjusting width for single product per row on small screens */
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
    }
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.cart-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
    width: 90%;
    position: relative; /* Ensure relative positioning for absolute close button */
}


/* Table for MRP, Offer Price, and Sales Price */
.product-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.product-details-table th,
.product-details-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.product-details-table th {
    background-color: #f2f2f2;
}

/* Input field radius adjustment */
.quantity-input {
    width: 50px;
    text-align: center;
    border-radius: 3px; /* Adjust border radius as needed */
}
.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.summary-table th, .summary-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.summary-table th {
    background-color: #f2f2f2;
}

.amount-box {
    text-align: right;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th, .cart-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.cart-table th {
    background-color: #f4f4f4;
}

.cart-table td button {
    margin: 0 5px;
    padding: 5px;
    background-color: #14A44D;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.cart-table td button.remove-btn {
    background-color: #f44336; /* Change background color to red */
}

.cart-table td input[type="number"] {
    width: 50px;
    text-align: center;
}
/* Promo Banner Styling */
.promo-banner {
    background-color: #d9b94c;
    border: 15px solid #d9b94c;
    color: #7a0100;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.promo-banner2 {
    background-color: #7a0100;
    border: 15px solid #7a0100;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.promo-banner h2 {
    color: #7a0100;    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}
blockquote {
    font-family: Arial;
    background-color: #F8EFBE;
    border-left-color: #F4B514;
  }
  
  #contactme {
    background-color: black;
    color: white;
    height: 180px;
  }
  
  
  #navbar {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
  }
  
  .top-nav {
    background-color: #671100;
  }
  
  .top-nav a {
    color: #d3e316;
  }
  
  h1.headingStatement {
    font-family: Monospace;
    font-size: 2em;
  }
  
  /* Ensure the navbar toggles correctly on small screens */
@media screen and (max-width: 767px) {
    .navbar-toggle {
        display: block; /* Show the toggle button on small screens */
    }

    .navbar-collapse.collapse {
        display: none !important; /* Ensure collapsed menu is hidden by default */
    }

    .navbar-collapse.collapse.in {
        display: block !important; /* Show menu when toggle is activated */
    }
}

/* Additional styling for the toggle button bars */
.navbar-toggle .icon-bar {
    background-color: #fff; /* White color for the bars */
}

  /* bootstrap override */
  
  a.btn-primary:hover {
    text-decoration: none;
  }
  
  .navbar-nav li a:hover {
      background-color: white;
      border-radius: 10px;
  }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #cccccc;
    border-radius: 1px;
  }

.promo-banner p {
    color: #7a0100;
        font-size: 16px;
    margin: 8px 0;
    font-family: 'Arial', sans-serif;
    font-weight: bolder;
}

.promo-banner2 p {
    color: #ffffff;
    font-size: 16px;
    margin: 8px 0;
    font-family: 'Arial', sans-serif;
    font-weight: bolder;
}

.promo-banner .note {
    font-style: italic;
    font-size: 14px;
    color: #7a0100;
}

.promo-banner .tags {
    font-size: 14px;
    color: #7a0100;
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-banner {
        padding: 15px;
    }

    .promo-banner h2 {
        font-size: 20px;
    }

    .promo-banner p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 10px;
    }

    .promo-banner h2 {
        font-size: 18px;
    }

    .promo-banner p {
        font-size: 12px;
    }
}

.image-modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; /* Sits on top */
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
