/* Sidebar Subcategory Dropdowns */
.category-list .subcat-list {
    list-style: none;
    margin: 0;
    padding-left: 20px;
    display: none;
}
.category-list .has-subcat:hover > .subcat-list {
    display: block;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
}
.category-list .subcat-list li {
    padding: 8px 0 8px 10px;
    border: none;
    font-size: 13px;
}
.category-list .subcat-list a {
    padding: 0;
    color: var(--text-dark);
    font-weight: 400;
}
.category-list .subcat-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.category-list .subsubcat-list {
    list-style: none;
    margin: 0;
    padding-left: 20px;
    display: none;
}
.category-list .has-subsubcat:hover > .subsubcat-list {
    display: block;
    background: #f1f3f5;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: relative;
    z-index: 3;
}
.category-list .subsubcat-list li {
    padding: 6px 0 6px 10px;
    font-size: 12px;
}
.category-list .subsubcat-list a {
    color: var(--text-dark);
    font-weight: 300;
    padding: 0;
}
.category-list .subsubcat-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00B207;
    --secondary-color: #FFA800;
    --text-dark: #1A1A1A;
    --text-gray: #666;
    --border-color: #E6E6E6;
    --bg-light: #F8F9FA;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.lang-bn {
    font-family: 'Tiro Bangla', serif;
}

body.lang-bn .hero-title {
    letter-spacing: 0;
}

/* Top Header */
.top-header {
    background-color: #2C2C2C;
    color: white;
    font-size: 12px;
    padding: 10px 0;
}

.top-header select {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    margin: 0 10px;
    cursor: pointer;
}

.top-header a {
    color: white;
    text-decoration: none;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 178, 7, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(0, 178, 7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.icon-link {
    color: var(--text-dark);
    font-size: 20px;
    margin-left: 20px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.icon-link:hover {
    color: var(--primary-color);
}

.icon-link .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Expandable Search Bar */
.search-container {
    position: relative;
    margin-right: 10px;
    z-index: 1001;
}

.search-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    position: relative;
    z-index: 1002;
}

.search-icon-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.search-expand {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 44px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 5px 20px rgba(0, 178, 7, 0.2);
}

.search-expand.active {
    width: 350px;
    opacity: 1;
    visibility: visible;
}

.search-expand-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 8px 45px 8px 20px;
    font-size: 14px;
    background: transparent;
}

.search-expand-input::placeholder {
    color: var(--text-gray);
}

.search-close-btn {
    position: absolute;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.search-close-btn:hover {
    background: #009606;
    transform: rotate(90deg);
}

/* Sidebar */
.main-wrapper {
    margin-top: 0;
}

.sidebar {
    background-color: white;
    padding: 20px 10px;
    border-right: 1px solid var(--border-color);
}

.sidebar-menu {
    position: sticky;
    top: 80px;
}

.mobile-category-toggle {
    display: none;
}

.sidebar-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.sidebar-overlay {
    display: none;
}

.menu-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
    font-size: 14px;
}

.category-list li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.category-list li:hover {
    background-color: var(--bg-light);
}

.category-list li:hover a {
    color: var(--primary-color);
    padding-left: 20px;
}

.category-list li i {
    margin-right: 10px;
    width: 20px;
}

.category-count {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-light);
    color: var(--text-gray);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s;
}

.category-list li:hover .category-count {
    background: var(--primary-color);
    color: white;
}

/* Main Content */
.main-content {
    padding: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #F7F8FA 0%, #E8F5E9 100%);
    padding: 0;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide-content {
    padding: 60px 40px;
}

/* .carousel-image {
    height: 400px;
    object-fit: contain;
    background-color: #f9f9f9;
} */

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 178, 7, 0.2);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
    transition: all 0.3s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-color);
}

.welcome-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.shop-btn {
    background: var(--primary-color);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.shop-btn:hover {
    background: #009606;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 178, 7, 0.3);
}

.hero-image {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-contact {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-contact span {
    font-size: 12px;
    color: var(--text-gray);
}

.hero-contact h3 {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 32px;
    margin: 5px 0;
}

.hero-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.shop-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Sections */
.flash-sale-section,
.product-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.section-icon {
    font-size: 32px;
    margin-right: 15px;
}

.section-icon.flash {
    color: #FFA800;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timer {
    display: flex;
    gap: 5px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all:hover {
    gap: 10px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.product-image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s;
}

.product-image-wrapper:hover img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.quick-view-btn:hover {
    background: #0ea378;
    color: white;
    text-decoration: none;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: 2px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    color: #999;
    padding: 0;
}

.wishlist-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #ffe5e0;
}

.wishlist-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

.product-card h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 40px;
    line-height: 1.3;
}

.product-size {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.price .current {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.price .discount {
    font-size: 12px;
    color: #999;
}

.add-to-cart-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.add-to-cart-btn i {
    margin-right: 6px;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price .current {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.price .original {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.rating {
    font-size: 12px;
}

/* Recommended Banner */
.recommended-banner {
    background: linear-gradient(135deg, #006D77 0%, #004D56 100%);
    padding: 30px 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    color: white;
    overflow: hidden;
}

.recommended-banner .row {
    align-items: stretch;
}

.recommended-banner .col-lg-6 {
    display: flex;
    align-items: center;
}

.recommended-banner .col-lg-6 > a,
.recommended-banner .col-lg-6 > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.recommended-banner .col-lg-6 > a img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.recommended-content {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recommended-content h2 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-showcase img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
}

.product-showcase h5 {
    color: var(--text-dark);
    font-size: 14px;
    margin: 0;
}

.product-showcase .price {
    justify-content: flex-start;
    margin: 5px 0;
}

.recommended-content .btn {
    margin-top: auto;
    background: #1abc9c;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.recommended-content .btn:hover {
    background: #16a085;
    transform: translateY(-2px);
}

/* Product Grid for Recommended Section */
.product-grid-recommended {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    flex: 1;
}

.product-grid-recommended .product-card {
    padding: 8px;
    border: none;
    border-radius: 10px;
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.product-grid-recommended .product-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.product-grid-recommended .product-image-wrapper {
    margin-bottom: 8px;
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-grid-recommended .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-grid-recommended .product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-grid-recommended h5 {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
    min-height: 28px;
    line-height: 1.3;
    color: #1a1a1a;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-grid-recommended .product-size {
    font-size: 10px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
    text-align: center;
}

.product-grid-recommended .price {
    margin-bottom: 6px;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.product-grid-recommended .price .current {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-grid-recommended .price .discount {
    font-size: 10px;
    color: #999;
}

.product-grid-recommended .add-to-cart-btn {
    padding: 6px 10px;
    font-size: 11px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
}

.product-grid-recommended .add-to-cart-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.product-grid-recommended .wishlist-btn {
    width: 26px;
    height: 26px;
    font-size: 12px;
    top: 6px;
    right: 6px;
}

.product-grid-recommended .product-overlay {
    border-radius: 8px;
}

.product-grid-recommended .quick-view-btn {
    padding: 6px 12px;
    font-size: 11px;
}

@media (max-width: 1200px) {
    .recommended-banner {
        padding: 25px 20px;
    }
    
    .recommended-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .recommended-banner {
        padding: 20px 15px;
    }
    
    .recommended-banner .col-lg-6 {
        margin-bottom: 15px;
    }
    
    .recommended-banner .col-lg-6 > a img {
        max-height: 250px;
    }
    
    .product-grid-recommended {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .recommended-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .recommended-banner {
        padding: 18px 12px;
    }
    
    .recommended-banner .col-lg-6 > a img {
        max-height: 200px;
    }
    
    .product-grid-recommended {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .product-grid-recommended .product-card {
        padding: 6px;
    }
    
    .product-grid-recommended h5 {
        font-size: 10px;
        min-height: 24px;
    }
    
    .product-grid-recommended .price .current {
        font-size: 12px;
    }
    
    .recommended-content {
        padding: 8px;
    }
    
    .recommended-content h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .recommended-banner {
        padding: 15px 10px;
    }
    
    .recommended-banner .col-lg-6 > a img {
        max-height: 160px;
    }
    
    .product-grid-recommended {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .product-grid-recommended .product-card {
        padding: 5px;
    }
    
    .product-grid-recommended h5 {
        font-size: 9px;
        min-height: 22px;
    }
    
    .product-grid-recommended .product-size {
        font-size: 8px;
    }
    
    .product-grid-recommended .price {
        margin-bottom: 5px;
        flex-direction: column;
        gap: 2px;
    }
    
    .product-grid-recommended .price .current {
        font-size: 11px;
    }
    
    .product-grid-recommended .add-to-cart-btn {
        padding: 4px 6px;
        font-size: 9px;
    }
    
    .recommended-content {
        padding: 6px;
    }
    
    .recommended-content h2 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .recommended-content .btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Promo Banners */
.promo-banners {
    margin-bottom: 50px;
}

.promo-card {
    padding: 40px 25px;
    border-radius: 10px;
    color: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.promo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Promo Image Card Styles */
.promo-card-link {
    text-decoration: none;
    display: block;
}

.promo-image-card {
    padding: 0;
    min-height: auto;
    background: #f8f9fa;
}

.promo-image-card .promo-banner-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.promo-image-card:hover .promo-banner-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .promo-image-card .promo-banner-img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .promo-image-card .promo-banner-img {
        height: 120px;
    }
}

.promo-1 { background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%); }
.promo-2 { background: linear-gradient(135deg, #4ECDC4 0%, #1A535C 100%); }
.promo-3 { background: linear-gradient(135deg, #A8E6CF 0%, #56AB91 100%); }
.promo-4 { background: linear-gradient(135deg, #FFD93D 0%, #FF9800 100%); }
.promo-5 { background: linear-gradient(135deg, #6A0572 0%, #AB83A1 100%); }
.promo-6 { background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%); }
.promo-7 { background: linear-gradient(135deg, #FCA311 0%, #E85D04 100%); }
.promo-8 { background: linear-gradient(135deg, #2A9D8F 0%, #264653 100%); }

.promo-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.promo-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.promo-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.promo-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* App Section */
.app-section {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.app-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--text-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-btn:hover {
    background: var(--primary-color);
    color: white;
}

.app-btn i {
    font-size: 28px;
}

.newsletter-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

/* Features Section */
.features-section {
    margin-bottom: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2C2C2C;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--primary-color);
    color: white;
}

.footer hr {
    border-color: #333;
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 1400px) {
    .product-grid,
    .product-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .product-grid,
    .product-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 9999;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        border-right: none;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .sidebar-close {
        display: block;
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .mobile-category-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        margin-bottom: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-category-toggle:hover {
        background: #009606;
    }

    /* Mobile Subcategory Visibility */
    .category-list .subcat-list {
        display: none !important;
        background: #f8f9fa;
        margin-top: 5px;
        border-radius: 4px;
    }

    .category-list .subsubcat-list {
        display: none !important;
        background: #f1f3f5;
        margin-top: 5px;
        border-radius: 4px;
    }

    /* Show when clicked/toggled */
    .category-list .subcat-list[style*="display: block"] {
        display: block !important;
    }

    .category-list .subsubcat-list[style*="display: block"] {
        display: block !important;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .hero-section {
        padding: 0;
    }

    .hero-slide-content {
        padding: 40px 20px;
    }
    
    .hero-contact {
        position: static;
        margin-top: 20px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar .d-flex {
        margin-top: 15px;
        justify-content: center;
    }
    
    .top-header .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .top-right {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .product-grid,
    .product-grid-4 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card h5 {
        font-size: 12px;
        min-height: 35px;
    }

    .product-image-wrapper img {
        height: 150px;
    }

    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .quick-view-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .wishlist-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 8px;
        right: 8px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .top-header {
        font-size: 10px;
        padding: 8px 0;
    }
    
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        gap: 5px;
    }
    
    .navbar .d-flex {
        justify-content: space-around;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }
    
    .icon-link {
        margin-left: 10px;
        font-size: 18px;
    }
    
    .search-expand.active {
        width: 280px;
    }
    
    .hero-section .col-lg-6 {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .promo-banners .col-md-3 {
        margin-bottom: 15px;
    }
    
    .app-section .col-lg-3,
    .app-section .col-lg-4,
    .app-section .col-lg-5 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .newsletter-section {
        margin-top: 30px;
    }
    
    .features-section .col-md-3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .product-grid,
    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-collapse {
        margin-top: 10px;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .icon-link {
        margin-left: 5px;
        font-size: 20px;
    }
    
    .search-container {
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .search-icon-btn {
        width: 100%;
        border-radius: 10px;
    }
    
    .search-expand.active {
        width: 100%;
        position: static;
        margin-top: 10px;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .top-header .row {
        text-align: center;
    }
    
    .top-header .col-md-6 {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .lang-select,
    .currency-select {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .product-card h5 {
        font-size: 14px;
    }
    
    .product-card .price {
        font-size: 16px;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .promo-card h3 {
        font-size: 20px;
    }
    
    .shop-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .countdown .timer {
        font-size: 14px;
    }
    
    .footer .col-lg-3,
    .footer .col-lg-2 {
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }
    
    .app-info h2 {
        font-size: 28px;
    }
    
    .product-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .product-showcase img {
        margin: 0 auto 15px;
    }
}

/* About Us Page Styles */
.page-header {
    background: linear-gradient(135deg, #00B207 0%, #009606 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.about-section {
    padding: 80px 0;
}

.feature-box {
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.icon-box i {
    color: var(--primary-color);
}

.choose-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.choose-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B207 0%, #009606 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 32px;
}

.stats-section {
    background: var(--primary-color);
}

.stat-item {
    padding: 20px;
}

.team-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.team-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .about-section {
        padding: 40px 0;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00B207 0%, #009606 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 28px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form .form-control {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 178, 7, 0.15);
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-image-wrapper {
    position: relative;
}

.business-hours-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.business-hours-card h4 {
    color: var(--primary-color);
}

.hours-list {
    font-size: 15px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin: 0 20px;
}

.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    background: white;
    color: var(--text-dark);
    padding: 20px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.faq-section .accordion-body {
    padding: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.newsletter-cta {
    background: linear-gradient(135deg, #00B207 0%, #009606 100%);
}

.newsletter-form-inline .input-group {
    background: white;
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form-inline .form-control {
    border: none;
    padding: 15px 25px;
}

.newsletter-form-inline .form-control:focus {
    box-shadow: none;
}

.newsletter-form-inline .btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    border: none;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .map-container {
        margin: 0;
    }
    
    .newsletter-form-inline .input-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .newsletter-form-inline .btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Offers Page Styles */
.offer-banner-section {
    background: var(--bg-light);
}

.offer-banner-card {
    border-radius: 15px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.banner-primary {
    background: linear-gradient(135deg, #00B207 0%, #009606 100%);
    color: white;
}

.banner-secondary {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.offer-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.offer-discount {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
}

.offer-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.offer-countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.8;
}

/* Deal Cards */
.deals-section {
    background: var(--bg-light);
}

.deal-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.deal-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF5722;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 1;
}

.deal-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.deal-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 40px;
}

.deal-content .rating {
    color: #FFA800;
    font-size: 14px;
    margin-bottom: 10px;
}

.deal-content .rating span {
    color: var(--text-gray);
    font-size: 13px;
    margin-left: 5px;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.deal-stock {
    margin-bottom: 15px;
}

.stock-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stock-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.3s;
}

.stock-text {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Weekly Offers */
.weekly-offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.weekly-offer-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.weekly-offer-card img {
    height: 250px;
    object-fit: cover;
}

.weekly-offer-content {
    padding: 25px;
}

.offer-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.weekly-offer-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.weekly-offer-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Combo Offers */
.combo-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.combo-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.combo-badge {
    display: inline-block;
    background: #FF5722;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.combo-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.combo-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.combo-price .current {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.combo-price .original {
    font-size: 18px;
    color: var(--text-gray);
    text-decoration: line-through;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-light);
}

/* ========================================
   OUTLETS PAGE STYLES
========================================= */

/* Store Locator Section */
.store-locator-section {
    background: white;
}

.store-search-box {
    position: relative;
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.store-search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.store-search-box input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 178, 7, 0.1);
}

.store-search-box .btn {
    padding: 15px 30px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Outlet Filters */
.outlet-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 178, 7, 0.3);
}

/* Outlet Cards */
.outlet-item {
    transition: all 0.3s ease;
}

.outlet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.outlet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.outlet-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.outlet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.outlet-card:hover .outlet-image img {
    transform: scale(1.1);
}

.outlet-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.new-badge {
    background: var(--secondary-color);
}

.outlet-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.outlet-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.outlet-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 15px;
}

.info-item i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.outlet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 14px;
}

.outlet-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.outlet-actions .btn {
    flex: 1;
    border-radius: 50px;
    font-weight: 600;
}

/* Map Section */
.map-section {
    background: var(--bg-light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Why Visit Section */
.why-visit-section {
    background: white;
}

.visit-feature-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.visit-feature-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #00E608);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.visit-feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.visit-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.visit-feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Coming Soon Section */
.coming-soon-section {
    background: var(--bg-light);
}

.coming-soon-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.coming-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 178, 7, 0.1), rgba(0, 178, 7, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.coming-soon-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.coming-soon-card .location {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 15px;
}

.coming-soon-card .location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.coming-soon-card .opening-date {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.coming-soon-card .btn {
    border-radius: 50px;
    padding: 10px 25px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .store-search-box {
        flex-direction: column;
    }
    
    .store-search-box .btn {
        width: 100%;
    }
    
    .outlet-filters {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .outlet-actions {
        flex-direction: column;
    }
    
    .outlet-actions .btn {
        width: 100%;
    }
    
    .outlet-name {
        font-size: 20px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ========================================
   AUTHENTICATION PAGES STYLES
========================================= */

.auth-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    min-height: calc(100vh - 250px);
}

.auth-wrapper {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Left Side - Image & Info */
.auth-image-side {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00E608 100%);
    color: white;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-image-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.auth-image-side::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.auth-image-content {
    position: relative;
    z-index: 1;
}

.auth-logo {
    margin-bottom: 30px;
}

.auth-logo img {
    filter: brightness(0) invert(1);
}

.auth-image-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.auth-image-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.auth-features {
    margin-bottom: 40px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.auth-feature-item i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.auth-illustration {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.auth-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right Side - Form */
.auth-form-side {
    padding: 50px 40px;
}

.auth-form-content {
    max-width: 450px;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-gray);
    font-size: 16px;
}

/* Form Inputs */
.auth-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 16px;
}

.input-with-icon .form-control {
    padding: 14px 20px 14px 50px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.input-with-icon .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 178, 7, 0.1);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-hint {
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Remember Me & Forgot Password */
.form-check-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-check-label {
    color: var(--text-dark);
    font-size: 14px;
}

.forgot-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #009006;
    text-decoration: underline;
}

/* Buttons */
.auth-form .btn-block {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.auth-form .btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 178, 7, 0.3);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    position: relative;
    background: white;
    padding: 0 15px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-google:hover {
    border-color: #DB4437;
    color: #DB4437;
}

.btn-facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 25px;
}

.auth-footer p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #009006;
    text-decoration: underline;
}

/* Terms Checkbox */
.auth-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Auth Pages */
@media (max-width: 991px) {
    .auth-image-side {
        padding: 40px 30px;
        text-align: center;
    }
    
    .auth-image-content h2 {
        font-size: 28px;
    }
    
    .auth-illustration {
        max-width: 400px;
        margin: 30px auto 0;
    }
    
    .auth-form-side {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .auth-section {
        padding: 30px 0 !important;
    }
    
    .auth-image-side {
        padding: 30px 20px;
    }
    
    .auth-image-content h2 {
        font-size: 24px;
    }
    
    .auth-image-content > p {
        font-size: 16px;
    }
    
    .auth-illustration {
        display: none;
    }
    
    .auth-form-side {
        padding: 30px 20px;
    }
    
    .auth-header h3 {
        font-size: 26px;
    }
    
    .form-check-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========================================
   PROFILE PAGE STYLES
========================================= */

.profile-section {
    background: var(--bg-light);
}

/* Profile Sidebar */
.profile-sidebar {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.profile-user-info {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
}

.avatar-edit-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-edit-btn:hover {
    background: #009006;
    transform: scale(1.1);
}

.profile-user-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.profile-user-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Profile Navigation */
.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.profile-nav-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.profile-nav-item.active {
    background: linear-gradient(135deg, var(--primary-color), #00E608);
    color: white;
}

.profile-nav-item i {
    font-size: 18px;
    width: 20px;
}

/* Profile Content Cards */
.profile-stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.profile-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 28px;
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.stat-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 5px 0 0;
}

/* Profile Content Card */
.profile-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.card-header-custom {
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header-custom h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body-custom {
    padding: 30px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Address Cards */
.address-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.address-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.default-badge {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.address-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.address-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.address-actions {
    display: flex;
    gap: 10px;
}

/* Order Table */
.order-table {
    margin: 0;
}

.order-table thead {
    background: var(--bg-light);
}

.order-table th {
    font-weight: 700;
    color: var(--text-dark);
    padding: 15px 20px;
    border: none;
    font-size: 14px;
}

.order-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-delivered {
    background: rgba(0, 178, 7, 0.1);
    color: var(--primary-color);
}

.status-processing {
    background: rgba(255, 168, 0, 0.1);
    color: var(--secondary-color);
}

.status-pending {
    background: rgba(255, 87, 34, 0.1);
    color: #FF5722;
}

/* ========================================
   SHOPPING CART PAGE STYLES
========================================= */

.cart-section {
    background: var(--bg-light);
}

/* Cart Items Wrapper */
.cart-items-wrapper {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.cart-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px 140px 100px 40px;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.item-info {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.item-meta .in-stock {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

.item-meta .in-stock i {
    margin-right: 5px;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.current-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

.original-price {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
}

/* Quantity Controls */
.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 10px;
    padding: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 178, 7, 0.1);
}

.item-quantity input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 700;
    background: transparent;
}

.item-total h5 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #FF5722;
    color: white;
    border-color: #FF5722;
    transform: scale(1.1);
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

/* Coupon Section */
.coupon-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.coupon-section h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-input-wrapper .form-control {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
}

.available-coupons {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.coupon-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coupon-tag {
    background: white;
    border: 2px dashed var(--primary-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.coupon-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.coupon-tag small {
    font-weight: 400;
    font-size: 12px;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    position: sticky;
    top: 100px;
}

.cart-summary h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.summary-divider {
    height: 2px;
    background: var(--border-color);
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.checkout-btn {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 178, 7, 0.3);
}

/* Delivery Info */
.delivery-info {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 20px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.delivery-option:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.delivery-option i {
    font-size: 24px;
    color: var(--primary-color);
    width: 30px;
}

.delivery-option strong {
    display: block;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 3px;
}

.delivery-option p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.payment-methods p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-icons i {
    font-size: 32px;
    color: var(--text-dark);
}

/* Cart Promo Banner */
.cart-promo-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cart-promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 178, 7, 0.9), rgba(0, 230, 8, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.promo-content h5 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.promo-content p {
    margin-bottom: 15px;
}

/* Responsive Styles for Cart */
@media (max-width: 991px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .item-price,
    .item-quantity,
    .item-total {
        grid-column: 2;
    }
    
    .item-remove {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 576px) {
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
    
    .coupon-input-wrapper {
        flex-direction: column;
    }
    
    .item-details h5 {
        font-size: 16px;
    }
    
    .cart-item {
        padding: 15px;
        position: relative;
    }
}

/* ========================================
   WISHLIST PAGE STYLES
========================================= */

.wishlist-section {
    background: var(--bg-light);
}

/* Wishlist Header */
.wishlist-header {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wishlist-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-info h3 i {
    color: #E91E63;
}

.wishlist-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 15px;
}

.wishlist-actions {
    display: flex;
    gap: 12px;
}

/* Wishlist Filters */
.wishlist-filters {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group,
.sort-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group label,
.sort-group label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.filter-chip {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.sort-group .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    min-width: 200px;
}

.sort-group .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 178, 7, 0.1);
}

/* Wishlist Cards */
.wishlist-item {
    transition: all 0.3s ease;
}

.wishlist-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wishlist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.wishlist-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.wishlist-image.out-of-stock::after {
    content: 'Out of Stock';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wishlist-card:hover .wishlist-image img {
    transform: scale(1.1);
}

.wishlist-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge-discount,
.badge-stock,
.badge-new {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-discount {
    background: #FF5722;
    color: white;
}

.badge-new {
    background: var(--secondary-color);
    color: white;
}

.badge-stock.in-stock {
    background: var(--primary-color);
    color: white;
}

.badge-stock.out-stock {
    background: #757575;
    color: white;
}

.wishlist-remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #E91E63;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wishlist-remove-btn:hover {
    background: #E91E63;
    color: white;
    transform: scale(1.1) rotate(90deg);
}

.wishlist-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wishlist-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.wishlist-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.wishlist-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.wishlist-rating i {
    color: #FFA800;
    font-size: 14px;
}

.wishlist-rating span {
    margin-left: 8px;
    color: var(--text-gray);
    font-size: 13px;
}

.wishlist-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wishlist-price .current-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.wishlist-price .original-price {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.wishlist-meta {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.added-date {
    font-size: 13px;
    color: var(--text-gray);
}

.added-date i {
    margin-right: 5px;
}

.wishlist-content .btn {
    margin-top: auto;
    padding: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.wishlist-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 178, 7, 0.3);
}

/* Empty Wishlist State */
.empty-wishlist {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.empty-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(233, 30, 99, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon i {
    font-size: 80px;
    color: #E91E63;
}

.empty-wishlist h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-wishlist p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Bulk Actions */
.wishlist-bulk-actions {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.wishlist-bulk-actions .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

/* Responsive Styles for Wishlist */
@media (max-width: 991px) {
    .wishlist-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wishlist-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-group,
    .sort-group {
        width: 100%;
    }
    
    .sort-group .form-select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .wishlist-info h3 {
        font-size: 22px;
    }
    
    .wishlist-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .wishlist-actions .btn {
        width: 100%;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-chip {
        width: 100%;
        text-align: center;
    }
    
    .wishlist-image {
        height: 200px;
    }
}

/* ========================================
   CHECKOUT & ORDER PAGES STYLES
========================================= */

/* Checkout Progress */
.checkout-progress {
    background: white;
    border-bottom: 2px solid var(--border-color);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 24px;
    transition: all 0.3s ease;
}

.progress-step.active .step-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.progress-step span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
}

.progress-step.active span {
    color: var(--primary-color);
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--border-color);
    margin: 0 10px;
    position: relative;
    top: -20px;
}

.progress-line.active {
    background: var(--primary-color);
}

/* Checkout Section */
.checkout-section {
    background: var(--bg-light);
}

.checkout-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.checkout-card-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
}

.checkout-card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card-body {
    padding: 30px;
}

.checkout-card-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.checkout-card-body .form-control {
    padding: 12px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
}

.checkout-card-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 178, 7, 0.1);
}

/* Delivery Options */
.delivery-option-card {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.delivery-option-card input[type="radio"] {
    display: none;
}

.delivery-option-card input[type="radio"]:checked + label {
    color: var(--primary-color);
}

.delivery-option-card input[type="radio"]:checked ~ label {
    border-color: var(--primary-color);
}

.delivery-option-card label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.option-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.option-info h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.option-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.option-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Payment Options */
.payment-option-card {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-option-card input[type="radio"] {
    display: none;
}

.payment-option-card input[type="radio"]:checked + label .payment-icon {
    background: var(--primary-color);
    color: white;
}

.payment-option-card label {
    display: flex;
    cursor: pointer;
    margin: 0;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.payment-info h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.payment-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Checkout Summary */
.checkout-summary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.checkout-summary h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-items {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.summary-item-card {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.summary-item-card img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.summary-item-card .item-details {
    flex: 1;
}

.summary-item-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.summary-item-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.summary-item-card .item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-calculation {
    margin-bottom: 25px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.calc-divider {
    height: 2px;
    background: var(--border-color);
    margin: 15px 0;
}

.calc-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.place-order-btn {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 25px;
}

.security-info {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.security-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Order Confirmation */
.confirmation-section {
    background: var(--bg-light);
}

.confirmation-header {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.success-animation {
    margin-bottom: 30px;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00E608);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.checkmark-circle i {
    font-size: 60px;
    color: white;
}

.confirmation-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.confirmation-header p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.order-id {
    display: inline-block;
    padding: 15px 30px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 18px;
    color: var(--text-dark);
}

.confirmation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.card-header-custom {
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header-custom h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body-custom {
    padding: 30px;
}

.info-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.address-display h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.address-display p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.order-items-table {
    margin: 0;
}

.order-items-table thead {
    background: var(--bg-light);
}

.order-items-table th {
    font-weight: 700;
    color: var(--text-dark);
    padding: 15px 20px;
    border: none;
}

.order-items-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-info img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-dark);
}

.summary-divider {
    height: 2px;
    background: var(--border-color);
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.confirmation-actions .btn {
    padding: 15px;
    font-weight: 700;
    border-radius: 12px;
}

.help-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.help-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.help-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: var(--primary-color);
    color: white;
}

.whats-next-section h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}

.next-step-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.next-step-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.next-step-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.next-step-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Order Tracking */
.tracking-section {
    background: var(--bg-light);
}

.tracking-search-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tracking-search-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tracking-search-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 25px auto 0;
}

.tracking-search-form .form-control {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
}

.tracking-search-form .btn {
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 12px;
}

.tracking-status-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.status-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.status-icon.out-delivery {
    background: linear-gradient(135deg, var(--secondary-color), #FF8F00);
}

.status-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.status-info p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.expected-delivery {
    font-size: 15px;
    color: var(--text-dark);
}

.order-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
}

.meta-item label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.meta-item strong {
    font-size: 18px;
    color: var(--text-dark);
}

.tracking-timeline-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tracking-timeline-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-timeline {
    position: relative;
    padding-left: 50px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-gray);
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.timeline-item.active .timeline-icon {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 168, 0, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 168, 0, 0); }
}

.timeline-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 8px;
}

.timeline-date {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.delivery-person-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
}

.dp-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.dp-details strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
}

.dp-details p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.contact-dp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
}

.tracking-map-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tracking-map-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tracking-info-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-content strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.tracking-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tracking-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracking-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.item-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.item-qty {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

.payment-details {
    padding: 0;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-dark);
}

.payment-divider {
    height: 2px;
    background: var(--border-color);
    margin: 15px 0;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
}

.tracking-help-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
}

.tracking-help-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tracking-help-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.help-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive for Checkout/Order Pages */
@media (max-width: 991px) {
    .checkout-summary {
        position: static;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .progress-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .progress-step span {
        font-size: 12px;
    }
    
    .tracking-search-form {
        flex-direction: column;
    }
    
    .status-header {
        flex-direction: column;
        text-align: center;
    }
    
    .status-info h3 {
        font-size: 24px;
    }
}

/* Main Promotional Banner */
.promo-main-banner {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.main-banner-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.main-banner-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 178, 7, 0.05) 0%, rgba(0, 178, 7, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.banner-text-content {
    position: relative;
    z-index: 1;
}

.banner-subtitle {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.banner-main-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.banner-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-image-wrapper {
    position: relative;
    z-index: 1;
}

.banner-main-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.badge-1 {
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    color: white;
}

.badge-content {
    text-align: center;
}

.badge-percent {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.badge-2 {
    bottom: 30px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.badge-2 i {
    font-size: 24px;
}

@media (max-width: 991px) {
    .banner-main-title {
        font-size: 42px;
    }
    
    .main-banner-wrapper {
        padding: 40px 30px;
    }
    
    .banner-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .banner-main-title {
        font-size: 32px;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .main-banner-wrapper {
        padding: 30px 20px;
    }
    
    .banner-buttons {
        flex-direction: column;
    }
    
    .banner-buttons .btn {
        width: 100%;
    }
}

.newsletter-box {
    background: linear-gradient(135deg, #00B207 0%, #009606 100%);
    padding: 60px 50px;
    border-radius: 15px;
}

.newsletter-form-box .input-group {
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter-form-box .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
}

.newsletter-form-box .form-control:focus {
    box-shadow: none;
}

.newsletter-form-box .btn {
    padding: 15px 35px;
    font-weight: 700;
    border: none;
    color: var(--primary-color);
}

.newsletter-form-box .btn:hover {
    background: var(--text-dark);
    color: white;
}

@media (max-width: 768px) {
    .offer-discount {
        font-size: 48px;
    }
    
    .offer-countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 10px 12px;
    }
    
    .countdown-value {
        font-size: 20px;
    }
    
    .newsletter-box {
        padding: 40px 25px;
    }
}