/* General Styling */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-padding-top: 70px; /* Adjust the value based on your nav bar height */
    scroll-behavior: smooth;
}


/* Hero Section */
.shop-hero-section {
    height: 600px;
    background-image: url('/images/shop/Shop-hero-image.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shop-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-top: 50px;
}

.shop-hero-title {
    font-size: 2em;
    margin-bottom: 10px;
}

.shop-hero-subtitle {
    font-size: 1.5em;
}

/* Ecwid Store Section */
.shop-ecwid-section {
    padding: 40px 20px;
    text-align: center;
}

.ecwid-container {
    max-width: 90%; /* Ensure the Ecwid store is limited in size */
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9; /* Light background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Shopping Bag Widget - Pinned */
.ec-cart-widget {
    position: fixed;
    top: 80px; /* Adjust the vertical position */
    right: 30px; /* Adjust the horizontal position */
    z-index: 999; /* Ensure it appears above other elements */
    background-color: rgb(0, 238, 171); /* Add background if needed */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.872);
    
}

@media (max-width: 768px) {
    /* Ensure the hero section stays responsive */
    .shop-hero-title {
        font-size: 2.2em;
    }

    .shop-hero-subtitle {
        font-size: 1.2em;
    }

    .ecwid-container {
        padding: 10px;
    }
}



/* ///////////////// FOOTER ADDRESS STYLING  ////////////////// */
.footer-address p {
    text-align: center;
    margin-top: 20px;
    
    font-size: 1.5em;
}

.footer-address a {
    color: #0ae1a4;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    
}

.footer-address a:hover {
    color: #fbff00;
    filter: drop-shadow(0 0 5px rgb(1, 1, 1));
}

.footer-copyright {
    margin-top: 30px;
   
}