/* 
 * DekoShop Premium Redesign CSS Stylesheet
 * Custom styles for the 3-column layout, banners, collection cards, and category pages
 */

/* General overrides to match Google/Lululemon modern layouts */
.dekole-scope {
    font-family: 'Inter', 'Poppins', sans-serif !important;
}

/* Prevent any horizontal page overflow in the shop scope */
.dekole-scope {
    overflow-x: hidden;
    max-width: 100%;
}

.dekole-scope .container,
.dekole-scope .container.px-xl-5 {
    max-width: 100%;
}

/* 3-Column Grid Container */
.deko-shop-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 280px;
    gap: 20px;
    padding: 20px 0;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Critical: allow the center column to shrink below its content's natural width
   so flex/grid children don't push the layout horizontally beyond the viewport */
.deko-shop-left,
.deko-shop-center,
.deko-shop-right {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.deko-shop-center {
    overflow: visible; /* allow card shadows/hover lifts to show */
}

@media (max-width: 1280px) {
    .deko-shop-grid {
        grid-template-columns: 240px minmax(0, 1fr) 260px;
        gap: 16px;
    }
}

@media (max-width: 1200px) {
    .deko-shop-grid {
        grid-template-columns: 240px minmax(0, 1fr);
    }
    .deko-shop-right {
        display: none;
    }
}

@media (max-width: 991px) {
    .deko-shop-grid {
        grid-template-columns: 1fr;
        padding: 12px 0;
        gap: 0;
    }
    .deko-shop-left {
        display: none;
    }
    .deko-shop-right {
        display: none;
    }

    .dekole-scope .container,
    .dekole-scope .container.px-xl-5 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* Sidebar General Styling */
.deko-sidebar-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 20px;
    margin-bottom: 20px;
}

.deko-sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Category Sidebar Navigation */
.deko-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deko-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    color: #475569;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.deko-cat-item:hover, .deko-cat-item.active {
    background: #eff6ff;
    color: #2563eb;
}

.deko-cat-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deko-cat-item-content i {
    font-size: 14px;
    width: 20px;
    text-align: center;
    color: #64748b;
    transition: color 0.2s;
}

.deko-cat-item:hover i, .deko-cat-item.active i {
    color: #2563eb;
}

.deko-cat-chevron {
    font-size: 10px;
    color: #94a3b8;
}

.deko-btn-view-all {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    background: #fff;
    text-decoration: none !important;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.deko-btn-view-all:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

/* Expert Chat Widget */
.deko-expert-card {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.deko-expert-icon {
    font-size: 26px;
    color: #2563eb;
    margin-bottom: 12px;
}

.deko-expert-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.deko-expert-text {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.4;
}

.deko-btn-expert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #2563eb;
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

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

/* Trust Widget */
.deko-trust-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deko-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.deko-trust-item:last-child {
    margin-bottom: 0;
}

.deko-trust-icon-box {
    font-size: 16px;
    color: #2563eb;
    padding-top: 2px;
    width: 20px;
    text-align: center;
}

.deko-trust-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.deko-trust-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Right Sidebar Offer Items */
.deko-offer-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.deko-offer-item:last-child {
    border-bottom: none;
}

.deko-offer-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    flex-shrink: 0;
}

.deko-offer-content {
    flex: 1;
}

.deko-offer-promo {
    font-size: 12.5px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2px;
}

.deko-offer-desc {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.deko-offer-link {
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none !important;
}

.deko-offer-link:hover {
    color: #1d4ed8;
    text-decoration: underline !important;
}

/* DekoDeals Promo Card */
/* DekoDeals — compact card with 3D icon on the right */
.deko-deals-promo-card {
    background: #0f172a;
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 100px;
}

.deko-deals-promo-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deko-deals-promo-title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0 0 2px 0;
    color: #ffffff;
    line-height: 1.2;
}

.deko-deals-promo-text {
    font-size: 11.5px;
    color: #94a3b8;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.deko-deals-btn {
    background: #2563eb;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11.5px;
    padding: 6px 12px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    line-height: 1.2;
}

.deko-deals-btn i {
    font-size: 9px;
    transition: transform 0.2s;
}

.deko-deals-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.deko-deals-btn:hover i {
    transform: translateX(3px);
}

.deko-deals-promo-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 14px rgba(239, 68, 68, 0.45));
    transform: rotate(8deg);
    transition: transform 0.3s ease;
}

.deko-deals-promo-card:hover .deko-deals-promo-icon {
    transform: rotate(0deg) scale(1.05);
}

/* Legacy alias — kept for any other markup still using the old tag span */
.deko-deals-tag {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 24px;
    color: #ef4444;
    opacity: 0.85;
    transform: rotate(15deg);
}

/* Safe Shopping Guarantee */
.deko-guarantee-card {
    background: #eff6ff;
    border-radius: 14px;
    border: 1px solid #bfdbfe;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.deko-guarantee-icon {
    font-size: 24px;
    color: #2563eb;
    flex-shrink: 0;
}

.deko-guarantee-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.deko-guarantee-text {
    font-size: 12px;
    color: #1e40af;
    line-height: 1.4;
    margin-bottom: 8px;
}

.deko-guarantee-link {
    font-size: 11.5px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none !important;
}

/* Modern Hero Section — Background image spans full width, left side has fade overlay */
.deko-hero-redesign {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e5e7eb;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 210px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Background image layer — fills the entire hero behind everything */
.deko-hero-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: block;
    flex: none;
    min-height: 0;
    pointer-events: none;
}

.deko-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
    box-shadow: none !important;
}

/* Content area: takes full width but the gradient fades from solid white (left) to transparent (right)
   so left side has readable overlay, right side shows image clearly */
.deko-hero-content {
    flex: 1;
    max-width: 100%;
    z-index: 2;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    position: relative;
    background: linear-gradient(
        to right,
        var(--deko-hero-overlay-from, rgba(255, 255, 255, 0.97)) 0%,
        var(--deko-hero-overlay-mid,  rgba(255, 255, 255, 0.85)) 45%,
        var(--deko-hero-overlay-fade, rgba(255, 255, 255, 0.0))  75%
    );
}

.deko-hero-tagline {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--deko-hero-accent, #2563eb);
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    display: inline-block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    line-height: 1;
    max-width: 55%;
}

.deko-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
    text-shadow: none;
    max-width: 55%;
}

.deko-hero-subtitle {
    font-size: 13px;
    color: #475569;
    width: 55%;
    max-width: 55%;
    margin-bottom: 14px;
    line-height: 1.5;
    text-shadow: none;
}

.deko-hero-btns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 55%;
}

.deko-hero-btn-blue {
    background: #0f172a;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    padding: 9px 18px;
    text-decoration: none !important;
    transition: all 0.2s;
    line-height: 1.2;
}

.deko-hero-btn-blue:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.deko-hero-btn-white {
    background: #fff;
    color: #0f172a !important;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    padding: 9px 18px;
    text-decoration: none !important;
    transition: all 0.2s;
    line-height: 1.2;
}

.deko-hero-btn-white:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .deko-hero-redesign {
        flex-direction: row;
        padding: 0;
        text-align: left;
        min-height: 190px;
        height: 190px;
    }
    .deko-hero-image-wrap {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        order: 0;
        min-height: 0;
        max-height: none;
    }
    .deko-hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center right;
    }
    .deko-hero-content {
        flex: 1;
        max-width: 100%;
        padding: 16px 16px;
        order: 0;
        background: linear-gradient(
            to right,
            var(--deko-hero-overlay-from, rgba(255, 255, 255, 0.96)) 0%,
            var(--deko-hero-overlay-mid,  rgba(255, 255, 255, 0.85)) 45%,
            var(--deko-hero-overlay-fade, rgba(255, 255, 255, 0.0))  80%
        );
    }
    .deko-hero-title {
        font-size: 20px;
        max-width: 60%;
    }
    .deko-hero-subtitle {
        font-size: 11.5px;
        margin-bottom: 10px;
        max-width: 60%;
        width: 60%;
    }
    .deko-hero-tagline {
        max-width: 60%;
    }
    .deko-hero-btns {
        max-width: 60%;
    }
}

/* Hero Feature Strip */
.deko-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    padding: 16px;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .deko-feature-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .deko-feature-strip {
        grid-template-columns: 1fr;
    }
}

.deko-feature-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deko-feature-icon {
    font-size: 18px;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deko-feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.deko-feature-desc {
    font-size: 11px;
    color: #64748b;
}

/* Sections General */
.deko-section {
    margin-bottom: 32px;
}

.deko-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.deko-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.deko-section-sub {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
}

.deko-section-link {
    font-size: 12.5px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deko-section-link:hover {
    color: #1d4ed8;
}

/* Top Categories Circular Grid */
.deko-top-cats-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 16px;
    margin-bottom: 24px;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
}

.deko-top-cats-grid::-webkit-scrollbar {
    display: none;
}

.deko-top-cat-card {
    text-align: center;
    flex: 0 0 90px;
    text-decoration: none !important;
    color: #475569;
    transition: all 0.2s ease;
}

.deko-top-cat-card:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

.deko-top-cat-img-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    background: #f8fafc;
    transition: all 0.2s;
}

.deko-top-cat-card:hover .deko-top-cat-img-box {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.deko-top-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deko-top-cat-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

/* CTA Banners */
.deko-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .deko-banners-grid {
        grid-template-columns: 1fr;
    }
}

.deko-promo-banner {
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.deko-banner-delivery {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
}

.deko-banner-offer {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.deko-banner-local {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 1px solid #e9d5ff;
}

.deko-banner-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.deko-banner-desc {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.4;
    margin-bottom: 16px;
}

.deko-banner-code {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: #15803d;
    background: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px dashed #22c55e;
    display: inline-block;
    width: max-content;
}

.deko-btn-banner-link {
    font-size: 12.5px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Popular Collections */
.deko-collections-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .deko-collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .deko-collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deko-collection-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
}

.deko-collection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.deko-collection-img-box {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f8fafc;
}

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

.deko-collection-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.deko-collection-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.deko-collection-desc {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 12px;
}

.deko-btn-collection {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #eff6ff;
    color: #2563eb !important;
    font-size: 11.5px;
    font-weight: 700;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.deko-btn-collection:hover {
    background: #2563eb;
    color: #fff !important;
}

/* Product Cards */
.deko-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .deko-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .deko-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deko-product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.deko-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.deko-wishlist-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.deko-wishlist-icon:hover {
    color: #ef4444;
    background: #fff;
    transform: scale(1.05);
}

.deko-wishlist-icon.active {
    color: #ef4444;
}

.deko-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    z-index: 10;
    text-transform: uppercase;
}

.deko-badge-new {
    background: #2563eb;
    color: #fff;
}

.deko-badge-bestseller {
    background: #f59e0b;
    color: #fff;
}

.deko-badge-local {
    background: #8b5cf6;
    color: #fff;
}

.deko-badge-shipping {
    background: #10b981;
    color: #fff;
}

.deko-badge-seller {
    background: #0f172a;
    color: #fff;
}

.deko-product-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deko-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s;
}

.deko-product-card:hover .deko-product-img {
    transform: scale(1.03);
}

.deko-product-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.deko-product-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 8px;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.deko-product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.deko-product-price {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.deko-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #f59e0b;
    font-weight: 600;
}

.deko-btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #2563eb;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    padding: 8px;
    border: none;
    transition: all 0.2s;
    text-decoration: none !important;
}

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

/* Shop Local Picks */
.deko-local-picks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .deko-local-picks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deko-local-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
}

.deko-local-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.deko-local-img-box {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

.deko-local-label-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #8b5cf6;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
}

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

.deko-local-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.deko-local-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.deko-local-meta {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.deko-btn-local-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #f3e8ff;
    color: #6b21a8 !important;
    font-size: 12px;
    font-weight: 700;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.deko-btn-local-explore:hover {
    background: #6b21a8;
    color: #fff !important;
}

/* Featured Sellers */
.deko-sellers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .deko-sellers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .deko-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deko-seller-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.2s ease;
}

.deko-seller-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.deko-seller-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 1px solid #eef2f6;
    background: #f8fafc;
}

.deko-seller-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.deko-seller-desc {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 28px;
    overflow: hidden;
}

.deko-seller-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 12px;
}

.deko-seller-actions {
    display: flex;
    gap: 6px;
}

.deko-seller-btn-follow {
    flex: 1;
    background: #f1f5f9;
    color: #475569 !important;
    font-size: 11px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
}

.deko-seller-btn-follow:hover {
    background: #e2e8f0;
}

.deko-seller-btn-visit {
    flex: 1.2;
    background: #eff6ff;
    color: #2563eb !important;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 6px;
    padding: 6px;
}

.deko-seller-btn-visit:hover {
    background: #2563eb;
    color: #fff !important;
}

/* Quick Links Pills */
.deko-quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.deko-pill {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.deko-pill:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}

/* Trust & Support Row */
.deko-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .deko-trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .deko-trust-row {
        grid-template-columns: 1fr;
    }
}

.deko-trust-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    padding: 20px;
    display: flex;
    gap: 14px;
    transition: all 0.2s ease;
}

.deko-trust-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.deko-trust-card-icon {
    font-size: 20px;
    color: #2563eb;
    padding-top: 4px;
    flex-shrink: 0;
}

.deko-trust-card-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.deko-trust-card-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 8px;
}

.deko-trust-card-link {
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none !important;
}

/* Custom Interactive Widgets for Category Landing Pages */

/* Device Device Compare Box (Electronics) */
.deko-compare-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .deko-compare-row {
        grid-template-columns: 1fr;
    }
}

.deko-compare-col {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    text-align: center;
    position: relative;
}

.deko-compare-vs-badge {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    color: #64748b;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    z-index: 10;
}

.deko-compare-col:last-child .deko-compare-vs-badge {
    display: none;
}

.deko-compare-specs {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    text-align: left;
}

.deko-compare-specs li {
    font-size: 12px;
    color: #475569;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deko-compare-specs li:last-child {
    border-bottom: none;
}

/* Interactive Device / Style / Routine Finder forms */
.deko-interactive-finder {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.deko-interactive-finder-title {
    font-size: 16px;
    font-weight: 800;
    color: #1e3b8b;
    margin-bottom: 6px;
}

.deko-interactive-finder-text {
    font-size: 12.5px;
    color: #1e40af;
    margin-bottom: 16px;
}

.deko-finder-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 12px;
    align-items: end;
}

@media (max-width: 768px) {
    .deko-finder-form {
        grid-template-columns: 1fr;
    }
}

.deko-finder-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.deko-finder-field label {
    font-size: 11.5px;
    font-weight: 700;
    color: #1e3a8a;
}

.deko-finder-field select, .deko-finder-field input {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    color: #0f172a;
}

.deko-btn-finder-submit {
    background: #2563eb;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.deko-btn-finder-submit:hover {
    background: #1d4ed8;
}

.deko-finder-result {
    margin-top: 16px;
    padding: 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    display: none;
    align-items: center;
    gap: 10px;
}

/* Premium DekoShop Header Rebrand */
.deko-utility-bar-custom {
    background-color: #030712;
    color: #cbd5e1;
    font-size: 12.5px;
    padding: 8px 0;
    border-bottom: 1px solid #1f2937;
    font-family: 'Inter', sans-serif;
}
.deko-utility-bar-custom a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}
.deko-utility-bar-custom a:hover {
    color: #ffffff;
}

.deko-header-custom {
    background-color: #030712;
    padding: 16px 0;
    border-bottom: 1px solid #1f2937;
    font-family: 'Inter', sans-serif;
}

.deko-header-inner-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Brand logo */
.deko-brand-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}
.deko-brand-logo-mark {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.deko-brand-logo-text {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Search bar capsule */
.deko-search-capsule {
    flex: 1;
    max-width: 650px;
    background: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    padding: 2px 2px 2px 18px;
    border: 1px solid #374151;
    transition: border-color 0.2s;
}
.deko-search-capsule:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}
.deko-search-select-custom {
    background: transparent;
    border: none;
    font-size: 13px;
    color: #4b5563;
    font-weight: 600;
    padding: 0 16px 0 0;
    outline: none;
    cursor: pointer;
    /* Constrain to ~110px so it doesn't push the search input off-screen */
    width: 110px;
    max-width: 110px;
    flex: 0 0 110px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.deko-search-select-custom option {
    background: #ffffff;
    color: #0f172a;
    max-width: 240px;
}
.deko-search-divider-custom {
    width: 1px;
    height: 20px;
    background-color: #e5e7eb;
    margin: 0 12px;
    flex-shrink: 0;
}
.deko-search-input-custom {
    flex: 1;
    min-width: 0;
    border: none;
    font-size: 13.5px;
    color: #0f172a;
    outline: none;
    background: transparent;
}
.deko-search-input-custom::placeholder {
    color: #9ca3af;
}
.deko-search-btn-custom {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}
.deko-search-btn-custom:hover {
    background-color: #1d4ed8;
}

/* Actions list */
.deko-actions-custom {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.deko-action-link-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none !important;
    transition: color 0.2s;
}
.deko-action-link-custom:hover {
    color: #ffffff;
}
.deko-action-link-custom i {
    font-size: 16px;
}
.deko-btn-cart-custom {
    background-color: #2563eb;
    color: #ffffff !important;
    border-radius: 9999px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.2s;
}
.deko-btn-cart-custom:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}
.deko-cart-badge-custom {
    background-color: #030712;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Sub-navbar styles */
.deko-navbar-custom {
    background-color: #030712;
    padding: 12px 0;
    border-bottom: 1px solid #1f2937;
    font-family: 'Inter', sans-serif;
}
.deko-navbar-inner-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.deko-navbar-nav-custom {
    display: flex;
    align-items: center;
    gap: 24px;
}
.deko-navbar-link-custom {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none !important;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.deko-navbar-link-custom:hover, .deko-navbar-link-custom.active {
    color: #ffffff;
}
.deko-navbar-pill-hot {
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 9999px;
    text-transform: uppercase;
}

/* Device quick bar */
.deko-device-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    overflow-x: auto;
    scrollbar-width: none;
}
.deko-device-bar::-webkit-scrollbar {
    display: none;
}
.deko-device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    text-align: center;
    min-width: 76px;
    flex-shrink: 0;
}
.deko-device-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748b;
    transition: all 0.2s;
}
.deko-device-item:hover .deko-device-icon-box {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
}
.deko-device-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #475569;
}
.deko-device-item:hover .deko-device-label {
    color: #0f172a;
}

/* ============================================================
   MOBILE & TABLET RESPONSIVE — CATEGORY PAGES
   ============================================================ */

/* Grid Classes for generic.blade.php inline grids */
.deko-promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.deko-interest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.deko-promo-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.deko-catalog-grid,
.deko-row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}

/* Helper utility grids for 3- and 4-column inline layouts that need to be responsive */
.deko-row-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.deko-row-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
@media (max-width: 991px) {
    .deko-row-grid-3,
    .deko-row-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}
@media (max-width: 576px) {
    .deko-row-grid-3,
    .deko-row-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .deko-row-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

/* Data-driven Promo Card (Find the Right ___ Item) */
.deko-promo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 140px;
}
.deko-promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.deko-promo-card-content {
    position: relative;
    z-index: 2;
    width: 60%;
}
.deko-promo-card-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}
.deko-promo-card-desc {
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 18px;
}
.deko-promo-card-link {
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.deko-promo-card-img {
    position: absolute;
    right: 5px;
    bottom: 17px;
    width: 67px;
    object-fit: contain;
}

/* Data-driven Interest Card */
.deko-interest-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 110px;
    transition: all 0.2s;
}
.deko-interest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.deko-interest-card-content {
    position: relative;
    z-index: 2;
}
.deko-interest-card-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}
.deko-interest-card-desc {
    font-size: 10px;
    color: #64748b;
    line-height: 1.3;
    max-width: 65%;
}
.deko-interest-card-img {
    position: absolute;
    right: 5px;
    bottom: 12px;
    width: 67px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Data-driven Promo Banner */
.deko-promo-banner {
    border-radius: 12px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    overflow: hidden;
    position: relative;
    min-height: 150px;
}
.deko-promo-banner--dark {
    background: #0f172a;
}
.deko-promo-banner--pink {
    background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 100%);
    border: 1px solid #f0abfc;
}
.deko-promo-banner-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}
.deko-promo-banner-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}
.deko-promo-banner--dark .deko-promo-banner-title { color: #ffffff; }
.deko-promo-banner--pink .deko-promo-banner-title { color: #0f172a; }
.deko-promo-banner-desc {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 16px;
}
.deko-promo-banner--dark .deko-promo-banner-desc { color: #94a3b8; }
.deko-promo-banner--pink .deko-promo-banner-desc { color: #64748b; }
.deko-promo-banner-btn {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none !important;
}
.deko-promo-banner--dark .deko-promo-banner-btn {
    background: #ffffff;
    color: #0f172a !important;
}
.deko-promo-banner--pink .deko-promo-banner-btn {
    background: #0f172a;
    color: #ffffff !important;
}
.deko-promo-banner-img {
    position: absolute;
    right: 19px;
    bottom: 0;
    width: 150px;
    object-fit: contain;
}
.deko-promo-banner--dark .deko-promo-banner-img {
    opacity: 0.7;
    width: 160px;
}

/* Mobile filter bar (appears when sidebar hidden) */
.deko-mobile-filter-bar {
    display: none;
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 12px;
    gap: 10px;
    align-items: center;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.deko-mobile-filter-bar.show {
    display: flex;
}

.deko-mobile-filter-btn {
    flex: 1;
    min-width: 100px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.deko-mobile-filter-btn:active {
    background: #eff6ff;
    color: #2563eb;
    border-color: #2563eb;
}

.deko-active-filter-count {
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 4px 10px;
}

/* Offcanvas Filter Overlay */
.deko-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.deko-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Offcanvas Filter Drawer */
.deko-filter-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 85vw;
    max-width: 340px;
    background: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.deko-filter-drawer.active {
    transform: translateX(0);
}

.deko-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
}

.deko-drawer-header button {
    background: none;
    border: none;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
}

/* Responsive grid overrides for smaller screens */
@media (max-width: 768px) {
    .deko-promo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deko-interest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .deko-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .deko-hero-title {
        font-size: 26px;
    }

    .deko-hero-subtitle {
        width: 100%;
        font-size: 13.5px;
    }
}

@media (max-width: 576px) {
    /* Product grid to 2 columns on very small screens */
    .deko-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 4px;
    }

    /* Promo cards single column */
    .deko-promo-cards-grid {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .deko-promo-cards-grid > div {
        padding: 14px !important;
        min-height: 140px;
    }

    .deko-interest-grid {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .deko-interest-grid > div {
        padding: 14px !important;
        min-height: 100px;
    }

    /* Hero responsive - banner-style with image background + left fade overlay */
    .deko-hero-redesign {
        flex-direction: row;
        padding: 0;
        border-radius: 12px;
        margin-bottom: 16px;
        min-height: 175px;
        height: 175px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: flex;
        position: relative;
        overflow: hidden;
    }

    .deko-hero-image-wrap {
        position: absolute;
        inset: 0;
        order: 0;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        overflow: hidden;
    }

    .deko-hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center right;
        display: block;
    }

    .deko-hero-content {
        order: 0;
        flex: 1;
        max-width: 100%;
        width: 100%;
        padding: 14px 14px;
        background: linear-gradient(
            to right,
            var(--deko-hero-overlay-from, rgba(255, 255, 255, 0.97)) 0%,
            var(--deko-hero-overlay-mid,  rgba(255, 255, 255, 0.85)) 45%,
            var(--deko-hero-overlay-fade, rgba(255, 255, 255, 0.0))  85%
        );
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        position: relative;
        z-index: 2;
    }

    .deko-hero-tagline {
        font-size: 9.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #2563eb;
        margin-bottom: 4px;
        display: inline-block;
        background: transparent;
        padding: 0;
        border-radius: 0;
        backdrop-filter: none;
        max-width: 62%;
        line-height: 1;
    }

    .deko-hero-title {
        font-size: 18px;
        line-height: 1.15;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 5px 0;
        text-shadow: none;
        letter-spacing: -0.3px;
        max-width: 62%;
    }

    .deko-hero-subtitle {
        width: 62%;
        max-width: 62%;
        font-size: 11px;
        line-height: 1.4;
        color: #475569;
        margin-bottom: 10px;
        text-shadow: none;
    }

    .deko-hero-btns {
        flex-direction: row;
        gap: 6px;
        margin-top: 0;
        flex-wrap: wrap;
        max-width: 62%;
    }

    .deko-hero-btn-blue,
    .deko-hero-btn-white {
        flex: 0 1 auto;
        min-width: 0;
        text-align: center;
        padding: 7px 12px;
        font-size: 11px;
        font-weight: 700;
        border-radius: 6px;
        text-decoration: none !important;
    }

    .deko-hero-btn-blue {
        background: #0f172a;
        color: white !important;
        border: none;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
    }

    .deko-hero-btn-white {
        background: #ffffff;
        color: #0f172a !important;
        border: 1px solid #cbd5e1;
        backdrop-filter: none;
    }

    /* Feature strip - 2 columns on mobile */
    .deko-feature-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 14px;
        border-radius: 12px;
        margin-bottom: 24px;
        background: white;
        border: 1px solid #f1f5f9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .deko-feature-block {
        gap: 9px;
        padding: 8px 4px;
        background: #f8fafc;
        border-radius: 8px;
        align-items: center;
        display: flex;
    }

    .deko-feature-icon {
        font-size: 15px;
        width: 32px;
        height: 32px;
        min-width: 32px;
        flex-shrink: 0;
    }

    .deko-feature-title {
        font-size: 11.5px;
        font-weight: 700;
        margin-bottom: 1px;
        color: #0f172a;
        line-height: 1.2;
    }

    .deko-feature-desc {
        font-size: 9.5px;
        color: #64748b;
        line-height: 1.3;
        margin: 0;
    }

    /* Subcategory section - improved */
    .deko-section {
        margin-bottom: 28px;
    }

    .deko-section-header {
        margin-bottom: 14px;
        border: none;
        padding: 0;
    }

    .deko-section-title {
        font-size: 15px;
        font-weight: 800;
    }

    .deko-section-sub {
        font-size: 12px;
    }

    .deko-top-cats-grid {
        gap: 12px;
        padding: 8px 0;
    }

    /* Subcategory pills sizing - improved */
    .deko-top-cat-card {
        flex: 0 0 75px;
        text-align: center;
    }

    .deko-top-cat-img-box {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        margin: 0 auto 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.2s;
    }

    .deko-top-cat-card:active .deko-top-cat-img-box {
        transform: scale(0.95);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    }

    .deko-top-cat-name {
        font-size: 11px;
        font-weight: 600;
        color: #334155;
        line-height: 1.3;
    }

    /* Product card compact but professional styles */
    .dekole-pcard--v3 {
        border-radius: 8px;
        border: 1px solid #f1f5f9;
        background: white;
    }

    .dekole-pcard-media {
        min-height: 140px;
        background: #f8fafc;
    }

    .dekole-pcard-body {
        padding: 10px;
        flex: 1;
    }

    .dekole-pcard-title {
        font-size: 12px;
        font-weight: 600;
        color: #1e293b;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 6px;
        height: auto;
    }

    .dekole-pcard-price {
        margin: 6px 0 4px 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .dekole-pcard-price-sale {
        font-size: 13px;
        font-weight: 700;
        color: #0f172a;
    }

    .dekole-pcard-price-orig {
        font-size: 10px;
        color: #94a3b8;
        text-decoration: line-through;
    }

    .dekole-pcard-price-save {
        font-size: 9px;
        color: #22c55e;
        font-weight: 600;
    }

    .dekole-pcard-actions {
        flex-direction: column;
        gap: 5px;
        margin-top: auto;
    }

    .dekole-btn {
        font-size: 11px;
        padding: 7px 10px;
        border-radius: 6px;
        font-weight: 700;
    }

    .dekole-btn-primary {
        background: #2563eb;
        color: white;
        border: none;
    }

    /* Offer item sizing - improved */
    .deko-offer-item {
        padding: 10px;
        gap: 10px;
        margin-bottom: 10px;
        background: #f8fafc;
        border-radius: 8px;
    }

    .deko-offer-img {
        width: 48px;
        height: 48px;
        border-radius: 6px;
    }

    .deko-offer-content {
        flex: 1;
    }

    .deko-offer-promo {
        font-size: 12px;
        font-weight: 700;
        color: #0f172a;
    }

    .deko-offer-desc {
        font-size: 11px;
        color: #64748b;
        margin: 2px 0 4px 0;
    }

    .deko-offer-link {
        font-size: 10px;
        font-weight: 700;
        color: #2563eb;
        text-decoration: none;
    }

    /* Mobile filter bar visibility */
    .deko-mobile-filter-bar.show {
        display: flex;
    }

    .deko-mobile-filter-btn {
        font-size: 12px;
        padding: 10px 14px;
        font-weight: 700;
    }

    /* Drawer sizing */
    .deko-filter-drawer {
        width: 85vw;
        max-width: 320px;
    }

    .deko-drawer-header {
        font-size: 14px;
        padding: 14px 16px;
    }

    /* Breadcrumb sizing */
    .breadcrumb {
        font-size: 11px !important;
    }

    .breadcrumb-item {
        color: #64748b !important;
    }

    .breadcrumb-item.active {
        color: #0f172a !important;
    }
}

/* Show mobile filter bar when sidebar is hidden */
@media (max-width: 991px) {
    .deko-mobile-filter-bar.show {
        display: flex;
    }

    .deko-shop-left {
        display: none;
    }
}

/* ============================================================
   MOBILE HEADER & NAVIGATION - PROFESSIONAL ECOMMERCE STYLE
   ============================================================ */

/* Hide mobile-only elements on desktop by default */
.deko-mobile-menu-toggle,
.deko-mobile-search-toggle,
.deko-mobile-search-bar,
.deko-mobile-menu,
.deko-mobile-menu-overlay {
    display: none;
}

/* Mobile Menu Overlay */
.deko-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.deko-mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Mobile Slide-out Menu */
.deko-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85vw;
    max-width: 340px;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}
.deko-mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.deko-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
}

.deko-mobile-menu-user {
    padding: 14px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid #f1f5f9;
}

.deko-mobile-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2563eb;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
}

.deko-mobile-menu-section {
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
}

.deko-mobile-menu-section:last-of-type {
    border-bottom: none;
}

.deko-mobile-menu-section-title {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deko-mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.deko-mobile-menu-item:hover,
.deko-mobile-menu-item:active {
    background: #eff6ff;
    color: #2563eb;
    border-left-color: #2563eb;
}

.deko-mobile-menu-item i {
    width: 20px;
    font-size: 15px;
    text-align: center;
    color: #64748b;
}

.deko-mobile-menu-item:hover i,
.deko-mobile-menu-item:active i {
    color: #2563eb;
}

.deko-mobile-menu-footer {
    padding: 14px 16px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

/* Mobile Search Bar (collapsible) */
.deko-mobile-search-bar {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid #1f2937;
    display: none;
}

.deko-mobile-search-bar.active {
    display: block !important;
}

.deko-mobile-search-bar .deko-search-capsule {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 4px;
}

/* Mobile Menu Toggle Button */
.deko-mobile-menu-toggle,
.deko-mobile-search-toggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}

.deko-mobile-menu-toggle:hover,
.deko-mobile-search-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS FOR HEADER
   ============================================================ */

/* Tablet & Mobile - hide desktop search bar, show mobile elements */
@media (max-width: 991px) {
    /* Hide utility bar on mobile */
    .deko-utility-bar-custom {
        display: none;
    }

    /* Show mobile menu/search toggles */
    .deko-mobile-menu-toggle,
    .deko-mobile-search-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Restructure main header */
    .deko-header-custom {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .deko-header-inner-custom {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    /* Hide desktop search and actions */
    .deko-header-inner-custom > .deko-search-capsule {
        display: none;
    }

    .deko-actions-custom {
        display: none !important;
    }

    /* Brand smaller on mobile */
    .deko-brand-custom {
        gap: 8px;
        flex-shrink: 0;
    }

    .deko-brand-logo-mark {
        width: 32px;
        height: 32px;
    }

    .deko-brand-logo-text {
        font-size: 18px;
    }

    /* Hide secondary navbar on mobile */
    .deko-navbar-custom {
        display: none;
    }

    /* Container adjustments */
    .deko-header-custom .container,
    .deko-utility-bar-custom .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Small mobile screens (≤576px) */
@media (max-width: 576px) {
    .deko-header-custom {
        padding: 8px 0;
    }

    .deko-brand-logo-text {
        font-size: 16px;
    }

    .deko-brand-logo-mark {
        width: 30px;
        height: 30px;
    }

    .deko-brand-logo-mark i {
        font-size: 14px !important;
    }

    .deko-mobile-menu-toggle,
    .deko-mobile-search-toggle {
        font-size: 20px;
        padding: 4px 8px;
    }

    /* Mobile search bar refinement */
    .deko-mobile-search-bar .deko-search-input-custom {
        font-size: 13px;
        padding: 8px 4px;
    }

    .deko-mobile-search-bar .deko-search-btn-custom {
        width: 36px;
        height: 36px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .deko-brand-logo-text {
        font-size: 15px;
    }

    .deko-header-inner-custom {
        gap: 4px;
    }
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR (App-like UX)
   ============================================================ */
.deko-mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    height: auto;
}

.deko-mobile-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 4px;
    color: #64748b;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
    min-height: 50px;
}

.deko-mobile-bottom-item i {
    font-size: 18px;
    color: #64748b;
    transition: all 0.2s;
}

.deko-mobile-bottom-item span:not(.deko-mobile-bottom-badge) {
    line-height: 1;
}

.deko-mobile-bottom-item:hover,
.deko-mobile-bottom-item:active,
.deko-mobile-bottom-item.active {
    color: #2563eb;
}

.deko-mobile-bottom-item:hover i,
.deko-mobile-bottom-item:active i,
.deko-mobile-bottom-item.active i {
    color: #2563eb;
    transform: translateY(-2px);
}

.deko-mobile-bottom-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #2563eb;
    border-radius: 0 0 4px 4px;
}

.deko-mobile-bottom-cart {
    position: relative;
}

.deko-mobile-bottom-badge {
    position: absolute;
    top: 4px;
    right: calc(50% - 18px);
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
}

/* Show bottom nav on mobile/tablet */
@media (max-width: 991px) {
    .deko-mobile-bottom-nav {
        display: flex;
    }

    /* Add padding to body to prevent content overlap */
    body {
        padding-bottom: 65px;
    }
}

@media (max-width: 576px) {
    .deko-mobile-bottom-item {
        font-size: 9.5px;
    }

    .deko-mobile-bottom-item i {
        font-size: 17px;
    }
}


