/* Theme Generated CSS - Generated at 2026-05-12 07:13:44 */
/* Primary: #10b981 | Secondary: #059669 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --font-family: Montserrat, sans-serif;
}
.secondary-btn:hover {
  border-color: var(--btn-color);
  color:var(--text-color);
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 5px;
}

.product-card-demo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-demo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.gradient-text-demo {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/**start
/* Ensure all product cards have equal height */
.product-card {
    height: 100%;
    min-height: 550px; /* Adjust this value based on your design */
    display: flex;
    flex-direction: column;
}

/* Fixed height classes - DO NOT CHANGE */
.product-card .h-9 { height: 36px; }
.product-card .h-14 { height: 56px; }
.product-card .h-15 { height: 60px; }
.product-card .h-5 { height: 20px; }
.product-card .h-\[30px\] { height: 30px; }
.product-card .h-\[70px\] { height: 70px; }

/* Ensure consistent button heights */
.product-card button {
    min-height: 40px;
}

/* Price container styling */
.price-container {
    line-height: 1.3;
}

.price-container span {
    display: inline-block;
}

/* Line clamp utilities */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Add to your global CSS file */
.grid-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 768px) {
    .account-dropdown {
        position: static !important;
    }
    
    .account-dropdown .dropdown-menu {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
    }
}
/* Responsive Banner Styles */
@media (max-width: 640px) {
    .bottom-banner-slider-container .swiper-slide {
        height: auto;
    }
    
    /* Hide navigation arrows on mobile */
    .bottom-banner-slider-container .swiper-button-next,
    .bottom-banner-slider-container .swiper-button-prev {
        display: none;
    }
    
    /* Adjust pagination dots */
    .bottom-banner-slider-container .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
        background: white;
        opacity: 0.5;
    }
    
    .bottom-banner-slider-container .swiper-pagination-bullet-active {
        width: 8px;
        height: 8px;
        background: #10b981;
        opacity: 1;
    }
    
    /* Reduce text size further for very small screens */
    @media (max-width: 480px) {
        .bottom-banner-slider-container h3 {
            font-size: 1.25rem !important;
        }
        
        .bottom-banner-slider-container .text-emerald-300 {
            font-size: 1rem !important;
        }
        
        .bottom-banner-slider-container p {
            font-size: 0.75rem !important;
        }
        
        .bottom-banner-slider-container a {
            font-size: 0.7rem !important;
            padding: 0.5rem 1rem !important;
        }
    }
}

/* Tablet styles */
@media (min-width: 641px) and (max-width: 1023px) {
    .bottom-banner-slider-container .swiper-button-next,
    .bottom-banner-slider-container .swiper-button-prev {
        width: 35px;
        height: 35px;
        background: rgba(0,0,0,0.4);
        border-radius: 50%;
    }
    
    .bottom-banner-slider-container .swiper-button-next:after,
    .bottom-banner-slider-container .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .bottom-banner-slider-container .swiper-button-next,
    .bottom-banner-slider-container .swiper-button-prev {
        width: 50px;
        height: 50px;
        background: rgba(0,0,0,0.4);
        border-radius: 50%;
        transition: all 0.3s;
    }
    
    .bottom-banner-slider-container .swiper-button-next:hover,
    .bottom-banner-slider-container .swiper-button-prev:hover {
        background: rgba(16, 185, 129, 0.8);
    }
    
    .bottom-banner-slider-container .swiper-button-next:after,
    .bottom-banner-slider-container .swiper-button-prev:after {
        font-size: 20px;
    }
}
.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card .product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* Consistent card height on all screen sizes */
@media (max-width: 640px) {
    .product-card {
        min-height: 520px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .product-card {
        min-height: 540px;
    }
}

@media (min-width: 1024px) {
    .product-card {
        min-height: 560px;
    }
}
/* end

/* ======================================== */
/* Custom CSS from settings */
/* ======================================== */
#preview_primary_btn{
background:black !important;
}
