.swiper-wrapper
{justify-content: space-evenly
}
/* Header Styling with GIF Effect */
/* Header Styling */
.sh-header-main {
    /*background: url('https://tenor.com/4RhR.gif') no-repeat center center / contain;  GIF Background */
    color: #fff; /* Text color for contrast */
    
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow 
}


/* Add to Cart Button Styling */
.sh-solid-button {
    padding: 0.6em 2em;
    color: #fff;
    background: linear-gradient(90deg, #ff7300, #ff0000);
    border: none;
    border-radius: 0; /* Removed round corners */
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}
.sh-solid-button:hover {
    background: #fff;
    border: 1px solid orange;
    color: orange; /* Ensure text remains visible */
}
.sh-solid-button:active {
    background: #ff7300;
    transform: scale(0.98);
}

/* Enhanced Discount Tag Styling */
.sh-product-card-discount-tag {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(45deg, #ff0000, #ff7300); /* Gradient background */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    padding: 4px 8px;
    border-radius: 4px; /* Slight rounding for a polished look */
}

/* Product Card Styling */
.sh-product-card {
    border: 1px solid #E5E5E5 !important;
    border-radius: 8px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sh-product-card:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* Glowing Button Effect (Plus/Minus) */
.sh-product-plus-minus-button {
    padding: 0.6em 2em;
    color: #fff;
    background: rgb(254, 168, 0);
    border: none;
    border-radius: 0; /* Removed round corners */
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.sh-product-plus-minus-button:before {
    content: "";
    background: linear-gradient(
        45deg,
        #ff0000,
        #ff7300,
        #fffb00,
        #48ff00,
        #00ffd5,
        #002bff,
        #7a00ff,
        #ff00c8,
        #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    filter: blur(5px);
    animation: glowing-button 20s linear infinite;
}
@keyframes glowing-button {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
.sh-product-plus-minus-button:hover {
    color: rgb(254, 168, 0);
    background: #fff;
    border: 1px solid rgb(254, 168, 0);
    transform: scale(1.02); /* Slight scaling for hover effect */
}

/* Footer */
.sh-footer-main {
    background-color: #000;
    color: #fff;
}
.sh-footer-icon {
    color: #fff;
}

/* Swiper Wrapper */
.swiper-wrapper {
    justify-content: center !important;
}
