/* Global Styling */
body {
    font-family: "Poppins", sans-serif;
    background-color: #fdfdfd; /* Soft neutral background */
    color: #333; /* Standard text color */
    margin: 0;
    padding: 0;
}

/* Header Styling */
.sh-header-main {
    background-color: #fff; /* White background */
    color: #000; /* Darker text for visibility */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    
}

/* Banner Section */
.sh-banner {
    background: linear-gradient(90deg, #ffdb58, #ffd700); /* Golden gradient */
    color: #333;
    text-align: center;
    padding: 40px 20px;
    font-size: 24px;
    font-weight: bold;
}

.sh-banner img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.sh-product-card {
    background-color: #fff;
    border: 1px solid #e6e6e6; /* Light border */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sh-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sh-product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: #f9f9f9; /* Subtle background for image area */
    padding-top: 0px;
}

.sh-product-card-name {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

.sh-product-card-price {
    color: #f8b400;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0;
    text-align: center;
}

.sh-product-card-discount-tag {
    background: #f44336; /* Red for discount */
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 8px 8px 0;
    
}

/* Buttons */
.sh-solid-button {
    background: linear-gradient(90deg, #ff9800, #f8b400); /* Gradient button */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 10px auto;
    text-align: center;
    transition: all 0.3s ease;
}

.sh-solid-button:hover {
    background: #f57c00; /* Darker shade on hover */
    transform: translateY(-2px);
}


/* Category Card Styling with Animated Gradient Border */
.sh-category-card {
    background-color: #fff;
    
    border-image-slice: 1;
    border-radius: 8px; /* Smooth rounded edges */
    padding: 20px;
    margin: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient Border Animation */
.sh-category-card:before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px; /* Slightly larger radius for the animated effect */
    padding: 4px;
    background-size: 200% 200%;
    animation: gradient-border-anticlockwise 3s linear infinite; /* Anticlockwise animation */
    z-index: -1; /* Behind the card */
}

@keyframes gradient-border-anticlockwise {
    0% {
        background-position: 100% 50%; /* Start from the right */
    }
    50% {
        background-position: 0% 50%; /* Move to the left */
    }
    100% {
        background-position: 100% 50%; /* Return to the right */
    }
}

/* Hover Effect */
.sh-category-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.sh-footer-main {
    background-color:#000 !important;
    
    background-size: fill; /* Ensures the image covers the footer evenly */
    color: #fff; /* Ensure footer text remains visible over the image */
    /*padding: 20px 0;  Adjust padding for better spacing */
     /* Center-aligns footer content */
    position: relative; /* For positioning of additional elements, if needed */
}
.sh-footer-icon
{
color:#fff;
}
