/* ====== GENERAL STYLES ====== */ 
body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #B0E0E6 !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ====== HEADER STYLES ====== */
.sh-header-main {
    background-color: #00BFFF !important;
    color: #1a1a1a !important;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 2px 2px !important; /* Reduced header height */
    border-bottom: 2px solid #f0f0f0 !important;
}

/* Reduce Space Between Sections */
.sh-section {
    margin-bottom: 5px !important;
    padding: 5px 0 !important;
    animation:3D 2s ease-in-out !important;
}

/* Footer Styling */
.sh-footer-main {
    background-color: #1A1A1A !important;
    color: #696969 !important;
    padding: 10px 0 !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Footer Navigation Menu - Mobile View Only */
@media (max-width: 768px) {
    .sh-footer-menu {
        display: flex !important;
        justify-content: space-around !important;
        width: 100% !important;
    }

    .sh-footer-menu a {
        text-decoration: none !important;
        color: #333 !important;
        font-size: 14px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .sh-footer-menu i {
        font-size: 20px !important;
        margin-bottom: 3px !important;
    }
}

/* Navigation Menu */
.sh-navigation-menu {
    border-radius: 15px !important; /* Reduced border radius */
    background: #F5F5F6 !important;
}

/* ====== PRODUCT CARD STYLING WITH 3D LOOK ====== */
.sh-product-card {
    border: 0px solid #E0E0E0 !important;
    border-radius: 10px !important;
    transition: all 0.2s change to next image !important;
    overflow: hidden !important;
    background: #F5F5F5 !important;
    padding: 2px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transform-style: preserve-3d !important;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2) !important;
}

.sh-product-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 10px 10px 0 0 !important;
    transition: transform 0.3s ease-in-out !important;
}

.sh-product-card:hover {
    transform: rotateY(10deg) scale(1.05) !important;
    box-shadow: 0 12px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Section and Banner Animation */
@keyframes flip3D {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(180deg);
    }
}

.sh-image-section {
    animation: flip3D 2s ease-in-out  !important; /* Added animation to next image section */
}

/* Buy Now Button */
.sh-product-buy-now-button {
    color: #FFFFFF !important;
    padding: 10px 14px !important;
    background: #FF5722 !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    transition: background 0.3s ease !important;
}

.sh-product-buy-now-button:hover {
    background: #E64A19 !important;
}
