/* Clean Minimal E-commerce Style */
:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
}

body {
    padding-top: 56px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: var(--text-dark);
}

/* Product Cards */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Promo Carousel */
.promo-section {
    margin-top: 56px;
}

.promo-slide-fullwidth {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.promo-content {
    text-align: center;
    color: white;
    padding: 3rem;
    max-width: 800px;
}

.promo-content h3 {
    color: white;
}

.promo-content p {
    color: rgba(255, 255, 255, 0.9);
}

.promo-icon {
    font-size: 4rem;
}

.promo-icon {
    font-size: 5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: none;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background-color: white;
}

/* Product Cards */
.product-card {
    transition: all 0.2s ease;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.product-card .card-img-top {
    background: #f9fafb;
}

.product-card .card-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.product-card .card-text {
    color: var(--text-light);
    font-size: 0.875rem;
}

.product-card .card-img-top {
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Floating Button */
.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.25rem;
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.2s ease;
}

.btn-floating:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Badges */
.badge {
    font-weight: 500;
    font-size: 0.75rem;
}

/* Sections */
section h2 {
    color: var(--text-dark);
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Offcanvas */
.offcanvas {
    box-shadow: 2px 0 8px rgba(0,0,0,.06);
}

.list-group-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    transform: translateX(5px);
}

/* Footer */
footer {
    margin-top: auto;
}

footer p {
    color: var(--text-light);
}

/* Modal */
.modal-content {
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

/* Page Header */
.page-header {
    margin-top: 56px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Product Detail Page */
.product-image-container {
    position: sticky;
    top: 80px;
}

.stat-card {
    text-align: center;
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Orders Page */
.order-card {
    transition: all 0.2s ease;
}

.order-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Brands Page */
.brand-card {
    transition: all 0.2s ease;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-placeholder {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Table Styles */
.table {
    background: white;
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: #f9fafb;
}

/* Rating Stars */
.rating-stars {
    font-size: 0.875rem;
    line-height: 1;
}

.rating-stars-sm {
    font-size: 0.75rem;
    line-height: 1;
}

.bi-star, .bi-star-fill {
    margin-right: 1px;
}

/* Wishlist Button */
.wishlist-btn {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn .bi-heart-fill {
    animation: heartbeat 0.3s ease;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Add to Cart Button */
.add-to-cart-btn {
    transition: all 0.2s ease;
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

/* Category Page */
.category-block {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-header {
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-header:hover {
    transform: translateX(10px);
}

.category-header a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-header a:hover {
    color: #1d4ed8 !important;
}

.category-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.category-image-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.category-image-placeholder:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.btn-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-floating {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    padding: 2.5em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.container:hover {
    box-shadow: 0 12px 48px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.main-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2em;
    font-size: 3em;
    letter-spacing: 3px;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, h2 {
    color: #333;
}

#slideshow {
    background: #fff;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.05);
}
.promo-slide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 1em;
    padding: 1.5em;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.promo-slide::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}
.promo-slide:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}
.promo-slide::before {
    content: "🔥";
    position: absolute;
    right: 1em;
    top: 1em;
    font-size: 2.5em;
    animation: pulse 2s infinite;
    z-index: 1;
}
.promo-slide h3 {
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}
.promo-slide p {
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

#popular-products {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 1.5em;
    margin-bottom: 1.5em;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 1em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5em;
    margin-top: 1em;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5em;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.3);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

.product-name {
    color: #333;
    font-size: 1.3em;
    margin: 0.5em 0;
    font-weight: 600;
}

.product-desc {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    margin: 1em 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5em;
}

.product-btn, .promo-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6em 1.2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-btn:hover, .promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1em;
    margin-top: 1em;
}

.empty-message {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 2em;
}

.product-list, .category-list, .brand-list, .order-list {
    list-style: none;
    padding: 0;
}
.product-item, .category-item, .brand-item, .order-item {
    background: #f1f1f1;
    margin-bottom: 0.7em;
    padding: 1em 1.2em;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.04);
    transition: background 0.2s, box-shadow 0.2s;
}
.product-item:hover, .category-item:hover, .brand-item:hover, .order-item:hover {
    background: #e3f2fd;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.09);
}
.product-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    padding: 0.4em 1em;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}
.product-price:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.product-detail {
    background: #f9f9f9;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.04);
}
#categories-panel {
    background: #fff;
    padding: 1.2em;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.13);
    position: fixed;
    left: 0;
    top: 70px;
    width: 220px;
    max-height: 80vh;
    overflow-y: auto;
    display: none;
    border-left: 6px solid #1976d2;
    z-index: 999;
    animation: slideIn 0.3s;
}
#categories-panel.active {
    display: block;
}
@keyframes slideIn {
    from { left: -220px; opacity: 0; }
    to { left: 0; opacity: 1; }
}
.menu-toggle {
    position: fixed;
    left: 15px;
    top: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-toggle:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
    transform: scale(1.1) rotate(90deg);
}
.order-products {
    list-style: none;
    padding-left: 1em;
}

@media (max-width: 600px) {
    .container {
        padding: 0.7em;
        margin: 10px;
    }
    .main-title {
        font-size: 1.8em;
        letter-spacing: 1px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    #categories-panel {
        width: 90vw;
        left: 0;
        top: 60px;
        border-radius: 0 0 16px 16px;
    }
    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .section-title {
        font-size: 1.4em;
    }
}

/* ===== Louma-X Brand Refresh ===== */
:root {
    --lx-primary: #f2cf6a;
    --lx-primary-dark: #e1bd59;
    --lx-accent: #f8e8bb;
    --lx-ink: #232323;
    --lx-muted: #666666;
    --lx-surface: #fffdf2;
    --lx-white: #ffffff;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Segoe UI", "Segoe UI Variable", Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: var(--lx-ink);
    padding-top: calc(var(--quick-strip-height) + var(--eco-strip-height) + 58px);
}

.site-main {
    min-height: calc(100vh - 320px);
}

.ecosystem-strip {
    position: fixed;
    top: var(--quick-strip-height);
    left: 0;
    right: 0;
    z-index: 1031;
    background: #f2cf6a;
    color: #2e2400;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(46, 36, 0, 0.12);
}

.ecosystem-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0.28rem 1rem;
}

.ecosystem-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.navbar {
    top: calc(var(--quick-strip-height) + var(--eco-strip-height));
    background: #ffffff !important;
    border-bottom: 1px solid rgba(241, 182, 0, 0.33);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-mark {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--lx-ink);
}

.brand-subtitle {
    font-size: 0.62rem;
    color: var(--lx-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link.active,
.nav-link:hover {
    color: #7a5200 !important;
}

.promo-section .section-head h2,
.section-head h2 {
    color: #2d2300;
}

.loumax-hero {
    padding: 2.2rem 0 1.4rem;
}

.hero-kicker {
    color: #9b6e00;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
}

.hero-title {
    font-size: clamp(1.7rem, 2.6vw, 3rem);
    line-height: 1.18;
    font-weight: 800;
    max-width: 14ch;
}

.hero-subtitle {
    color: #44595f;
    max-width: 60ch;
    font-size: 1.02rem;
}

.hero-mosaic {
    background: #ffe9a3;
    border-radius: 24px;
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
    box-shadow: 0 14px 30px rgba(154, 107, 0, 0.22);
}

.hero-chip {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    border-radius: 14px;
    padding: 0.75rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.ecosystem-card {
    height: 100%;
    padding: 1.2rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(241, 182, 0, 0.3);
    box-shadow: 0 8px 20px rgba(16, 32, 37, 0.06);
}

.ecosystem-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(241, 182, 0, 0.16);
    color: #8d6400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.55rem;
}

.ecosystem-card h5 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.ecosystem-card p {
    color: var(--lx-muted);
    margin-bottom: 0;
    font-size: 0.94rem;
}

.section-head h2 {
    font-size: clamp(1.1rem, 1.45vw, 1.45rem);
    font-weight: 800;
}

.section-link {
    color: #8d6400;
    text-decoration: none;
    font-weight: 600;
}

.home-search-form {
    min-width: min(100%, 380px);
    width: 100%;
    max-width: 400px;
}

.home-search-form .form-control {
    border: 1px solid rgba(241, 182, 0, 0.45);
    border-radius: 10px 0 0 10px;
}

.home-search-form .btn {
    border-radius: 0 10px 10px 0;
}

.search-context {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.search-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #4a3900;
    background: #fff0b6;
    border: 1px solid rgba(241, 182, 0, 0.42);
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
}

.search-reset-link {
    color: #7f5b00;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.search-reset-link:hover {
    text-decoration: underline;
}

.category-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(241, 182, 0, 0.3);
    color: var(--lx-ink);
    min-height: 48px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(16, 32, 37, 0.1);
}

.category-dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--lx-accent);
    flex-shrink: 0;
}

.category-name {
    font-weight: 600;
    font-size: 0.94rem;
}

.promo-section {
    margin-top: 0;
    padding: 0.4rem 0 0.2rem;
}

.promo-slide-fullwidth {
    min-height: 260px;
    border-radius: 16px;
    background: #f2cf6a;
    box-shadow: inset 0 0 0 1px rgba(120, 87, 0, 0.24);
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
}

.promo-slide-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0.7rem;
    align-items: stretch;
    padding: 0.75rem;
}

.promo-content {
    padding: 1rem 0.8rem;
}

.promo-content .display-6 {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.promo-content .lead {
    font-size: 0.92rem;
    margin-bottom: 0.9rem !important;
}

.promo-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.promo-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.promo-product-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 0.65rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(110, 82, 0, 0.18);
    padding: 0.5rem;
    color: #1f1f1f;
}

.promo-product-card:hover {
    box-shadow: 0 8px 18px rgba(84, 64, 0, 0.14);
}

.promo-product-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #fff7cf;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #6f5400;
}

.promo-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.2;
}

.promo-product-price {
    font-size: 0.84rem;
    font-weight: 800;
    color: #5d4500;
}

.promo-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
    color: #a37400;
}

.promo-product-rating small {
    margin-left: 0.4rem;
    color: #6e6e6e;
}

.product-card {
    border-radius: 12px;
    border: 1px solid rgba(241, 182, 0, 0.2);
    box-shadow: 0 8px 20px rgba(16, 32, 37, 0.05);
}

.product-card .card-body {
    padding: 0.65rem;
}

.product-card .card-title {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.product-card .card-text {
    margin-bottom: 0.45rem;
}

.product-card .card-footer {
    padding: 0.55rem 0.65rem 0.65rem;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16, 32, 37, 0.12);
}

.nav-search-shell {
    width: min(100%, 440px);
    position: relative;
}

.nav-search-form {
    width: min(100%, 440px);
}

.nav-search-form .form-control {
    border-radius: 999px;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
}

.nav-search-results-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(166, 134, 38, 0.28);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(20, 28, 37, 0.14);
    z-index: 1100;
    overflow: hidden;
}

.nav-search-results-list {
    max-height: 340px;
    overflow-y: auto;
}

.nav-search-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    text-decoration: none;
    color: #262626;
    border-bottom: 1px solid rgba(166, 134, 38, 0.14);
}

.nav-search-item:hover {
    background: #fff9e9;
}

.nav-search-item-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff3cf;
    color: #6e5721;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-search-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-search-item-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nav-search-item-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1f1f1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-search-item-meta {
    font-size: 0.75rem;
    color: #706f6f;
}

.nav-search-item-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6a5319;
}

.nav-search-results-footer {
    padding: 0.55rem;
    background: #fffdf6;
}

.nav-search-empty {
    padding: 0.85rem;
    color: #6d6d6d;
    font-size: 0.84rem;
}

.search-page-form,
.search-filter-card {
    border: 1px solid rgba(166, 134, 38, 0.24);
    background: #fffef9;
    border-radius: 14px;
    padding: 0.85rem;
}

.compact-product-grid .col-sm-6,
.compact-product-grid .col-xl-4 {
    display: flex;
}

.compact-product-card {
    border-radius: 12px;
}

.compact-product-card .card-img-top {
    height: 132px !important;
}

.compact-product-card .card-body {
    padding: 0.55rem 0.65rem;
}

.compact-product-card .card-title {
    font-size: 0.86rem;
    margin-bottom: 0.2rem;
    min-height: 2.2em;
}

.compact-product-card .card-text {
    font-size: 0.76rem;
    margin-bottom: 0.3rem;
}

.compact-price {
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1;
}

.compact-product-card .card-footer {
    padding: 0.45rem 0.6rem 0.6rem;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.icon-circle-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.product-actions .btn-group {
    flex: 1;
}

.product-actions .btn-group .btn {
    min-height: 34px;
}

.product-actions .qty-badge {
    min-width: 42px;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #f2cf6a;
    border-color: #f2cf6a;
    color: #2b2100;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #e1bd59;
    border-color: #e1bd59;
    color: #2b2100;
}

.btn-outline-dark {
    border-color: #1e2b34;
    color: #1e2b34;
}

.vendor-cta-inner {
    border-radius: 20px;
    padding: 1.7rem;
    background: #fff7d1;
    color: #2f2500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.vendor-cta-inner h3 {
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.vendor-cta-inner p {
    margin-bottom: 0;
    color: #4e3b00;
}

.footer {
    background: #ffffff;
    border-top: 2px solid #f2c100;
}

.footer .text-white {
    color: #241b00 !important;
}

.footer .border-secondary {
    border-color: rgba(120, 95, 0, 0.18) !important;
}

.recently-viewed-panel {
    position: sticky;
    top: 145px;
    background: #fffdf6;
    border: 1px solid rgba(241, 182, 0, 0.35);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 24px rgba(95, 72, 0, 0.1);
}

.recently-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #3d2f00;
    margin-bottom: 0.85rem;
}

.recent-list {
    display: grid;
    gap: 0.65rem;
}

.recent-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 12px;
    padding: 0.55rem;
    border: 1px solid rgba(241, 182, 0, 0.24);
    background: #ffffff;
}

.recent-item:hover {
    background: #fff6d8;
}

.recent-thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff0bb;
    color: #7d5a00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recent-name {
    color: #2c2c2c;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
}

.recent-price {
    font-size: 0.85rem;
    color: #8a6500;
    font-weight: 700;
}

.mini-categories h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4a3900;
}

.meaningful-section {
    background: rgba(255, 255, 255, 0.58);
}

.meaning-card {
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(241, 182, 0, 0.28);
    padding: 1rem;
    height: 100%;
    box-shadow: 0 8px 18px rgba(95, 72, 0, 0.08);
}

.meaning-card h5 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #3e2f00;
    font-weight: 700;
}

.meaning-card p {
    margin-bottom: 0;
    color: #6a5a2f;
}

.mini-cat-pill {
    text-decoration: none;
    font-size: 0.8rem;
    color: #5f4500;
    background: #fff1bf;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(241, 182, 0, 0.4);
}

.mini-cat-pill:hover {
    background: #f9de88;
    color: #3f2e00;
}

.text-light-muted {
    color: rgba(35, 35, 35, 0.72);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff5c5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a4300;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #ffe37a;
    color: #392b00;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(35, 35, 35, 0.82);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-link:hover {
    color: #2d2200;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: rgba(35, 35, 35, 0.84);
}

.footer-contact i {
    color: var(--lx-accent);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-contact strong {
    color: #201800;
}

.footer-link {
    color: rgba(35, 35, 35, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    body {
        padding-top: calc(var(--quick-strip-height) + var(--eco-strip-height) + 64px);
    }

    .hero-title {
        max-width: none;
    }

    .navbar {
        top: calc(var(--quick-strip-height) + var(--eco-strip-height));
    }

    .promo-slide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .ecosystem-strip-inner {
        justify-content: flex-start;
        gap: 0.8rem;
        overflow-x: auto;
        white-space: nowrap;
    }

    .hero-mosaic {
        border-radius: 18px;
    }

    .vendor-cta-inner {
        padding: 1.2rem;
    }

    .recently-viewed-panel {
        position: static;
        top: auto;
    }

    .home-search-form {
        max-width: 100%;
    }
}
