/* Shop CSS Stylesheet */
::-webkit-scrollbar {
  display: none;
}
 /* Modern Shop Categories Section */
 .shop-categories {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff; /* Light grey background */
    
}

/* Main Container */
.shop-container {
    max-width: 100vw;
    margin: auto;
    padding: 0px;
    background: #ffffff; /* White background for clean look */
    border-radius: 0px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.shop-container h2{
    font-size: 2rem;
    color: var(--heading-primary);
    font-family: 'Secular One', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;}
/* Category Grid - Responsive */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust column width */
   
}

/* Individual Category Card */
.category-item {
    background:transparent;
    padding-top: 20px;
    border-radius: 0px; /* Slight rounding for a modern look */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Category Image - Maintain Same Ratio */
.category-item img {
    width: 250px; /* Scale dynamically */
    max-width: 250px;
    height: 250px; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 50%; /* Circular shape */
    transition: transform 0.3s ease;
}

/* Category Title */
.category-item h3 {
    color: var(--heading-primary);
    font-size: 20px; /* Slightly smaller for mobile */
    margin: 10px 0 5px;
    font-weight: 700;
}

/* Category Description */
.category-item p {
    color: var(--text-primary);
    font-size: 14px; /* Adjust size for readability on small screens */
    padding: 0 5px;
}

/* Hover Effects - Consistent */
.category-item:hover h3 {
    color:  #cb1919;
    transform: scale(1.1);
    transition: ease-in-out 0.2s;
}
.category-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on mobile */
        gap: 10px; /* Adjust spacing for smaller screens */
        padding: 0px;
    }

    .category-item img {
        width: 170px;
        height: 170px; /* Smaller image size for mobile */
    }

    .category-item h3 {
        font-size: 18px; /* Adjust title size for readability */
    }
    .category-item p {
        font-size: 12px; /* Adjust description size */
    }
    .shop-container {
        max-width: 100vw;
        margin: auto;
        background: #ffffff; /* White background for clean look */
        border-radius: 0px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }
}
/*Ensure body and html take full height */
html, body {
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
}

/* Make the main content section expand to push footer down */
.container {
    flex: 1;
}

/* ========== MODERN HIMALAYAN FRUITS SECTION ========== */
#himalayan-fruits-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(300deg, #A91101 10%, #cb5710 90%);
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 5px 36px rgba(169,17,1,0.15);
}

#himalayan-fruits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cover1 copy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

#himalayan-fruits-section .content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px 50px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

#himalayan-fruits-section .slogan {
    flex: 1;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Secular One', sans-serif;
    opacity: 0;
    transform: translateX(-60px);
    animation: fade-slide-in-left 1.2s 0.2s forwards;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#himalayan-fruits-section .slogan p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.95;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

#himalayan-fruits-section .fruit-image {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(60px);
    animation: fade-slide-in-right 1.2s 0.4s forwards;
}

#himalayan-fruits-section .fruit-image img {
    width: 70%;
    max-width: 400px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

#himalayan-fruits-section .fruit-image img:hover {
    transform: scale(1.05);
}

@keyframes fade-slide-in-left {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-slide-in-right {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    #himalayan-fruits-section {
        padding: 30px 15px;
        min-height: 350px;
    }

    #himalayan-fruits-section .content {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
        border-radius: 20px;
    }

    #himalayan-fruits-section .slogan {
        font-size: 1.4rem;
        text-align: center;
    }

    #himalayan-fruits-section .slogan p {
        font-size: 1.1rem;
    }

    #himalayan-fruits-section .fruit-image img {
        width: 85%;
    }
}
/* 🔹 Recently Viewed Section Styling */


/* 🔹 Featured Products Section */
#featured-products {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    margin-top: 0%;
    text-align: center;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari */
}

.product-list {
    display: flex;
    gap: 25px;
}

.product-section h2 {
    font-size: 2rem;
   
    font-family: 'Secular One', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

#recently-viewed-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    cursor: pointer;
}

#recently-viewed-list {
    display: flex;
    overflow-x: auto;
    gap: 15px;
}

/* ========== MODERN PRODUCT CARDS ========== */
.product-card {
    flex: 0 0 auto;
    width: 240px;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform:scale(1.01);
    box-shadow: 0 8px 24px rgba(169,17,1,0.15);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-card img:hover {
    transform: scale(1.01);
}

.product-card h3 {
    font-size: 1.1rem;
  
    font-weight: 600;
    margin: 10px 0;
    font-family: 'Secular One', sans-serif;
}

.product-card p {
    font-size: 0.9rem;

    margin-bottom: 5px;
}

.product-card .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #006837;
    margin-bottom: 10px;
}

.product-card .mrp {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.product-card button {
    background: linear-gradient(90deg, #a91101 60%, #e74c3c 100%);
    color: #fff;
    border: 2px solid #a91101;
    font-family: 'Poppins', sans-serif;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    font-weight: 700;
    letter-spacing: 0.1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(169,17,1,0.2);
}

.product-card button::after {
    content: '';
    position: absolute;
    left: -60%; top: 0; width: 60%; height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: left 0.5s cubic-bezier(.4,0,.2,1);
    z-index: 0;
}

.product-card button:hover::after {
    left: 110%;
}

.product-card button:hover {
    background: #fff;
    color: #a91101;
    border: 2px solid #a91101;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(169,17,1,0.25);
    transform: translateY(-2px);
}

/* Slogan Container Styling */
.slogan-container {
    display: flex;
    border-top: solid 1px #cb1919;
    max-width: 90vw;
    justify-content: center;
    align-items: center;
    height: 150px; /* Adjust height as needed */
    background: rgb(255, 255, 255);
   flex-direction: column;
   align-self: center;
    margin: 60px 10px; /* Space around the container */
}

/* Slogan Text Styling */
.slogan-container p{
    font-size: 1.8rem; /* Adjust size for emphasis */
 
    font-family: 'Secular one', sans-serif;
    font-weight:lighter;
    text-align: center;
    letter-spacing: 1px; /* Slight spacing for elegance */
}
.slogan-container strong{
    font-weight: bold; /* Bold styling for emphasis */
    color:  #006837; /* Optional black color for key words */
}


@media (max-width: 768px) {

    .slogan-container p {
        font-size: 1.6rem; /* Smaller font for mobile */
        letter-spacing: 1.5px;
    }
.shop-container h2{
    font-size: 26px;
}
.product-card {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 185px;
  
}
.product-section h2{
    font-size: 26px;
}
.product-card img {
    width: 100%; /* Full width of the container */
    height: 100px; /* Fixed height to maintain consistency */
}

.product-card h3 {
    font-size: 13px;
 

}

.product-card p {
    font-size: 14px;

}

.product-card .price {
    font-size: 16px;
    font-weight: bold;
    color: #006837; /* Bold color for sale price */
}

.product-card .mrp {
   
    margin-right: 10px;
}

.product-card button {

    padding: 5px 5px;
    margin-top: 05px;
   
}

  
}
