/*
 * Store archive and single product styles.
 */

.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
}

.shop-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 132px;
    align-self: start;
}

.sidebar-search {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    margin-bottom: 24px;
}

.sidebar-search__label,
.sidebar-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--dch-primary);
    font-size: 1.1rem;
    font-weight: 800;
}

.sidebar-search__label i,
.sidebar-section-title i {
    color: var(--dch-accent);
    font-size: 0.9em;
}

.sidebar-search__input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.sidebar-search__input:focus {
    background: #ffffff;
    border-color: var(--dch-primary);
    box-shadow: 0 0 0 4px rgba(51, 65, 85, 0.06);
}

.sidebar-categories {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sidebar-section-title {
    cursor: pointer;
    user-select: none;
    margin-bottom: 0 !important; /* Remove margin when collapsed */
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-section-title::after {
    content: '\f107'; /* FontAwesome Down Arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #94a3b8;
}

.sidebar-categories.active .sidebar-section-title::after {
    transform: rotate(180deg);
}

.sidebar-categories.active .sidebar-section-title {
    margin-bottom: 18px !important;
}

.sidebar-categories .therapeutic-list,
.sidebar-categories .sidebar-best-sellers {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.sidebar-categories.active .therapeutic-list,
.sidebar-categories.active .sidebar-best-sellers {
    max-height: 1000px;
    opacity: 1;
    margin-top: 10px;
}

.shop-sidebar .therapeutic-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.shop-sidebar .therapeutic-item {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    color: #475569 !important;
    background: #f8fafc !important;
    border: 1px solid transparent !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.shop-sidebar .therapeutic-item span:not(.count) {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
    box-shadow: none !important;
    display: inline !important;
}

.shop-sidebar .therapeutic-item:hover {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    color: var(--dch-primary) !important;
    transform: translateX(-4px); /* Slight slide in RTL */
}

body.rtl .shop-sidebar .therapeutic-item:hover {
    transform: translateX(4px);
}

.shop-sidebar .therapeutic-item.active {
    background: var(--dch-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 16px rgba(51, 65, 85, 0.15);
}

/* â”€â”€ Modern Checkbox Filters â”€â”€ */
.filter-checkbox {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    position: relative;
    gap: 12px;
    transition: all 0.2s ease;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.filter-checkbox:hover input ~ .checkmark {
    background-color: #e2e8f0;
}

.filter-checkbox input:checked ~ .checkmark {
    background-color: var(--dch-primary);
    border-color: var(--dch-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.filter-checkbox .label-text {
    font-size: 0.95rem;
    color: #475569;
    flex: 1;
}

.filter-checkbox .count {
    font-size: 0.75rem;
    color: #94a3b8;
    background: #f8fafc;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid #edf2f7;
}

/* â”€â”€ Rating Filter List â”€â”€ */
.rating-filter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-filter-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.rating-filter-item input {
    accent-color: var(--dch-primary);
    width: 16px;
    height: 16px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f6ad55;
    font-size: 0.9rem;
}

.rating-stars span {
    color: #64748b;
    font-size: 0.8rem;
    margin-inline-start: 6px;
}

/* â”€â”€ Sidebar Best Sellers â”€â”€ */
.sidebar-best-sellers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bs-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none !important;
    transition: transform 0.2s ease;
}

.bs-item:hover {
    transform: translateX(-4px);
}

body.rtl .bs-item:hover {
    transform: translateX(4px);
}

.bs-item__image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #edf2f7;
}

.bs-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-item__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dch-primary);
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bs-item__price {
    font-size: 0.85rem;
    color: var(--dch-accent);
    font-weight: 800;
}

.bs-item__price del {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.75rem;
    margin-inline-end: 4px;
}

.bs-item__price ins {
    text-decoration: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(var(--dch-store-columns, 3), minmax(0, 1fr));
    gap: 24px;
    transition: all 0.3s ease;
}

/* â”€â”€ List View Layout â”€â”€ */
.products-grid.list-view {
    grid-template-columns: 1fr !important;
    gap: 24px;
}

.products-grid.list-view .product-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    text-align: right;
    padding: 24px;
    gap: 32px;
}

.products-grid.list-view .product-card__image {
    width: 200px !important;
    height: 200px !important;
    flex-shrink: 0;
    margin: 0;
}

.products-grid.list-view .product-card__content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-grid.list-view .product-card__title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.products-grid.list-view .product-card__actions {
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .products-grid.list-view .product-card {
        flex-direction: column !important;
        text-align: center;
        gap: 16px;
    }
    .products-grid.list-view .product-card__image {
        width: 100% !important;
        height: auto !important;
    }
}

/* â”€â”€ Shop Toolbar â”€â”€ */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.no-results-found {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    color: #64748b;
}

.no-results-found i {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    display: block;
}

.no-results-found p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.shop-toolbar__count p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.shop-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-toolbar__sort .woocommerce-ordering {
    margin: 0;
}

.shop-toolbar__sort select {
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: var(--dch-primary);
    font-size: 0.85rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-toolbar__sort select:focus {
    border-color: var(--dch-primary);
    background: #ffffff;
}

.shop-toolbar__view {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 10px;
    gap: 4px;
}

.view-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn.active {
    background: var(--dch-primary);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(38, 57, 151, 0.2);
}

.view-btn:hover:not(.active) {
    background: #e2e8f0;
    color: var(--dch-primary);
}

@media (max-width: 600px) {
    .shop-toolbar {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 16px;
    }
    .shop-toolbar__actions {
        width: 100%;
        justify-content: space-between;
    }
}

.product-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px; /* Slightly more rounded */
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 12px 24px rgba(38, 57, 151, 0.08);
    border-color: rgba(38, 57, 151, 0.1);
}

.product-card__image {
    aspect-ratio: 4 / 3;
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-card__sku-ref {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
    background: #f8fafc;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #edf2f7;
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%) scale(0.8);
    background: var(--dch-primary);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    box-shadow: 0 8px 20px rgba(38, 57, 151, 0.3);
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.quick-view-btn:hover {
    background: var(--dch-accent);
    transform: translate(-50%, -50%) scale(1.1) !important;
}



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

.product-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center; /* Center like screenshot */
}

.product-card__category {
    color: #4a90e2; /* Blue-ish like screenshot */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.product-card__title {
    margin: 0 0 10px;
    color: #263997; /* Navy */
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.product-card__title a {
    color: inherit;
    text-decoration: none;
}

.product-card__desc {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-card__tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.product-card__tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.725rem;
    font-weight: 700;
    white-space: nowrap;
}

.product-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto; /* Ø¯ÙØ¹ Ø§Ù„Ø£Ø²Ø±Ø§Ø± Ù„Ù„Ø£Ø³ÙÙ„ Ø¯Ø§Ø¦Ù…Ø§Ù‹ */
    padding-top: 10px;
}

.product-card__details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    color: var(--dch-primary);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
    flex: 1; /* ØªØ£Ø®Ø° Ù…Ø³Ø§Ø­Ø© Ù…ØªØ³Ø§ÙˆÙŠØ© */
}

.product-card__details:hover {
    background: var(--dch-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.product-card__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #00a884; /* WhatsApp Green */
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
    flex: 1.5; /* Ø²Ø± Ø§Ù„ÙˆØ§ØªØ³Ø§Ø¨ Ø£Ø¹Ø±Ø¶ Ù‚Ù„ÙŠÙ„Ø§Ù‹ */
}

.product-card__whatsapp:hover {
    background: #008f70;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 168, 132, 0.25);
    color: #ffffff;
}

.product-card__whatsapp i {
    font-size: 1.25rem;
}

.product-single-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    padding: 48px 0;
}

.product-single-main {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--dch-shadow-card);
    border: 1px solid #edf2f7;
}

.product-single-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.product-single-gallery {
    aspect-ratio: 1;
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-single-header .cat {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--dch-primary);
    font-size: var(--text-sm);
    font-weight: var(--dch-font-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-single-header h1 {
    margin: 0 0 8px;
    font-size: var(--text-5xl);
    font-weight: var(--dch-font-extrabold);
    color: #1a202c;
    letter-spacing: -0.02em;
}

.product-single-header .generic {
    margin-bottom: 24px;
    color: #718096;
    font-size: var(--text-lg);
    font-style: italic;
}

.product-single-desc,
.product-single-desc p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: var(--dch-leading-relaxed);
    margin-bottom: 32px;
}

.product-feature-flags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-weight: 600;
}

.flag-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #059669;
}

.flag-grade {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dch-primary);
}

.technical-specs-title {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dch-primary);
    font-size: var(--text-xl);
    font-weight: var(--dch-font-bold);
}

.technical-specs-title i {
    color: var(--dch-accent);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.spec-label {
    display: block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: var(--text-xs);
    font-weight: var(--dch-font-semibold);
    text-transform: uppercase;
}

.spec-value {
    color: #1e293b;
    font-size: var(--text-base);
    font-weight: var(--dch-font-medium);
}

/* â”€â”€ Product Overview (Technical Specifications) â”€â”€ */
.dch-product-overview {
    margin-top: 40px;
    padding: 0;
}

.dch-product-overview__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dch-primary, #263997);
    margin: 0 0 20px;
}

.dch-product-overview__title i {
    color: var(--dch-accent, #bf2527);
}

.dch-product-overview__content {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid #edf2f7;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.dch-product-overview__content p {
    margin-bottom: 1.25em;
}

.dch-product-overview__content p:last-child {
    margin-bottom: 0;
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    margin-bottom: 32px;
    text-align: center;
    color: var(--dch-primary);
}

@media (max-width: 1024px) {
    .shop-layout,
    .product-single-hero {
        grid-template-columns: 1fr;
    }

    .shop-sidebar,
    .product-single-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .products-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
}


/* â”€â”€ Badges Summary Top Row â”€â”€ */
.dch-badges-summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.dch-badge-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-width: 220px;
}

.dch-badge-card:hover {
    transform: translateY(-3px);
}

.dch-badge-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.dch-badge-card--offer .dch-badge-card__icon { color: #bf2527; background: rgba(191, 37, 39, 0.1); }
.dch-badge-card--new .dch-badge-card__icon { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.dch-badge-card--coming_soon .dch-badge-card__icon { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.dch-badge-card--best_seller .dch-badge-card__icon { color: var(--dch-primary, #263997); background: rgba(38, 57, 151, 0.1); }

.dch-badge-card__title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dch-primary, #263997);
}

.dch-badge-card__count {
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .dch-badges-summary-row {
        gap: 1rem;
    }
    .dch-badge-card {
        width: 100%;
        min-width: unset;
    }
}
/* â”€â”€ Store Category Bar (Top) â”€â”€ */
.store-category-bar {
    margin-bottom: 2.5rem;
}

.store-category-grid {
    display: grid;
    grid-template-columns: repeat(var(--store-category-columns, 7), minmax(130px, 1fr));
    gap: 12px;
}

.store-category-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 1rem 0.5rem; /* Reduced padding */
    text-align: center;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.store-category-card:hover {
    transform: translateY(-4px);
    border-color: var(--dch-accent);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
}

.store-category-card__image {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.store-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.store-category-card__image i {
    font-size: 1.5rem;
    color: var(--dch-primary);
}

.store-category-card:hover .store-category-card__image {
    transform: scale(1.15);
}

.store-category-card__title {
    margin: 0;
    font-size: 0.85rem; /* Reduced from 0.9rem */
    font-weight: 700;
    color: var(--dch-primary);
    line-height: 1.3;
}

.store-category-card__count {
    display: block;
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: #64748b;
    font-weight: 500;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    font-size: 1rem;
}

.sidebar-mobile-header,
.sidebar-overlay {
    display: none;
}

@media (max-width: 991px) {
    .mobile-filter-btn {
        display: flex;
    }

    .shop-layout {
        display: block;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 999999;
        padding: 24px;
        overflow-y: auto;
        box-shadow: 20px 0 50px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0 !important;
    }

    body.rtl .shop-sidebar {
        left: auto;
        right: -320px;
    }

    .shop-sidebar.active {
        left: 0;
    }

    body.rtl .shop-sidebar.active {
        right: 0;
    }

    .sidebar-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #edf2f7;
    }

    .sidebar-mobile-header h3 {
        margin: 0;
        font-size: 1.2rem;
        color: var(--dch-primary);
    }

    .close-sidebar {
        background: #f1f5f9;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        z-index: 999998;
        display: none;
    }

    .sidebar-overlay.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .shop-section {
        padding: 30px 0;
    }

    .store-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .store-category-card {
        padding: 12px 8px;
    }

    .store-category-card__image {
        width: 40px;
        height: 40px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card__title {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .store-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card__sku {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

/* â”€â”€ Sidebar Best Sellers â”€â”€ */
.sidebar-best-sellers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bs-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none !important;
    transition: transform 0.2s ease;
}

.bs-item:hover {
    transform: translateX(-4px);
}

body.rtl .bs-item:hover {
    transform: translateX(4px);
}

.bs-item__image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #edf2f7;
}

.bs-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bs-item__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dch-primary);
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bs-item__price {
    font-size: 0.85rem;
    color: var(--dch-accent);
    font-weight: 800;
}

/* â”€â”€ Trust Features Bar â”€â”€ */
.trust-features-section {
    padding-top: 60px !important;
    padding-bottom: 0 !important;
    margin-bottom: -20px; /* Pull the next section closer */
}

.trust-features-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 24px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.trust-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
    border-inline-end: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-feature-item:last-child {
    border: none;
}

.trust-feature-item__icon {
    font-size: 1.75rem;
    color: #0088cc;
    flex-shrink: 0;
}

.trust-feature-item__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dch-primary);
    line-height: 1.2;
}

.trust-feature-item__desc {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .trust-features-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 0;
    }
}

@media (max-width: 768px) {
    .trust-features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 10px;
        padding: 20px 10px;
    }
    .trust-feature-item {
        border: none;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .trust-feature-item__icon {
        font-size: 1.5rem;
    }
    .trust-feature-item__title {
        font-size: 0.85rem;
    }
    .trust-feature-item__desc {
        font-size: 0.7rem;
    }
    /* Make the 5th item center aligned in its own row */
    .trust-feature-item:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 400px) {
    .trust-features-bar {
        gap: 20px 5px;
    }
    .trust-feature-item__title {
        font-size: 0.8rem;
    }
}


/* â”€â”€ Star Ratings â”€â”€ */
.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.2em;
    line-height: 1;
    font-size: 1rem;
    width: 5.4em;
    display: inline-block;
    color: #f6ad55;
}

.star-rating::before {
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 400; /* Regular */
    opacity: 0.25;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Solid */
    top: 0;
    position: absolute;
    left: 0;
}

.woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.woocommerce-review-link {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
}

.product-card__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-card__rating .star-rating {
    font-size: 0.85rem;
}

.product-card__rating .rating-count {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
}

/* --- Single Product Layout --- */
.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.product-gallery-side {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    align-self: start;
    z-index: 10;
}

.product-gallery-main {
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.product-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding: 4px 4px 12px;
    scrollbar-width: thin;
}

.product-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.product-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.product-gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

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

.product-gallery-thumbs .thumb.active {
    border-color: var(--dch-accent);
    transform: scale(0.95);
}

/* Info Side */
.product-info-header {
    margin-bottom: 24px;
}

.product-cat-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(11, 72, 164, 0.08);
    color: var(--dch-primary);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--dch-primary);
    line-height: 1.1;
    margin-bottom: 16px;
}

.product-short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

/* Specs Card */
.product-specs-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.specs-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dch-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specs-title i {
    color: var(--dch-accent);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.specs-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.specs-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.specs-label {
    font-weight: 700;
    color: #64748b;
    font-size: 0.95rem;
}

.specs-value {
    font-weight: 700;
    color: var(--dch-primary);
    font-size: 0.95rem;
}

/* Actions */
.product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-wa-action, .btn-call-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 60px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
}

.btn-wa-action {
    background: #00a884;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(0, 168, 132, 0.25);
}

.btn-wa-action:hover {
    background: #008f70;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 168, 132, 0.35);
}

.btn-call-action {
    background: #f1f5f9;
    color: var(--dch-primary) !important;
    border: 1px solid #e2e8f0;
}

.btn-call-action:hover {
    background: #fff;
    border-color: var(--dch-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Trust Signals */
.product-trust-signals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px 15px;
    border: 1px solid #edf2f7;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border-inline-end: 1px solid rgba(0,0,0,0.05);
}

.trust-item:last-child {
    border: none;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--dch-accent);
}

.trust-item span {
    font-size: 0.725rem;
    font-weight: 800;
    color: #64748b;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Tabs */
.product-tabs-wrapper {
    margin-top: 80px;
    background: #fff;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.tabs-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
    padding: 0 20px;
}

.tab-btn {
    padding: 24px 36px;
    border: none;
    background: none;
    font-size: 1.05rem;
    font-weight: 800;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-btn.active {
    color: var(--dch-primary);
    border-bottom-color: var(--dch-primary);
}

.tab-btn:hover:not(.active) {
    color: var(--dch-primary);
}

.tab-panel {
    display: none;
    padding: 50px 60px;
}

.tab-panel.active {
    display: block;
    animation: dchFadeIn 0.5s ease;
}

.tab-panel h2, .tab-panel h3 {
    color: var(--dch-primary);
    font-weight: 800;
    margin-bottom: 20px;
}

.tab-panel p {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

@keyframes dchFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .product-single-layout {
        gap: 32px;
    }
    
    .product-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {
    .product-single-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery-side {
        position: relative;
        top: 0;
    }
    
    .product-gallery-main {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product-gallery-thumbs {
        justify-content: center;
    }
    
    .tab-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .product-title {
        font-size: 1.85rem;
    }

    .product-actions {
        flex-direction: column;
    }
    
    .product-trust-signals {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }
    
    .trust-item:nth-child(2) {
        border-inline-end: none;
    }
}

/* --- High-Fidelity Product Page V2 --- */
.product-page-v2 {
    padding: 30px 0;
    font-family: 'Inter', 'Outfit', 'Cairo', sans-serif;
}

/* 1. Top Row: Gallery & Header */
.product-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% / 50% */
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.product-gallery-side, .product-header-side {
    position: sticky;
    top: 100px;
}

.gallery-container {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    overflow: hidden;
}

.sku-badge-float {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff9800 !important; /* Force Bright Orange */
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    z-index: 10;
}

.main-image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.main-image-wrapper:hover img {
    transform: scale(1.1);
}

.zoom-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #0088cc !important; /* Force Blue */
    border: 2px solid #fff !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 136, 204, 0.25);
    z-index: 50;
    pointer-events: auto;
}

.zoom-btn:hover {
    transform: scale(1.15);
    background: #0077b3 !important;
}

.zoom-btn i {
    font-size: 1.1rem;
    pointer-events: none;
}

/* Lightbox Modal */
.dch-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.dch-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.product-gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.thumbs-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    flex: 1;
    padding: 2px;
}

.thumbs-track .thumb {
    width: 72px;
    height: 72px;
    background: #fff;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.thumbs-track .thumb.active {
    border-color: var(--dch-primary);
}

.thumbs-track .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #edf2f7;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Header Info */
.header-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cat-pill {
    background: #0088cc;
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.725rem;
    font-weight: 800;
}

.sku-pill {
    background: #ff9800 !important;
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.725rem;
    font-weight: 800;
}

.product-title-v2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #1a202c;
    line-height: 1.15;
    margin-bottom: 6px;
}

.product-subtitle-en {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-brief {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.top-trust-items {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #edf2f7;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.775rem;
    font-weight: 800;
    color: #2d3748;
}

.trust-pill i {
    color: #00BFA5;
    font-size: 1rem;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-primary-wa {
    background: #00a884;
    color: #fff !important;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 168, 132, 0.15);
}

.btn-primary-wa:hover {
    background: #008f70;
    transform: translateY(-2px);
}

.btn-sub-action {
    background: #fff;
    border: 2px solid var(--dch-primary);
    color: var(--dch-primary) !important;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-sub-action:hover {
    background: #f8fafc;
    border-color: var(--dch-primary-dark);
}

.sku-hint {
    text-align: center;
    font-size: 0.825rem;
    color: #718096;
    margin-top: 5px;
}

/* 2. Quick Specs Grid */
.quick-specs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 Columns */
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 30px;
    border: 1px solid #edf2f7;
}

.spec-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 12px;
    border-inline-end: 1px solid #edf2f7;
    text-align: center;
}

.spec-col:last-child {
    border: none;
}

.spec-col i {
    font-size: 1.25rem;
    color: var(--dch-primary);
}

.spec-col small {
    display: block;
    color: #718096;
    font-size: 0.675rem;
    margin-bottom: 1px;
}

.spec-col strong {
    font-size: 0.775rem;
    color: #1a202c;
    font-weight: 800;
}

/* 3. Main Content Grid */
.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 300px; /* Right column is 1fr, Left is 300px */
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.product-sidebar {
    position: sticky;
    top: 130px;
    align-self: start;
}

/* Sidebar */
.order-now-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #edf2f7;
}

.order-now-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dch-primary);
    margin-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 10px;
}

.quick-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.quick-meta-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #edf2f7;
    font-size: 0.875rem;
}

.quick-meta-list li span {
    color: #718096;
}

.quick-meta-list li strong {
    color: #2d3748;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-side-wa {
    background: #00a884;
    color: #fff !important;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none !important;
}

.btn-side-bulk {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #4a5568 !important;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none !important;
}

.sidebar-hint {
    display: flex;
    gap: 8px;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

/* Content Blocks */
.content-block {
    margin-bottom: 40px;
}

.block-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dch-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.block-title i {
    color: #0088cc;
}

.block-body {
    font-size: 0.975rem;
    line-height: 1.8;
    color: #4a5568;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item-v2 {
    background: #fff;
    border: 1px solid #edf2f7;
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #2d3748;
    font-size: 0.9rem;
}

.feature-item-v2 i {
    color: #00BFA5;
    font-size: 1.1rem;
}

.suitable-for-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.suitable-item {
    background: #fff;
    border: 1px solid #edf2f7;
    padding: 16px 8px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.suitable-item:hover {
    border-color: var(--dch-primary);
    transform: translateY(-3px);
}

.suitable-item i {
    font-size: 1.5rem;
    color: #94a3b8;
}

.suitable-item span {
    font-size: 0.775rem;
    font-weight: 800;
    color: #4a5568;
}

.warning-box {
    background: #fffaf0;
    border: 1px solid #feebc8;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.warning-box i {
    font-size: 2rem;
    color: #ed8936;
}

.warning-content h4 {
    color: #c05621;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.warning-content p {
    color: #744210;
    margin: 0;
    line-height: 1.5;
    font-weight: 700;
    font-size: 0.85rem;
}

/* WhatsApp Preview */
.wa-preview-section {
    background: #f0f7f4;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.preview-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #00a884;
    margin-bottom: 30px;
}

.wa-preview-box {
    max-width: 440px;
    margin: 0 auto;
}

.wa-chat-bubble {
    background: #fff;
    padding: 20px;
    border-radius: 16px 0 16px 16px;
    text-align: right;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    position: relative;
}

.wa-chat-bubble p {
    margin-bottom: 6px;
    color: #2d3748;
    font-size: 0.925rem;
}

.wa-time {
    display: block;
    font-size: 0.7rem;
    color: #a0aec0;
    margin-top: 10px;
}

.btn-wa-preview {
    background: #00a884;
    color: #fff !important;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none !important;
    font-size: 1rem;
}

/* Related Products V2 */
.related-section-v2 {
    margin-bottom: 60px;
    text-align: center;
}

.section-header-v2 {
    margin-bottom: 35px;
}

.section-header-v2 h2 {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--dch-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header-v2 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #0088cc;
    border-radius: 2px;
}

.products-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.products-grid-v2 > * {
    flex: 0 1 calc(25% - 18px); /* 4 columns maximum */
    min-width: 250px;
}



/* Responsive V2 */
@media (max-width: 1200px) {
    .product-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .product-top-row {
        grid-template-columns: 1fr;
    }
    .product-main-grid {
        grid-template-columns: 1fr;
    }
    .product-sidebar, .product-main-content {
        grid-column: auto;
    }
    .product-sidebar {
        order: 2;
    }
    .product-main-content {
        order: 1;
    }
    .suitable-for-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid-v2 {
        justify-content: center;
    }
    .products-grid-v2 > * {
        flex: 0 1 calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .products-grid-v2 > * {
        flex: 0 1 100%;
    }
    .product-title-v2 {
        font-size: 1.6rem;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .suitable-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
    }
    .action-buttons-grid {
        grid-template-columns: 1fr;
    }
}
/* Stock Pill */
.stock-pill {
    background: #ecfdf5 !important;
    color: #059669 !important;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.725rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
    z-index: 2000;
    border-top: 1px solid #edf2f7;
}

.btn-mobile-wa {
    background: #00a884;
    color: #fff !important;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 168, 132, 0.2);
}

/* Micro-interactions */
.suitable-item, .feature-item-v2, .suit-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.suitable-item:hover, .feature-item-v2:hover, .suit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: var(--dch-primary);
}

.action-buttons-grid a, .sidebar-buttons a {
    transition: all 0.3s ease;
}

.action-buttons-grid a:hover, .sidebar-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    filter: brightness(1.05);
}

/* Hero Enhancements */
.banner-top-content .breadcrumb {
    color: #ffffff !important;
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    justify-content: center; /* Center breadcrumbs */
}

.banner-top-content .breadcrumb a {
    color: #ffffff !important;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.banner-top-content .breadcrumb a:hover {
    opacity: 1;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    text-align: center;
}

/* Product Floating Bar */
.product-floating-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid #edf2f7;
}

.product-floating-bar.active {
    bottom: 0;
}

.floating-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-product-data {
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #edf2f7;
}

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

.floating-meta .floating-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: var(--dch-primary);
}

.floating-sku-code {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
}

.btn-floating-wa {
    background: #00a884;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.btn-floating-wa:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Final Responsive Tweaks */
@media (max-width: 991px) {
    .product-gallery-side, .product-sidebar, .product-header-side {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    .product-page-v2 {
        padding: 40px 20px 100px !important; /* Space for sticky CTA + left/right padding */
    }
    .product-hero-banner {
        padding: 120px 0 60px !important;
    }
}
