/* Homepage Modern Styles */

:root {
    --color-primary: #114843;
    --color-primary-light: #9ebae0;
    --color-secondary: #d3af37;     
    --color-secondary1: #D0A53A; 
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #c4d6e7;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --success-color: #10B981;
    /* Color Palette - Light & Modern */
    --color-success: #059669;
    --color-warning: #d97706;
    --color-danger: #dc2626;
    --color-info: #0891b2;
    
    /* Spacing Scale */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    
    /* Border Radius Scale */
    --radius-lg: 12px;
    
    /* Typography Scale */
    --text-sm: 0.875rem;    /* 14px */
    --text-xl: 1.25rem;     /* 20px */
}

/* Checkout page specific CSS variables override */
.checkout-page {
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    --bg-light: #F9FAFB;
}

/* Hero Banner Section */
.hero-banner {
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
}

.hero-banner-wrapper {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.hero-title::first-line {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-hero-cta {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-hero-cta:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #FFFFFF;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
}

.carousel-indicators button.active {
    background: var(--color-primary);
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

.pointing-emoji,
.hourglass-emoji {
    font-size: 2rem;
    /* vertical-align: middle; */
}

/* Shop by Categories */
.shop-categories {
    background: var(--bg-light);
    padding-bottom: 2rem;
}

.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    font-size: 3rem;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Product Card */
.product-card {
    position: relative;
    margin-bottom: 2rem;
}

.product-card-inner {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover .product-card-inner {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%;  
    overflow: hidden;
    background: var(--bg-light);
}


.product-image,
.product-placeholder {  
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   
    background: #fff;
    transition: var(--transition);
     object-position: center;
}



 


.checkout-page .product-image-checkout {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
}

.checkout-page .product-image-checkout img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block !important;
    visibility: visible !important;
}


.product-image-checkout,
.product-placeholder-checkout {      
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}


.product-placeholder,product-placeholder-checkout{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #adb5bd;
    font-size: 3rem;
}
 

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 49, 58, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 10px;
     /* gap: 15px; */
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.action-btn:hover {
    background: var(--color-secondary);
    color: white;
    transform: scale(1.1);
}

.wishlist-btn.in-wishlist {
    /* background: #ef4444; */
    /* color: white; */
}

.wishlist-btn.in-wishlist:hover {
    /* background: #dc2626; */
    /* color: white; */
}

.product-info {
    padding: 1rem;
    /* min-height: 9.2rem; */
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    /* min-height: 2.8rem; */
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--color-secondary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.product-rating .rating-text {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-left: 6px;
    font-size: 0.85rem;
    line-height: 1.2;
}

.product-rating .rating-value {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-rating .rating-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

.product-rating .star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.product-rating .star-rating i {
    font-size: 0.875rem;
    line-height: 1;
}

.stock-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.stock-badge.pre-booking-available {
    background: #ffc107;
    color: #856404;
    font-weight: 600;
}

/* Products Section - Landing Page */
.products-section {
    background: white;
    /* padding-bottom: 3rem; */
}

/* Products Section - Collections Page (with sidebar) */
.product-page-wrapper .products-section {
    position: relative;
    padding-bottom: 3rem;
    min-height: 60vh;
}

.product-tabs {
    border-bottom: 2px solid var(--border-color);
}

.product-tabs .nav-link {
    color: var(--text-light);
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 30px;
    transition: var(--transition);
}

.product-tabs .nav-link:hover {
    border-bottom-color: var(--color-secondary);
    color: var(--color-secondary);
}

.product-tabs .nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: none;
}

.btn-shop-all {
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-shop-all:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

/* On Sale Section */
.on-sale-section {
    background: var(--bg-light);
    padding-bottom: 2rem;
}

/* offline section  */
.offline-store {
    background: #f3f6f6;
    padding: 40px 20px;
    text-align: center;
}

.title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: #1f3d3a;
}

.store-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.store-card {
    background: #ffffff;
    width: 350px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-card h3 {
    color: #1f3d3a;
    font-size: 22px;
    margin-bottom: 15px;
}

.store-card p {
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.location-btn {
    background: var(--color-primary);
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: #14524d;
}



/* Category-wise Products Section */
.category-products-section {
    background: #FFFFFF;
    padding-bottom: 2rem;
}

.category-products-section.bg-light {
    background: var(--bg-light);
}

.category-products-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.category-products-section .text-muted {
    font-size: 0.95rem;
    color: red;
}

.category-products-section .btn-shop-all {
    padding: 10px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .category-products-section .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .category-products-section .section-title {
        font-size: 1.5rem;
    }
}

/* Offline Stores Section */
.offline-stores-section {
    background: #FFFFFF;
    padding: 96px 0;
}

.offline-stores-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.store-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.store-card:hover {
    box-shadow: 0 4px 16px rgba(15, 49, 58, 0.1);
    transform: translateY(-2px);
}

.store-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.store-address {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-get-location {
    display: inline-block;
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-get-location:hover {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 49, 58, 0.2);
}

/* Features Bar - Landing Page */
.features-bar {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
    margin-top: 0;
}

.feature-item {
    white-space: nowrap;
    font-size: 0.95rem;
    color: #111827;
    flex: 0 0 auto;
    min-width: 180px;
}

.feature-icon {
    font-size: 1.1rem;
    color: #0d6efd;
}

.feature-text {
    font-weight: 500;
}

/* Brand Icon */
.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.brand-icon:hover {
    background: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offline-stores-section {
        padding: 60px 0;
    }
    
    .offline-stores-title {
        font-size: 2rem;
    }
    
    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 1.5rem 1rem;
    }
    
    .feature-item:last-child {
        border-bottom: none;
    }
    .product-card {
        margin-bottom: 0;
    }
}
@media (max-width: 1200px) {
    .hero-banner-image {
        height: 563px;
    }
    .hero-banner {
        height: 563px;
    }

    .hero-banner-wrapper {
        min-height: 563px;
    }
    .navbar-toggler , .navbar-toggler:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }  
}
@media (max-width: 767.98px) {
    .hero-banner-image {
        height: 780px;
    }
    .hero-banner {
        height: 780px;
    }

    .hero-banner-wrapper {
        min-height: 780px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title::first-line {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .offline-stores-section {
        padding: 40px 0;
    }
    
    .offline-stores-title {
        font-size: 1.75rem;
    }
    
    .store-card {
        padding: 25px;
    }
    
    .store-name {
        font-size: 1.3rem;
    }
    
    .store-address {
        font-size: 0.9rem;
    }
    
    .category-image-wrapper {
        padding-bottom: 100%;
    }
    
    .product-image-wrapper {
        padding-bottom: 75%;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .navbar-search {
        max-width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-banner-image {
        height: 254px;
        width: 100%;
    }
    .hero-banner{
        height: 254px;
    }
    .hero-banner-wrapper {
        min-height: 254px;
    }
    
    .shop-categories {
        margin-top: 75px;
    }
    .section-header {
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.category-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

/* Category Filter Sidebar */
.product-page-wrapper .products-section {
    position: relative;
    padding-bottom: 3rem;
    min-height: 60vh;
}

.products-with-sidebar {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.category-filter-sidebar {
    width: 280px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    position: sticky;
    top: 135px;
    overflow-y: visible;
    overflow-x: visible;
    transition: var(--transition);
}

.category-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.category-filter-header h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-close-sidebar {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-close-sidebar:hover {
    color: var(--color-primary);
}


.category-item {
    margin-bottom: 0.5rem;
}

.category-checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.form-check {
    flex: 1;
    margin-bottom: 0;
}

/* Category Filter Checkbox Styles */
.category-filter-sidebar .form-check-input {
    margin-top: 0.35rem;
    cursor: pointer;
    width: 1.1em;
    height: 1.1em;
    border: 2px solid #dee2e6;
    border-radius: 0.25em;
    transition: all 0.2s ease;
    background-color: #fff;
}

.category-filter-sidebar .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.category-filter-sidebar .form-check-input:focus {
    border-color: var(--color-primary);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(19, 35, 60, 0.25);
}

.category-filter-sidebar .form-check-input:hover:not(:checked) {
    border-color: var(--color-primary);
}

.category-filter-sidebar .category-checkbox:checked,
.category-filter-sidebar .subcategory-checkbox:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-check-label:hover {
    color: var(--color-primary);
}

.category-name {
    font-weight: 500;
}

.category-count {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 400;
}

.btn-toggle-subcategories {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.875rem;
}

.btn-toggle-subcategories:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

.subcategories-list {
    display: none;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.subcategories-list.expanded {
    display: block;
}

.subcategory-item {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--border-color);
}

.subcategory-item .form-check-label {
    font-size: 0.9rem;
}

.category-filter-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Mobile Sidebar */
.sidebar-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sidebar-toggle-btn .btn {
    position: relative;
    border-radius: 50px;
    /* padding: 12px; */
    box-shadow: var(--shadow-md);
    font-weight: 600;
    bottom: 40px;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
}

@media (max-width: 767.98px) {
    .category-filter-sidebar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        z-index: 1050;
        transition: left 0.3s ease;
        /* Removed max-height to prevent scrolling */
        border-radius: 0 12px 12px 0;
        overflow-y: visible;
    }

    .category-filter-sidebar.show {
        left: 0;
    }

    .products-with-sidebar {
        flex-direction: column;
    }

    .products-content {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .sidebar-toggle-btn,
    .sidebar-overlay {
        display: none !important;
    }
}

/* Login Page Styles */
body.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.login-container {
    width: 100%;
    max-width: 440px;
}

.login-card {
    /* background: #FFFFFF; */
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px 40px;
    width: 100%;
    border-top: 4px solid var(--color-primary);
    background-color: var(--color-primary);
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo img {
    max-height: 60px;
    width: auto;
    margin-bottom: 12px;
}

.login-logo .brand-text {
    display: block;
    font-size: 24px;
    font-weight: 600;
    /* color: var(--text-dark); */
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.login-logo .brand-subtitle {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.login-logo .brand-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary1) 0%, #B8941F 100%);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin-bottom: 12px;
}

.login-heading {
    font-size: 28px;
    font-weight: 700;
    /* color: var(--text-dark); */
    margin-bottom: 8px;
    text-align: center;
}

.login-subtitle {
    font-size: 14px;
    /* color: var(--text-light); */
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
    color: #ffffff;
}

.login-page .form-label {
    font-size: 14px;
    font-weight: 500;
    /* color: var(--text-dark); */
    margin-bottom: 8px;
}

.login-page .form-control {
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.login-page .form-control:focus {
    border-color: var(--color-secondary1);
    box-shadow: 0 0 0 3px rgba(208, 165, 58, 0.1);
    outline: none;
}

.login-page .form-control.is-invalid {
    border-color: #dc3545;
}

.login-page .invalid-feedback {
    font-size: 13px;
    margin-top: 4px;
}

.btn-continue {
    width: 100%;
    height: 48px;
    background: var(--color-secondary1);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-continue:hover {
    background: #B8941F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(208, 165, 58, 0.3);
}

.btn-continue:active {
    transform: translateY(0);
}

.login-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 8px;
}

.login-toggle-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-toggle-btn.active {
    background: #FFFFFF;
    color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-page .alert {
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
}

.login-page .alert-success {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0369a1;
}

.login-page .text-link {
    /* color: var(--text-light); */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    color: #ffffff;
}

.login-page .text-link:hover {
    color: var(--color-secondary1);
}

.footer-links {
    text-align: start;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.footer-address{
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    margin: 0 12px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.login-page .form-check {
    margin-top: 16px;
}

.login-page .form-check-input {
    margin-top: 0.3em;
}

.login-page .form-check-label {
    font-size: 14px;
    color: var(--text-light);
}

.forgot-password-link {
    text-align: center;
    margin-top: 16px;
}

.resend-otp-btn {
    background: none;
    border: none;
    color: var(--color-secondary1);
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.resend-otp-btn:hover {
    color: #B8941F;
}

/* Customer Profile Page Styles */
.profile-page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #114843 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(208, 165, 58, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.profile-page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-page-header .profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-secondary1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.profile-header-info {
    flex: 1;
    margin-left: 1.5rem;
}

.profile-page-header .d-flex {
    position: relative;
    z-index: 1;
}

.profile-header-email {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Profile Cards */
.profile-card-modern {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.profile-card-modern:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.profile-card-header {
    background: var(--color-primary);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-secondary1) !important;
}

.profile-card-header h5 {
    color: var(--color-secondary1);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-card-body {
    padding: 1.5rem;
}

.profile-card-body .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.profile-card-body .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 49, 58, 0.1);
    outline: none;
}

/* Profile Form Styles */
.profile-form-group {
    margin-bottom: 1.5rem;
}

.profile-form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.profile-form-label i {
    color: var(--color-secondary1);
    font-size: 1rem;
}

.profile-form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    background-color: #FFFFFF;
}

.profile-form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 49, 58, 0.1);
    outline: none;
}

.profile-form-control:disabled {
    background-color: #F9FAFB;
    color: var(--text-light);
    cursor: not-allowed;
}

.profile-form-help {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-profile-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-profile-primary:hover {
    background-color: var(--color-secondary1);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Address Cards */
.address-card {
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.address-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-default-badge {
    background: #D1FAE5;
    color: #065F46;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.address-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.address-detail-item i {
    color: var(--color-secondary1);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.empty-address {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.empty-address i {
    font-size: 3rem;
    color: #D1D5DB;
    margin-bottom: 1rem;
}

/* Quick Links Sidebar */
.quick-links-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.quick-links-header {
    background: var(--color-primary);
    padding: 1.25rem 1.5rem;
    color: var(--color-secondary1) !important;
}

.quick-links-header h5 {
    color: var(--color-secondary1);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-links-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.quick-links-item {
    border-bottom: 1px solid #F3F4F6;
    transition: all 0.3s ease;
}

.quick-links-item:last-child {
    border-bottom: none;
}

.quick-links-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links-item a:hover {
    background-color: #F9FAFB;
    color: var(--color-primary);
    padding-left: 2rem;
}

.quick-links-item a i {
    font-size: 1.25rem;
    color: var(--color-secondary1);
    width: 24px;
    text-align: center;
}

/* Profile Stats & Change Password Cards */
.profile-stats-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.profile-stats-title {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.profile-stats-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.change-password-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.change-password-card .profile-card-header {
    background: var(--color-primary);
}

.change-password-card .profile-card-body {
    padding: 1.5rem;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Profile Container spacing for fixed navbar */
.profile-container {
    margin-top: 30px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .profile-container {
        margin-top: 20px;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .profile-page-header {
        padding: 1.5rem;
    }

    .profile-page-header h1 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-stats-grid {
        grid-template-columns: 1fr;
    }

    .profile-card-body {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .profile-container {
        margin-top: 20px;
        padding-top: 1rem;
    }

    .profile-page-header {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .profile-card-modern {
        margin-bottom: 1rem;
    }
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

.cart-page-container {
    padding-top: 2rem;
    padding-bottom: 1rem;
    min-height: 60vh;
    background: #F9FAFB;
}

.cart-page-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-page-title i {
    color: var(--color-secondary1);
    font-size: 2rem;
}

/* Cart Items Card */
.cart-items-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.cart-item-row {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    /* flex-direction: column; */
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-row:hover {
    background-color: #F9FAFB;
    margin: 0 -0.7rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 8px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.cart-item-image:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.cart-item-image-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.cart-item-image-placeholder i {
    font-size: 2rem;
    color: var(--text-light);
}

.cart-item-details {
    flex: 1;
    padding-left: 1.5rem;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-item-name:hover {
    color: var(--color-secondary1);
}

.cart-item-price {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Wishlist specific price styling */
.cart-item-price.wishlist-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty-input {
    width: 70px !important;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.cart-item-qty-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(19, 35, 60, 0.1);
    outline: none;
}

.btn-cart-update {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cart-update:hover {
    background-color: var(--color-secondary1);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

.cart-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover:not(:disabled) {
    background-color: var(--color-secondary1);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

.cart-qty-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cart-qty-value {
    min-width: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
}

.cart-item-total {
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--color-primary);
    text-align: right;
    min-width: 100px;
}

.cart-item-actions {
    text-align: right;
    display: flex;
    /* gap: 0.5rem; */
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-cart-delete {
    background-color: transparent;
    color:#000;
    border: 2px solid #000;
    padding: 0rem;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    position: static;
    border: none;
}

.btn-cart-delete:hover {
    /* background-color: #DC2626; */
    color: #000;
    transform: scale(1);
}

/* Cart Summary Sidebar */
.cart-summary-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.cart-summary-header {
    background: var(--color-primary);
    padding: 1.25rem 1.5rem;
    color: var(--color-secondary1);
}

.cart-summary-header h5 {
    color: var(--color-secondary1);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-summary-body {
    padding: 1.5rem;
}

.cart-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
    color: var(--text-dark);
}

.cart-summary-item:last-child {
    border-bottom: none;
}

.cart-summary-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cart-summary-value {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.cart-summary-discount {
    color: #059669 !important;
}

.cart-summary-total {
    border-top: 2px solid var(--color-primary);
    padding-top: 1rem;
    margin-top: 1rem;
}

.cart-summary-total .cart-summary-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.cart-summary-total .cart-summary-value {
    font-size: 1.0rem;
    font-weight: 600;
    color: #059669;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0F313A 100%);
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(19, 35, 60, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-checkout:hover {
    background: linear-gradient(135deg, var(--color-secondary1) 0%, #B8941F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 35, 60, 0.3);
    color: #FFFFFF;
}

/* Coupon Card */
.coupon-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.coupon-card-header {
    background: var(--color-primary);
    padding: 1.25rem 1.5rem;
    color: var(--color-secondary1);
    border-radius: 16px 16px 0 0;
}

.coupon-card-header h5 {
    color: var(--color-secondary1);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coupon-card-body {
    padding: 1.5rem;
}

.coupon-success-alert {
    background: #D1FAE5;
    border: 2px solid #059669;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.coupon-success-alert span {
    color: #065F46;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* ===== Coupon card layout ===== */
.btn-coupon-validate {
    color: #000;
    /* background-color: #000; */
    border: 1px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-coupon-remove {
    /* background-color: #DC2626; */
    color: #000;
    border: none;
    /* padding: 0.5rem 1rem; */
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-coupon-remove:hover {
    /* background-color: #B91C1C; */
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.coupon-card {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 16px;
}

/* Force vertical stacking */
.coupon-card-details {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px;
}

/* Structure left content */
.coupon-card-first {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 6px;
    column-gap: 12px;
}

/* Flat % OFF (top line) */
.coupon-discount {
    grid-column: 1 / -1;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827 !important;
}

/* Save text (bottom left) */
.coupon-savings {
    font-size: 0.85rem;
    color: #4CAF50;
}

/* Coupon code badge (bottom right) */
.coupon-code {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280 !important;
    white-space: nowrap;
    align-self: center;
}

/* Min cart value line */
.coupon-card-details small {
    grid-column: 1 / -1;
    font-size: 0.75rem;
}

.btn-coupon-apply {
    width: 100%;
    background-color: #0d6efd;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.coupons-header {
    border-radius: 6px;
    background: #ffffff;
    margin-bottom: 10px;
}
.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(19, 35, 60, 0.1);
    outline: none;
}

.btn-coupon-apply {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-coupon-apply:hover {
    background-color: var(--color-secondary1);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

/* Empty Cart */
.cart-empty-alert {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.cart-empty-alert h4 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cart-empty-alert p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-continue-shopping {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0F313A 100%);
    color: #FFFFFF;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(19, 35, 60, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-continue-shopping:hover {
    background: linear-gradient(135deg, var(--color-secondary1) 0%, #B8941F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 35, 60, 0.3);
    color: #FFFFFF;
    text-decoration: none;
}

/* Responsive Cart Page */
@media (max-width: 991.98px) {
    .cart-page-container {
        margin-top: 0px;
        padding-top: 1.5rem;
    }

    .cart-page-title {
        font-size: 2rem;
    }

    .cart-item-row {
        flex-wrap: wrap;
        position: relative;
    }

    .btn-cart-delete {
        position: absolute;
        top: 6px;
        right: 6px;
        font-size: 1.2rem;
        z-index: 10;
        border: none;
    }

    .cart-item-image,
    .cart-item-image-placeholder {
        width: 80px;
        height: 80px;
    }

    .cart-item-details {
        padding-left: 1rem;
        flex: 1;
        min-width: 200px;
    }

    .cart-item-qty {
        width: 100%;
        margin-top: 1rem;
        justify-content: flex-start;
    }

    .cart-item-total {
        text-align: left;
        margin-top: 0.5rem;
    }

    .cart-item-actions {
        text-align: left;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .cart-page-container {
        margin-top: 0px;
        padding-top: 1rem;
    }

    .cart-page-title {
        display: flex;
        font-size: 1.75rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.5rem; 
    }

    .cart-items-card {
        padding: 1rem;
    }

    .cart-item-row {
        padding: 1rem 0;
    }

    .cart-item-image,
    .cart-item-image-placeholder {
        width: 70px;
        height: 70px;
    }

    .cart-item-name {
        font-size: 1rem;
    }

    .cart-summary-card,
    .coupon-card {
        margin-bottom: 1rem;
    }

    .cart-summary-body,
    .coupon-card-body {
        padding: 1.25rem;
    }

    .cart-item-actions {
          display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-start;
        /* gap: 10px; */
        margin-top: 0.75rem;
    }

    .btn-cart-update,
    .cart-qty-btn {
        height: 40px;
        min-width: 40px;
        width: 40px;
    }

    .btn-cart-delete {
        width: 25px;
        height: 25px;
        padding: 0;
        border-radius: 5px;
        top: 6px;
        right: 6px;
        font-size: 1.2rem;
        border: none;
    }

    .cart-item-actions form {
        margin: 0;
        display: flex;
        align-items: center;
    }
}
/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

.checkout-page {
    background: #F9FAFB;
    min-height: 90vh;
    padding: 1rem 0;
}

.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1rem;
}

.checkout-main {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.checkout-sidebar {
    position: sticky;
    top: 1.5rem;
    height: fit-content;
}

/* Progress Indicator */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
}

.progress-step.active .step-number {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.progress-step.active .step-label {
    color: var(--color-primary);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 1rem;
}

/* Checkout Section Styles */
.checkout-section {
    margin-bottom: 1.25rem;
}

.checkout-page .section-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 0.75rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.checkout-page .section-subtitle {
    font-size: 0.875rem !important;
    color: var(--text-light) !important;
    margin-bottom: 0.75rem !important;
    font-weight: normal !important;
}

/* Form Styles */
.checkout-page .form-group {
    margin-bottom: 1.25rem;
}

.checkout-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-page .form-control-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.checkout-page .form-control-modern:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(19, 35, 60, 0.1);
}

.checkout-page label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Address Options */
.checkout-page .address-options {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

.checkout-page .address-option {
    cursor: pointer;
}

.checkout-page .address-option input[type="radio"] {
    display: none;
}

.checkout-page .address-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem;
    transition: all 0.2s;
}

.checkout-page .address-option input[type="radio"]:checked + .address-card {
    border-color: var(--color-primary);
    background: rgba(19, 35, 60, 0.05);
}

.checkout-page .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checkout-page .badge-default {
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.checkout-page .address-details p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.checkout-page .btn-add-address {
    width: 100%;
    padding: 0.625rem;
    background: transparent;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--color-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-page .btn-add-address:hover {
    border-color: var(--color-primary);
    background: rgba(19, 35, 60, 0.05);
}

/* Shipping Options */
.checkout-page .shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.checkout-page .shipping-option {
    cursor: pointer;
}

.checkout-page .shipping-option input[type="radio"] {
    display: none;
}

.checkout-page .shipping-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem;
    transition: all 0.2s;
}

.checkout-page .shipping-option input[type="radio"]:checked + .shipping-card {
    border-color: var(--color-primary);
    background: rgba(19, 35, 60, 0.05);
}

.checkout-page .shipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checkout-page .shipping-price {
    font-weight: 600;
    color: var(--color-primary);
}

.checkout-page .shipping-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Coupon Section in Checkout */
.checkout-page .coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.checkout-page .coupon-input-group .form-control-modern {
    flex: 1;
}

.checkout-page .btn-apply-coupon {
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-page .btn-apply-coupon:hover {
    background: var(--color-secondary);
}

.checkout-page .coupon-message {
    margin-top: 0.50rem;
    font-size: 0.875rem;
}

.checkout-page .coupon-message.success {
    color: var(--success-color);
}

.checkout-page .coupon-message.error {
    color: #EF4444;
}

/* Payment Methods */
.checkout-page .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.checkout-page .payment-method {
    cursor: pointer;
}

.checkout-page .payment-method input[type="radio"] {
    display: none;
}

.checkout-page .payment-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
    background: white;
}

.checkout-page .payment-method input[type="radio"]:checked + .payment-card {
    border-color: var(--color-primary);
}

.checkout-page .payment-card-header {
    background: #F5E6D3;
    padding: 0.75rem 1rem;
    border-radius: 8px 8px 0 0;
}

.checkout-page .payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.checkout-page .payment-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-page .payment-logos img {
    height: 20px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.checkout-page .more-options {
    background: #000;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.checkout-page .payment-card-content {
    background: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    text-align: center;
}

.checkout-page .payment-redirect-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.75rem;
}

.checkout-page .payment-redirect-illustration svg {
    max-width: 100%;
    height: auto;
}

.checkout-page .payment-redirect-message {
    font-size: 0.875rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.checkout-page .payment-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive styles for payment card */
@media (max-width: 768px) {
    .checkout-page .payment-card-header {
        padding: 0.875rem 1rem;
    }
    
    .checkout-page .payment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .checkout-page .payment-header strong {
        font-size: 0.9rem;
    }
    
    .checkout-page .payment-card-content {
        padding: 1.25rem 1rem;
    }
    
    .checkout-page .payment-redirect-illustration svg {
        width: 100px;
        height: auto;
    }
    
    .checkout-page .payment-redirect-message {
        font-size: 0.8125rem;
    }
    
    .checkout-page .payment-logos {
        flex-wrap: wrap;
    }
}

/* Order Summary */
.checkout-page .order-summary-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.checkout-page .summary-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 2px solid var(--border-color) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.checkout-page .products-list {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.checkout-page .product-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-page .product-item:last-child {
    border-bottom: none;
}

.checkout-page .product-image {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
}

.checkout-page .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block !important;
    visibility: visible !important;
}

.checkout-page .product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.checkout-page .product-details {
    flex: 1;
    min-width: 0;
}

.checkout-page .product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.checkout-page .product-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.checkout-page .product-price {
    font-weight: 600;
    color: var(--text-dark);
    flex-shrink: 0;
}

.checkout-page .order-totals {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.checkout-page .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.checkout-page .total-final {
    font-size: 1.125rem;
    font-weight: 600;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.75rem;
    color: var(--text-dark);
}

.checkout-page .btn-place-order {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.2s;
}

.checkout-page .btn-place-order:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 35, 60, 0.3);
}

.checkout-page .btn-place-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.checkout-page .security-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

/* Confirmation Modal */
.confirmation-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.confirmation-content {
    padding: 3rem 2rem;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.confirmation-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.confirmation-message {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.order-id-display {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.order-id-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.order-id-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-view-orders,
.btn-continue-shopping {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view-orders {
    background: var(--color-primary);
    color: white;
}

.btn-view-orders:hover {
    background: var(--color-secondary);
    color: white;
}

.btn-continue-shopping {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-continue-shopping:hover {
    background: rgba(19, 35, 60, 0.05);
}

/* Form Check Modern */
.checkout-page .form-check-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkout-page .form-check-modern input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkout-page .btn-primary-modern {
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-page .btn-primary-modern:hover {
    background: var(--color-secondary);
}

/* Checkout Large Screens - Maximize Space */
@media (min-width: 1400px) {
    .checkout-container {
        max-width: 1600px;
        grid-template-columns: 1fr 450px;
        gap: 2rem;
    }
    
    .checkout-main {
        padding: 2rem;
    }
    
    .checkout-page .order-summary-card {
        padding: 1.75rem;
    }
}

/* Checkout Responsive */
@media (max-width: 968px) {
    .checkout-page .checkout-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .checkout-page .checkout-main {
        padding: 1.25rem;
    }
    
    .checkout-page .checkout-sidebar {
        position: static;
    }
    
    .checkout-page .order-summary-card {
        max-height: none;
    }
    
    .checkout-page .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-page .confirmation-actions {
        flex-direction: column;
    }
}

/* Wishlist Page Styles */
.empty-cart-container {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
    font-size: 5rem;
    color: #adb5bd;
    margin-bottom: 1.5rem;
}

.empty-cart-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.empty-cart-container p {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Stock Badge Styles (used in wishlist) */
.stock-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.stock-badge.pre-booking-available {
    background: #fff3cd;
    color: #856404;
}

/* Wishlist Mobile Responsive - Update existing cart mobile styles */
@media (max-width: 768px) {
    .cart-item-row {
        /* flex-direction: column; */
        align-items: center;
        gap: 1rem;  
    }
    
    .cart-item-image,
    .cart-item-image-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-details {
        padding-left: 0;
    }
    
    .cart-item-actions {
        /* width: 100%; */
        /* flex-direction: row; */
        text-align: left;
    }
    
    .cart-item-actions .btn {
        width: 100%;
    }
    
    .cart-page-title {
        font-size: 2rem;
    }
}

/* Pagination Styles - Matching Brand Standards */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0;
    color: var(--color-primary);
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination .page-link:hover:not(.disabled) {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 35, 60, 0.2);
}

.pagination .page-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 35, 60, 0.15);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(19, 35, 60, 0.25);
    cursor: default;
}

.pagination .page-item.active .page-link:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(19, 35, 60, 0.25);
}

.pagination .page-item.disabled .page-link {
    color: #cbd5e0;
    background: #f7fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    background: #f7fafc;
    color: #cbd5e0;
    transform: none;
    box-shadow: none;
}

/* Pagination Icons - Style Bootstrap Icons */
.pagination .page-link i {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pagination .page-link[rel="prev"],
.pagination .page-link[rel="next"],
.pagination .page-item.disabled .page-link[aria-hidden="true"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make arrows more visible and styled on hover */
.pagination .page-link[rel="prev"]:hover:not(.disabled),
.pagination .page-link[rel="next"]:hover:not(.disabled) {
    transform: translateY(-2px) scale(1.1);
}

.pagination .page-link[rel="prev"]:hover:not(.disabled) i,
.pagination .page-link[rel="next"]:hover:not(.disabled) i {
    transform: scale(1.2);
}

.select2-container .select2-selection--single{
    height: 38px;
    align-items: center;
    align-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 38px; 
}

/* Announcement Marquee Bar */
.announcement-marquee-bar {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 0.75rem 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-block;
    padding: 0 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.marquee-separator {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .announcement-marquee-bar {
        padding: 0.5rem 0;
    }
    
    .marquee-item {
        font-size: 0.85rem;
        padding: 0 0.75rem;
    }
    
    .marquee-content {
        animation-duration: 20s;
    }
}

/* ============================================
   LAYOUT STYLES - Moved from layouts/app.blade.php
   ============================================ */

/* Global Button Styles - Override Bootstrap */
.btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: #FFFFFF !important;
}

.btn-outline-primary {
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #FFFFFF !important;
}

/* Global Link Hover Effects */
a:not(.navbar-brand-modern):not(.btn):not(.dropdown-item):hover {
    color: var(--color-secondary);
}

body { 
    padding-top: 71px; 
}

body.has-announcement { 
    padding-top: 125px; 
}

.product-img { 
    height: 200px; 
    object-fit: cover; 
}

.cart-badge { 
    position: absolute; 
    top: -5px; 
    right: -5px; 
}

img[loading="lazy"] { 
    min-height: 80px; 
}

.product-share-icons {
    display: flex;
    gap: 12px;
}

.product-share-icons .share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background:var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-share-icons .share-icon:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.product-share-icons i {
    line-height: 1;
}

.breadcrumb-right h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .product-share-icons {
        justify-content: flex-start;
    }
}




/* Modern Navbar */
.modern-navbar {
    background: var(--color-primary) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.modern-navbar.navbar-with-announcement {
    top: 45px;
}

.modern-navbar .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar-brand-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand-modern:hover {
    color: var(--color-secondary) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 0.25rem 0.5rem;
    margin-left: auto;
}

.navbar-nav-centered {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0 auto;
    padding: 0 1rem;
    min-width: 0;
    flex-wrap: nowrap;
}

.navbar-nav-centered .nav-item {
    flex-shrink: 0;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-nav-centered {
        gap: 0.15rem;
        padding: 0 0.5rem;
    }

    .nav-link-modern {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.9rem;
    }

    .navbar-search {
        max-width: 280px;
    }
}

@media (max-width: 991.98px) {
    .modern-navbar .container {
        flex-wrap: wrap;
    }

    .navbar-nav-centered {
        flex: 1 1 100%;
        order: 3;
        justify-content: flex-start;
        padding: 0.5rem 0;
        margin: 0;
        gap: 0.5rem;
    }

    .navbar-brand-section {
        flex: 1;
    }  
}

/* bottom bar */
@media (max-width: 991.98px) {
    /* Bottom bar */
    .mobile-bottom-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 60px;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        z-index: 1000;
    }

    .mobile-bottom-bar a {
        flex: 1;
        text-align: center;
        font-size: 11px;
        color: #374151;
        text-decoration: none;
        position: relative;
    }

    .mobile-bottom-bar i {
        display: block;
        font-size: 20px;
        color: var(--color-primary);
    }

    .bottom-badge {
        position: absolute;
        top: 2px;
        right: 35%;
        background: var(--color-secondary);
        color: #fff;
        font-size: 10px;
        border-radius: 50%;
        padding: 2px 6px;
    }

    /* Space for top & bottom bars */
    body {
        padding-bottom: 60px;
    }
}

/* removing  only  cart icon in top bar */
@media (max-width: 991.98px) {
    .modern-navbar .navbar-right-section a[href*="cart"] {
        display: none !important;
    }

}

/* for laptop */
@media (min-width: 1200px) {
    .navbar-search {
        max-width: 350px;
    }
}

.nav-link-modern {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.6rem 1.2rem !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 6px;
    position: relative;
}

.nav-link-modern:hover,
.nav-link-modern:focus {
    color: #FFFFFF !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.nav-link-modern.active {
    color: var(--color-secondary) !important;
    background: rgba(211, 175, 55, 0.1);
}

/* Advanced Dropdown Menu */
.navbar-nav .dropdown-menu {
    background: #FFFFFF;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-nav .dropdown-item:hover {
    background: rgba(17, 72, 67, 0.08);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 1.75rem;
}

.navbar-nav .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #E5E7EB;
}

.navbar-right-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* gap: 0.5rem; */
}

.icons-clone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-search {
    max-width: 320px;
    min-width: 200px;
}

.navbar-search .form-control {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFFFFF;
    border-radius: 25px 0 0 25px;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.navbar-search .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.navbar-search .form-control:focus {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    color: #FFFFFF;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.15);
}

.navbar-search .btn {
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-left: none;
    border-radius: 0 25px 25px 0;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-search .btn:hover {
    background: #b8942a;
    border-color: #b8942a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(211, 175, 55, 0.3);
}

@media (min-width: 992px) {
    .icons-clone {
        display: flex !important;
        align-items: center;
        /* gap: 0.5rem; */
    }
}

@media (max-width: 991.98px) {
    .navbar-right-section {
        width: 100%;
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .navbar-search {
        flex: 1;
        max-width: 100%;
    }
}

.navbar-icon-link {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    color: rgba(255,255,255,0.9);
    font-size: 1.4rem;
    padding: 0.6rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-avatar-img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.navbar-icon-link:hover {
    color: #FFFFFF;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.navbar-icon-link.dropdown-toggle::after {
    display: none;
}

.icon-badge {
    position: absolute;
    top: 0.3rem;
    right: 0.1rem;
    background: var(--color-secondary);
    color: #FFFFFF;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.brand-icon:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: rotate(-5deg) scale(1.05);
}

/* User Dropdown Menu */
#userDropdown + .dropdown-menu {
    background: #FFFFFF;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 240px;
}

#userDropdown + .dropdown-menu li:first-child {
    background: rgba(17, 72, 67, 0.05);
    margin-bottom: 0.25rem;
}

#userDropdown + .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
}

#userDropdown + .dropdown-menu .dropdown-item:hover {
    background: rgba(17, 72, 67, 0.08);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 1.75rem;
}

#userDropdown + .dropdown-menu .dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545 !important;
    border-left-color: #dc3545;
}

#userDropdown + .dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Mobile Responsive Enhancements */
@media (max-width: 991.98px) {
    .modern-navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand-modern {
        font-size: 1.5rem;
    }

    .nav-link-modern {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        margin: 0.25rem 0;
    }

    .navbar-nav .dropdown-menu {
        margin-left: 1rem;
        margin-top: 0.25rem;
    }

    .navbar-search .form-control {
        background: rgba(255,255,255,0.2);
        font-size: 0.9rem;
    }

    .navbar-icon-link {
        font-size: 1.3rem;
        padding: 0.5rem;
    }
}

/* Smooth Scrollbar for Navbar */
.modern-navbar::-webkit-scrollbar {
    height: 4px;
}

.modern-navbar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.modern-navbar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.modern-navbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

/* Dropdown Animation */
.dropdown-menu {
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
.footer-main {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 60px 0 40px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    padding: 10px;
    line-height: 1.2;
}

.footer-logo-circle .logo-top {
    font-size: 0.65rem;
    margin-bottom: 2px;
}

.footer-logo-circle .logo-middle {
    font-size: 1rem;
    font-weight: 900;
}

.footer-logo-circle .logo-bottom {
    font-size: 0.65rem;
}

.footer-brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #FFFFFF;
    margin-top: 5px;
    font-weight: normal;
}

.footer-description {
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 15px;
    font-weight: normal;
    text-align: justify;
}

.footer-section-title {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 15px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: normal;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: normal;
}

.footer-contact-item i {
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    line-height: 1.6;
}

.footer-bottom-bar {
    background-color: var(--color-secondary);
    padding: 15px 0;
    color: #333;
}

.footer-bottom-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-bar .container > * {
    flex-shrink: 0;
}

.footer-copyright {
    color: #333;
    font-size: 0.9rem;
    font-weight: normal;
    margin: 0;
}

.footer-copyright a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-copyright a:hover {
    color: var(--color-primary);
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.footer-payment-icons i {
    font-size: 30px;         
    color: var(--color-primary);          
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: block;
    flex-shrink: 0;
}

.footer-payment-icons i:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.footer-payment-icons i {
    filter: brightness(0.9);
}

.payment-icon-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #333;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.payment-icon-text:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler-icon {
    filter: invert(1); 
}

@media (max-width: 991.98px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment-icons {
        margin-top: 15px;
    }
    
    .navbar-icon-link {
        padding: 0.6rem 0.6rem;
        font-size: 1.2rem;
        border-radius: 100%;
    }
    
    .icons-clone {
        display: none;
    }
    
    .navbar-collapse .navbar-nav-centered {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;  
        left: 0;
        right: 0;
        max-width: 100vw;
        background: var(--color-primary);
        z-index: 1000;
        padding: 15px 0;
    }
    
    .navbar-collapse .nav-link-modern {
        width: 100%;
        text-align: left;
        padding: 12px 20px !important;
    }
    
    .navbar-collapse .nav-link-modern:last-child {
        border-bottom: none;
    }
    
    .navbar-right-section {
        position: absolute;
        right: 10px;
        display: flex;
        justify-content: flex-end;
        align-items: center !important;
        width: auto !important;
        z-index: 1100;
        margin: auto !important;
    }
    
    .modern-navbar .container {
        position: relative;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap !important;
    }
    
    .navbar-toggler {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
    }
    
    .mobile-search-icon {
        position: absolute;
        left: 65px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;                
        margin-right: 10px;
        font-size: 1rem;
    }
    
    .navbar-brand-section {
        position: absolute !important;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
    }
    
    .navbar-brand-modern img {
        max-height: 42px;
        width: auto;
    }
    
    .mobile-view .navbar-collapse .navbar-nav {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .mobile-view .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    body.has-announcement {
        padding-top: 110px;
    }
    
    .modern-navbar.navbar-with-announcement {
        top: 40px;
    }
}

@media (max-width: 575.98px) {
    .footer-payment-icons {
        gap: 5px;
    }
    
    .footer-payment-icons svg {
        height: 24px;
    }
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social-icons .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .footer-social-icons .social-icon:hover {
    background: #000;
    transform: translateY(-2px);
    color: #ffffff;
} */

/* Mobile alignment */
@media (max-width: 576px) {
    .footer-social-icons {
        justify-content: flex-start;
    }
}


/* Collections Page Styles - Moved from collection/show.blade.php */
.page-header {
    background: var(--color-primary);
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-header .breadcrumb {
    background: transparent;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item.active {
    color: white;
}

.filter-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.filter-section form {
    max-width: 360px;
}

.filter-section select {
    max-width: 200px;
}

.products-content {
    flex: 1;
}

.empty-products-icon {
    font-size: 4rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .filter-section form {
        max-width: 100%;
    }
    
    .filter-section select {
        max-width: 100%;
    }
}

/* Features Bar Styles - Moved from home.blade.php */
.navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}


/* BREADCRUMB BAR  */
.breadcrumb-bar {
    background: var(--color-primary-light); 
    padding: 14px 0;
    margin-top: 10px;
}


@media (max-width: 1023.98px) {
    .breadcrumb-bar{
        margin-top: 0.1rem;
    }
}


.breadcrumb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.breadcrumb-left {
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-left a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-left span {
    margin: 0 5px;
}

.breadcrumb-left .current {
    color: #ffffff;
    font-weight: 500;
}


.features-scroll {
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: thin;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.features-track {
    width: max-content;
    animation: features-marquee 28s linear infinite;
}

.features-scroll::-webkit-scrollbar {
    height: 6px;
}

.features-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.features-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.feature-item {
    white-space: nowrap;
    font-size: 0.95rem;
    color: #111827;
    flex: 0 0 auto;
    min-width: 180px;
}

@keyframes features-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.feature-icon {
    font-size: 1.1rem;
    color: #0d6efd;
}

.feature-text {
    font-weight: 500;
}

@media (max-width: 576px) {
    .features-scroll {
        gap: 1.25rem !important;
    }
    .feature-icon {
        font-size: 1rem;
    }
    .feature-text {
        font-size: 0.9rem;
    }
}

.select2-dropdown.select2-dropdown--below{
    z-index: 10;
}

/* Enhanced Toast Notifications */
.toast-modern {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 300px;
    max-width: 500px;
}

.toast-modern-success {
    border-left-color: var(--color-success);
}

.toast-modern-error {
    border-left-color: var(--color-danger);
}

.toast-modern-warning {
    border-left-color: var(--color-warning);
}

.toast-modern-info {
    border-left-color: var(--color-info);
}

.toast-modern-icon {
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.toast-modern-success .toast-modern-icon {
    color: var(--color-success);
}

.toast-modern-error .toast-modern-icon {
    color: var(--color-danger);
}

.toast-modern-warning .toast-modern-icon {
    color: var(--color-warning);
}

.toast-modern-info .toast-modern-icon {
    color: var(--color-info);
}

.toast-modern-content {
    flex: 1;
}

.toast-modern-title {
    font-weight: 600;
    font-size: var(--text-sm);
    color: #374151;
    margin-bottom: 0.125rem;
}

.toast-modern-message {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}


@media (max-width: 576px) {
    .toast-modern {
        width: 150px;
        height: 70px;
        padding: 10px;
    }
}