/* General Reset */
.s-quick-order-container {
    background-color: #191a30 !important;
}
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #191a30;
    color: #c7ccd5;
    overflow-x: hidden;
}

/* Navigation Bar */
.main-nav-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.main-nav-container a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.main-nav-container a:hover {
    color: #ff7f50;
}

/* Product Card Styling */
.s-product-card-entry {
    position: relative;
    padding: 20px;
    margin: 10px;
    background-color: #22233e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-product-card-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.s-product-card-entry img {
    max-width: 100%;
    border-radius: 8px;
}

.s-product-card-entry .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff7f50;
}

/* Buttons */
.s-button-element {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(90deg, #6639ca, #ff7f50);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.s-button-element:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #ff7f50, #6639ca);
}

/* Tooltip */
.product-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    display: none;
}

.s-product-card-entry:hover .product-tooltip {
    display: block;
}

/* Wishlist Button */
.wishlist-button {
    padding: 5px 10px;
    font-size: 0.9rem;
    background-color: #333;
    color: #fff;
    border: 1px solid #ff7f50;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.wishlist-button.wishlist-added {
    background-color: #ff7f50;
    color: #000;
}

.wishlist-button:hover {
    background-color: #ff7f50;
    color: #fff;
}

/* Countdown Timer */
.countdown-timer {
    font-size: 1rem;
    color: #c7ccd5;
    background-color: #1b1b34;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
}

/* Horizontal Scroll Section */
.product-section {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px 0;
}

.product-section::-webkit-scrollbar {
    height: 8px;
}

.product-section::-webkit-scrollbar-thumb {
    background: #6639ca;
    border-radius: 4px;
}

.product-section::-webkit-scrollbar-track {
    background: #333;
}

/* Dynamic Background Animation */
.product-background {
    background: linear-gradient(-45deg, #6639ca, #fdde0a, #122d40, #ab93df);
    background-size: 400% 400%;
    animation: backgroundShift 10s ease infinite;
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .s-product-card-entry {
        margin: 15px auto;
    }

    .s-button-element {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .s-product-card-entry .price {
        font-size: 1.2rem;
    }
}
.home-slider__content a {
    background: #6639ca; /* Purple background */
    color: #ffffff; /* White text */
    padding: 12px 40px;
    border-radius: 16px;
    font-size: 20px;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    margin-top: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}