/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 700px;
    overflow: hidden;
    font-family: "Bricolage Grotesque", sans-serif;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 10%;
    right: 10%;
    max-width: 600px;
    color: black;
    padding: 2rem;
    border-radius: 8px;
    text-align: right;
    width: 100%;
}

.banner-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-list {
    display: flex;
    gap: 1.5rem;
    margin-top: 5rem;
    justify-content: flex-end;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

.feature-list-item {
    text-align: center;
    padding: 0.4rem 0.6rem;
    color: #9be2a4;
    background-color: #1b1b1b;
    border-radius: 18px;
}

.feature-list-item h3 {
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
    padding: 0.2rem 0.8rem;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin: 0 0 2rem 0;
    font-weight: 700;
    color: #773700;
    line-height: 1.1;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    letter-spacing: -0.5px;
}

.banner-content .btn-primary {
    font-size: 1.1rem;
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    background-color: #6bb252;
    color: white;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #6bb252;
    color: white;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #64ad49;
    transform: translateY(-1px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: #6bb252;
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #6bb252;
    transform: scale(1.2);
}

/* Stats Section */
.stats-section {
    padding: 7rem 2rem;
    background-color: #fffff1;
    font-family: "Bricolage Grotesque", sans-serif;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: #d3ffd4;
    border-radius: 30px;
    border: 1px solid #93db96;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-1px);
    border-color: #dbdbdb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6bb252;
    margin-top: 0.5rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #6bb252;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: black;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Category Section */
.category-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    font-family: "Bricolage Grotesque", sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.category-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    padding: 0 15px;
}

.category-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fcf4e7;
    border-radius: 40px;
    padding: 25px 8px;
    transition: all 0.3s ease-in-out;
    flex: 0 0 calc(25% - 20px);
    max-width: 300px;
    margin: 10px;
}

.category-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    width: 220px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.category-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img{
    transform: translateY(-5px);
}

.category-card h3 {
    padding: 5px;
    margin: 0;
    font-size: 1.4rem;
    color: #333;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #f5f5f5;
    border: 1px solid #eeeeee;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-1px);
    border-color: #dbdbdb;
}

.product-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    object-fit: contain;
    padding: 4px;
    transition: all 0.3s ease-in-out;
}

.product-card:hover .product-img img, .product-card:hover .product-badge {
    transform: scale(1.004);
}

.product-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #6bb252;
    color: white;
    padding: 2px 12px;
    border-radius: 0 20px 0 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btnWish{    
    position: absolute;
    outline: none;
    border: none;
    top: 10px;
    left: 10px;
    background-color: #f5f5f5;
    color: #ff0000;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 40px 0 40px 0;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btnWish.active{
    background-color: #ff0000;
    color: #f5f5f5;
}

.product-card:hover .btnWish i{
    animation: wishanimation 1s ease-in-out;
}

@keyframes wishanimation {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0px);
    }
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    max-height: 2.8em;
    padding: 1px 16px;
}

.product-hindi {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 2px;
    min-height: 1.2em;
    padding: 1px 16px;
    line-height: 1.3;
}

.product-details {
    padding-top: 0;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.product-selectors {
	display: flex;
	gap: 10px;
	margin: 0 8px;
}

.product-selectors .dropdown {
	flex: 1;
	min-width: 100px;
}

.product-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

.product-category {
    font-size: 0.85rem;
    color: #6bb252;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 0 16px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    background-color: #b9e9cd;
    padding: 12px;
    height: 100%;
    flex-grow: 1;
}

.add-to-cart {
    background-color: #292929;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    height: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    padding: 12px 40px;
    background-color: #000000;
}

.add-to-cart:active {
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 60px;
}

.footer-top {
    padding: 70px 40px;
    background-color: #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #6bb252;
}

.footer-about {
    margin-bottom: 20px;
    color: #b3b3b3;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2a2a2a;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #6bb252;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #6bb252;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 10px;
    font-size: 12px;
    color: #6bb252;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #b3b3b3;
}

.contact-info i {
    margin-right: 15px;
    color: #6bb252;
    margin-top: 5px;
}

.contact-info a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #6bb252;
}

.newsletter h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.newsletter p {
    color: #b3b3b3;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: #2a2a2a;
    color: #ffffff;
    outline: none;
}

.newsletter-form button {
	position: absolute;
    right: 0;
    top: 0;
    height: 80%;
    border: none;
    background: #6bb252;
    margin: 4px;
    border-radius: 5px;
    color: #ffffff;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #5a9e41;
}

.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #b3b3b3;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 24px;
    color: #b3b3b3;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: #6bb252;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #6bb252;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #5a9e41;
    transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .category-card {
        flex: 0 0 calc(33.333% - 150px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widget:last-child {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner-content {
        right: 5%;
        max-width: 80%;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid, .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item, .feature-item {
        width: 100%;
        max-width: 400px;
    }

    .banner-content {
        padding: 1.5rem;
        text-align: center;
        right: 5%;
        left: 5%;
        max-width: 90%;
        transform: none;
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .banner-content-wrapper {
        align-items: center;
    }
    
    .feature-list {
        justify-content: center;
        margin: 2rem auto 0;
        max-width: 100%;
    }
    
    .feature-list-item h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .banner-slider {
        height: 30vh;
    }

    .product-info {
        padding: 14px 12px;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .add-to-cart {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .banner-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-list {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .category-card {
        flex: 0 0 calc(50% - 200px);
        border-radius: 20px;
        padding: 15px 10px;
    }
    
    .category-grid {
        gap: 10px;
        padding: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .category-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .category-card h3{
        font-size: 18px;
    }

    .category-img{
        height: 120px;
        width: 120px;
    }
}

@media (max-width: 480px) {
    .banner-content .btn-primary{
        padding: 6px 14px;
        font-size: 1.15rem;
    }

    .banner-content h1{
        font-size: 1.8rem;
    }
    .category-card {
        flex: 0 0 calc(33.333% - 100px);
        margin: 0;
    }
    .category-grid {
        gap: 12px;
        padding: 0 5px;
    }

    .category-img{
        height: 90px;
        width: 90px;
    }
    .feature-list-item h3{
        font-size: 0.8rem;
        padding: 0.05rem 0.4rem;
    }
}
