body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: urbanist;
    color: #000000;
    overflow-x:hidden;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container */
    border-radius: 50%;
}


.promotion-bar {
    background-color: rgb(236, 236, 177); 
    color: hsl(0, 0%, 0%); /* White text color */
    padding: 15px 20px; /* Adjust padding for top and bottom */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other elements */
    position:fixed; /* Fixed position */
    height: 20px; /* Adjust height as needed */
    box-sizing: border-box; /* Ensure padding and border are included in the height calculation */
}

.promo-text {
    font-weight: bold;
    text-align: center;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    background-color: rgb(255, 255, 255);
    margin-top: 30px;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

header li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
}

header img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header i {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

.logo img {
    max-width: 100px;
    height: auto;
}

.navmenu {
    display: flex;
}
  
.navmenu a {
    color: black;
    font-size: 18px;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 400;
    transition: all .42s ease;
}
  
.navmenu a:hover {
    color: rgb(87, 87, 87);
}
  
.nav-icon {
    display: flex;
    align-items: center;
}
  
.nav-icon i {
    margin-right: 20px;
    color: black;
    font-size: 25px;
    font-weight: 400;
    transition: all .42s ease;
}
  
.nav-icon i:hover {
    transform: scale(1.1);
    color: rgb(73, 73, 73);
}
  
#menu-icon {
    font-size: 35px;
    color: black;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

@media (max-width: 890px) {
    header {
        padding: 20px 3%;
        transition: .4s;
    }
    #menu-icon {
        display: block;
    }
}
  
@media (max-width: 750px) {
    .navmenu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 200px;
        height: 100vh; /* This height might be excessive, consider adjusting */
        background: #ffffff; 
        display: flex; 
        flex-direction: column; 
        align-items: center;
        padding: 10px 10px;
        transition: all .42s;
    }
  
    .navmenu a {
        display: block;
        margin: 18px 0; 
    }
  
    .navmenu.open {
        right: 0;
    }
    #menu-icon {
        display: block;
    }
} 
.hero {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh; /* Adjust height as needed */
    overflow: hidden; /* Ensures the image does not overflow */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    padding: 10px;
    filter: blur(5px); /* Adjust the blur amount as needed */
}

.hero-content {
    max-width: 40%; /* Adjust the width of the content area */
    padding: 100px;
    color: #000000;
    z-index: 1; /* Ensure content is above the image */
    
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 600;
}



.hero-content h3 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color:#170404;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #000000;
}



.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.centered-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.category-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Center align items */
    gap: 2rem; /* Space between items */
    padding: 2rem 1rem;
    max-width: 90%;
}

.category {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    flex: 1 1 calc(20% - 2rem); /* Adjust width calculation to fit 5 items per row */
    max-width: calc(20% - 2rem); /* Adjust max-width to fit 5 items per row */
    min-width: 160px; /* Minimum width to prevent too small categories */
    box-sizing: border-box; /* Ensure padding and margin are included in width */
}

.category:hover {
    transform: translateY(-5px);
}

.category-image {
    margin-bottom: 0.75rem; /* Space between image and name */
}

.category-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1; /* Keep square shape */
    object-fit: cover;
    border-radius: 50%;
    max-width: 180px; /* Control maximum size */
    min-width: 120px; /* Control minimum size */
}

.category-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    white-space: nowrap; /* Keep names in single line */
    overflow: hidden; /* Hide overflow */
    text-overflow: ellipsis; /* Add ... if text is too long */
    line-height: 1.2; /* Consistent line height */
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
}

/* Media Query for Responsive Design - Same logic as flex-list */
@media (max-width: 1024px) {
    .category {
        flex: 1 1 calc(33.33% - 2rem); /* Three items per row on tablets */
        max-width: calc(33.33% - 2rem);
    }
}

@media (max-width: 768px) {
    .category {
        flex: 1 1 calc(50% - 2rem); /* Two items per row on mobile devices */
        max-width: calc(50% - 2rem);
    }
    
    .category-name {
        white-space: normal; /* Allow wrapping on mobile if needed */
    }
}

@media (max-width: 480px) {
    .category {
        flex: 1 1 calc(100% - 2rem); /* One item per row on very small screens */
        max-width: calc(100% - 2rem);
    }
    
    .category-image img {
        max-width: 120px;
        min-width: 100px;
    }
    
    .category-name {
        font-size: 1rem;
    }
}

.product-card {
    width: 19%; /* Adjust width for larger cards */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px; /* Increase padding for larger card size */
    margin-bottom: 20px;
    margin-right: 1%; /* Space between the cards */
    box-sizing: border-box; /* Ensure padding and border are included in the width calculation */
    background-color: #ffffff;
    transition: transform 0.2s ease; /* Smooth transition for hover effect */
    height: 100%;
}

.product-card:nth-child(5n) {
    margin-right: 0; /* Remove margin on the last item of each row */
}

.product-card:hover {
    transform: translateY(-5px); /* Move the card slightly up on hover */
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-card p {
    margin-bottom: 10px;
}

.price-details {
    margin-bottom: 10px;
}

.discount-price {
    color: red;
    font-size: 18px;
    font-weight: bold;
}

.original-price {
    color: #777;
    text-decoration: line-through;
    margin-right: 5px;
}

.discount {
    font-style: italic;
    color: green;
}

button {
    padding: 8px 16px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ffffff;
    color: #000000;
}
#rtn-product-list {
    overflow-x: auto; /* Enable horizontal scrolling */
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    scrollbar-width: thin; /* Specify the width of the scrollbar */
}

/* Track */
#rtn-product-list {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

#rtn-product-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

#rtn-product-list::-webkit-scrollbar-track {
    background: transparent;
}

#rtn-product-list::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

#rtn-product-list::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}


.section.feature {
    padding: 40px 0; /* Adjust padding as needed */
}

.container-feature {
    max-width: 1200px; /* Adjust max-width as needed */
    margin: 0 auto; /* Center align the container */
}

.h2-large.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1em;
    color: #000000;
    font-family: "Urbanist", sans-serif; /* Ensure Urbanist font is applied */
    font-weight: 600;   
}

.flex-list {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: space-between; /* Adjust alignment as needed */
    gap: 20px; /* Adjust gap between items */
    padding: 0;
    list-style: none;
}

.flex-item {
    flex: 1 1 calc(33.33% - 20px); /* Adjust width calculation to fit three cards per row */
    max-width: calc(33.33% - 20px); /* Adjust max-width to fit three cards per row */
    background-color: #ffffff;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Optional: Add transitions */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    display: flex; /* Enable flexbox for .flex-item */
    flex-direction: column; /* Arrange children in a column layout */
}

.feature-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center; /* Center align text content */
}



.card-icon {
    width: 100px; /* Fixed width */
    height: 100px; /* Fixed height */
    object-fit: cover; /* Ensures the aspect ratio is maintained */
    border-radius: 8px;
}

.h3.card-title {
    font-size: 1.5em; /* Reduced from 1.5em */
    margin: 0.5em 0;
    color: #000000;
    font-family: "Urbanist", sans-serif; /* Ensure Urbanist font is applied */
}

.card-text {
    font-size: 1em; 
    color: #7e7a7a;
    line-height: 1.6;
    font-family: "Urbanist", sans-serif; /* Ensure Urbanist font is applied */
}

/* Media Query for Responsive Design */
@media (max-width: 1024px) {
    .flex-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row on tablets */
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .flex-item {
        flex: 1 1 calc(100% - 20px); /* One item per row on mobile devices */
        max-width: calc(100% - 20px);
    }
}



.footer {
    background-color:hsl(0, 0%, 97%);;
    color: #000000;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-section p, .footer-section ul, .footer-section form {
    margin: 10px 0;
    font-weight: 300;
    line-height: 1.6;
}
.footer-section p{
    color: #363636cb;
    text-decoration: none;
    transition: color 0.3s;
    font-family: urbanist;
}
.quick-links, .collections-links {
    list-style: none;
    padding: 0;
}

.quick-links li, .collections-links li {
    margin: 5px 0;
}

.quick-links li a, .collections-links li a {
    color: #363636cb;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links li a:hover, .collections-links li a:hover {
    color: #1f1f1f;
}

.social-icons, .shop-icons {
    display: flex;
}

.social-icon, .shop-icon {
    margin-right: 15px;
}

.social-icon img, .shop-icon img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

social-icon img:hover, .shop-icon img:hover {
    transform: scale(1.2);
}

.quick-contact-form input, .quick-contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.quick-contact-form button {
    background-color: #444;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quick-contact-form button:hover {
    background-color: #555;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-weight: 300;
    border-top: 1px solid #444;
    margin-top: 20px;
}

/* General styling for the offer section */
.offer-section {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #ffffff; /* Light background color */
    border: 1px solid #e0e0e0; /* Light border */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Prevents overflow issues */
    flex-wrap: wrap; /* Allows wrapping of child elements */
}

.image-container {
    flex: 1 1 50%; /* Allow image container to take up 50% of space by default */
    padding: 20px; /* Padding around the image */
    box-sizing: border-box; /* Ensures padding is included in width */
    text-align: center; /* Centers content horizontally */
}

.offer-image {
    max-width: 100%; /* Ensure the image does not exceed the container width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
    
}

.offer-content {
    flex: 1 1 50%; /* Allow content container to take up 50% of space by default */
    padding: 20px;
    box-sizing: border-box;
}

.offer-content h1 {
    font-size: 2.2em;
    margin-bottom: 10px; /* Spacing below title */
    color: #333; /* Dark text color */
}

.offer-content p {
    font-size: 1.1em;
    line-height: 1.6; /* Improved readability */
    color: #666; /* Medium text color */
    margin-bottom: 20px; /* Spacing below paragraphs */
}

.timer {
    font-size: 3em;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    color: #333;
}

.time-number {
    margin: 0 10px;
}

.shop-now {
    padding: 10px 20px;
    font-size: 1.2em;
    color: #fff;
    background-color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.shop-now:hover {
    background-color: #eeeeee;
    color: #000000;
}


.testimonial-section {
    background-color: #f0f0f0; /* Light gray background color */
    background-image: url('images/white.jpg'); /* Path to your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

.testimonial-heading {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.testimonial-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #777;
}

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}
 
.testimonial-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.customer-slider-section {
    width: 100%;
    padding-top: 4%;
    padding-bottom: 4%;
    margin: auto;
    background-color: #f7f7f7;
}

.customer-slider-header {
    text-align: center;
    padding: 20px;
   
}

.customer-slider-header h2 {
    margin: 10px;
    font-size: 40px;
    font-weight: bold;
}

.customer-slider-header p {
    margin: 5px 0 0;
    font-size: 20px;
    color: #666;
}

.customer-slider-container {
    position: relative;
    overflow: hidden;
    user-select: none; /* Prevent text selection while dragging */
}

.customer-slider {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.42, 0, 0.58, 1);
}

.customer-slide {
    flex: 0 0 calc(33.333% - 20px); /* 3 images on desktop */
    box-sizing: border-box;
    margin-right: 20px;
}

.customer-slide:last-child {
    margin-right: 0;
}

.customer-slide img {
    width: 100%;
    height: 300px;
    object-fit: contain; /* Changed from 'cover' to 'contain' to show full image */
    display: block;
    background-color: #f8f9fa; /* Light background to fill empty space */
}

.customer-prev-slide,
.customer-next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    border-radius: 4px;
    font-size: 18px;
}

.customer-prev-slide {
    left: 10px;
}

.customer-next-slide {
    right: 10px;
}

.customer-slider-container {
    cursor: grab;
}

.customer-slider-container:active {
    cursor: grabbing;
}

/* Mobile styles - show one complete image per slide */
@media (max-width: 768px) {
    .customer-slide {
        flex: 0 0 100%; /* Show only 1 image at a time on mobile */
        margin-right: 0; /* Remove margin on mobile */
    }

    .customer-slide img {
        height: 250px; /* Reduced height for mobile */
        object-fit: contain; /* Ensure full image is visible */
        background-color: #f8f9fa; /* Light background */
    }

    .customer-prev-slide,
    .customer-next-slide {
        padding: 8px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .customer-slide img {
        height: 200px; /* Even smaller height for very small screens */
        object-fit: contain; /* Keep full image visible */
    }
}
@media (max-width: 768px) {
    .product-card {
        width: 48%;
    }

    .hero-content {
        max-width: 70%;
        padding: 30px;
    }

    .flex-list {
        margin-left: 20px;
        margin-right: 20px;
    }

    .centered-heading {
        font-size: 24px;
    }

    .navbar-bottom ul li {
        margin: 0 3px;
    }

    .category {
        margin: 0 30px;
    }

    .category-image {
        width: 150px;
        height: 150px;
    }

    .feature-item {
        width: 48%;
        margin: 20px 1%;
    }
    .customer-slide {
        flex: 0 0 calc(50% - 10px); /* Adjust for 2 images at a time with space */
        margin-right: 10px; /* Space between images */
    }

    .customer-slide:last-child {
        margin-right: 0; /* Remove margin on the last slide */
    }

    .customer-slide img {
        height: 200px; /* Decrease height for mobile view */
    }

    .customer-button {
        padding: 8px; /* Smaller buttons on mobile */
    }
}
@media (max-width: 480px) {
    .body{
        overflow-x:hidden;
    }
    .main-wrapper {
        padding: 0 15px; /* Adjust padding for smaller screens */
    }
    .product-card {
        width: calc(50% - 4px); /* Two cards per row */
    }

    .navbar-bottom ul {
        text-align: center; /* Center align the navigation links */
    }

    .navbar-bottom ul li {
        display: block; /* Display each item as a block to stack vertically */
        margin: 10px 0; /* Add vertical margin between each item */
    }

    .navbar-bottom ul li a {
        display: inline-block; /* Ensure links behave like blocks to occupy full width */
        padding: 10px 20px; /* Add padding to the links for better touch targets */
    }
    .product-card img {
        max-width: 100%; /* Ensure image fills container width */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Ensures proper spacing and alignment */
        margin: 0 auto; /* Center aligns the image horizontally */
        border-radius: 5px; /* Rounded corners for the image */
    }

    .product-card p {
        margin-bottom: 10px; /* Spacing below the product description */
    }

    .price-details {
        margin-bottom: 10px; /* Spacing below the price details */
    }

    .discount-price {
        color: red;
        font-size: 18px;
        font-weight: bold;
    }

    .original-price {
        color: #777;
        text-decoration: line-through;
        margin-right: 5px;
    }

    .discount {
        font-style: italic;
        color: green;
    }

    button {
        padding: 8px 16px;
        background-color: #ffffff;
        color: #000000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button:hover {
        background-color: #ffffff;
        color: #000000;
    }

    .rtn-product-list .price-details {
    font-size: 15px;
    }
    .rtn-product-list .product-card p {
       font-size: 13px;
    }
    .nameplate-product-list,
    .dashavatar-product-list,
    .rtn-product-list,
    .h1 {
        font-size: 14px;
    }

    .hero-content {
        max-width: 90%;
        padding: 20px;
    }

    .flex-list {
        margin-left: 10px;
        margin-right: 10px;
    }

   
    .navbar-bottom ul li {
        margin: 0 2px;
    }

    .category-container {
        display: block; /* Change to block display for stacking */
        text-align: center; /* Center align categories */
    }
    
    .category {
        margin: 20px 0; /* Adjust vertical spacing between categories */
        width: 100%; /* Full width for categories */
    }
    
    .category-image img {
        width: 100%; /* Full width images for smaller screens */
        height: auto;
        border-radius: 0; /* Remove border-radius for full-width images */
        align-items: center;
    }
    
    .centered-heading {
        font-size: 28px; /* Adjust heading font size */
    }
    
    .category-name {
        font-size: 18px; /* Adjust category name font size */
        text-align: center; /* Center align category names */
    }
    .category-image img {
        align-items:center;
    }
    
    .offer-section {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center content horizontally */
    }

    .image-container {
        width: 100%; /* Full width for the image container */
        padding: 0; /* Remove padding for the image container */
        text-align: center; /* Center image horizontally */
    }

    .offer-image {
        width: 100%; /* Ensure the image uses full container width */
        height: auto; /* Maintain aspect ratio */
        max-height: 300px; /* Limit the maximum height */
        object-fit: cover; /* Ensure the image covers the container without distortion */
    }

    .offer-content {
        width: 100%; /* Full width for the content */
        padding: 10px; /* Adjust padding */
        text-align: center; /* Center content text */
    }

    .offer-content h1 {
        font-size: 1.5em; /* Adjust font size for heading */
        margin-bottom: 10px;
    }

    .offer-content p {
        font-size: 1em; /* Adjust font size for paragraph text */
        line-height: 1.4; /* Adjust line height for readability */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .timer {
        font-size: 1.5em; /* Adjust font size for the timer */
        margin-bottom: 15px; /* Adjust spacing */
        flex-direction: column; /* Stack timer numbers vertically */
        align-items: center; /* Center timer numbers horizontally */
    }

    .time-number {
        margin: 5px 0; /* Adjust vertical margin */
    }

    
    

}

/* View Product Button styling */
.view-product-btn {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;
    background-color: #170404;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.view-product-btn:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive styling */
@media (max-width: 480px) {
    .view-product-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* High specificity View Product Button styling to override browser defaults */
body .product-card a.view-product-btn {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;
    background-color: #170404;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none !important; /* Force override */
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

body .product-card a.view-product-btn:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none !important; /* Force override */
}

/* Login status styles */
.login-status-container {
    display: none;
}

.welcome-message {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.welcome-message p {
    margin: 0;
}

.logout-btn {
    background-color: #170404;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
}

.logout-btn:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-prompt p {
    margin: 0;
}

.login-prompt a {
    color: #170404;
    text-decoration: underline;
}

/* Login popup styles */
.login-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.login-popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.close-popup:hover {
    color: #000;
}

.goto-login-btn {
    background-color: #170404;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    max-width: 200px;
}

.goto-login-btn:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* User account dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    right: 0;
    top: 40px;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.logged-in-user i {
    color: #170404;
    font-size: 25px;
    margin-right: 20px;
}
@media (max-width: 768px) {
    .category-container {
        flex-direction: column;
        align-items: center;
    }
    
    .category {
        margin-bottom: 20px;
    }
    
    .category-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .category-image img {
        margin: 0 auto;
        max-width: 200px;
    }
    .timer {
        display: flex;
        flex-direction: row !important; /* Override any previous column setting */
        justify-content: center;
        margin: 15px auto;
        flex-wrap: nowrap;
        font-size: 1.5em;
    }
    
    .time-number {
        display: inline-block;
        padding: 5px;
        min-width: 40px;
        font-size: 0.9em;
    }
    
    .offer-content {
        text-align: center;
        padding: 15px;
    }
}


