/**
 * Shop / Archive Page Styles
 * Modern and attractive shop design
 *
 * @package AnilShop
 * @version 1.1
 */

/* ================================
   Reset WooCommerce Default Styles
   ================================ */
.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
    display: none !important;
    content: none !important;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: contents !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ================================
   Shop Page Layout
   ================================ */
.shop-page {
    background: var(--color-background, #f8fafc);
    min-height: 100vh;
}

/* ================================
   Shop Hero Section
   ================================ */
.shop-hero {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(99, 102, 241, 0.03) 100%);
    overflow: hidden;
}

.shop-hero--has-image {
    min-height: 350px;
}

.shop-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.shop-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.85) 0%, rgba(236, 72, 153, 0.75) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-hero--has-image .shop-hero__overlay {
    opacity: 1;
}

.shop-hero__content {
    position: relative;
    z-index: 5;
    text-align: center;
}

/* Breadcrumbs */
.shop-hero__breadcrumbs {
    margin-bottom: 20px;
}

.shop-hero__breadcrumbs .breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-hero__breadcrumbs .breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.shop-hero__breadcrumbs .breadcrumbs li a {
    color: var(--color-text-light, #64748b);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-hero--has-image .shop-hero__breadcrumbs .breadcrumbs li a {
    color: rgba(255, 255, 255, 0.8);
}

.shop-hero__breadcrumbs .breadcrumbs li a:hover {
    color: var(--color-primary, #8b5cf6);
}

.shop-hero--has-image .shop-hero__breadcrumbs .breadcrumbs li a:hover {
    color: #fff;
}

.shop-hero__breadcrumbs .breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--color-text-light, #94a3b8);
    margin-right: 4px;
}

.shop-hero--has-image .shop-hero__breadcrumbs .breadcrumbs li:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.5);
}

.shop-hero__breadcrumbs .breadcrumbs li:last-child {
    color: var(--color-text-dark, #1e293b);
    font-weight: 600;
}

.shop-hero--has-image .shop-hero__breadcrumbs .breadcrumbs li:last-child {
    color: #fff;
}

/* Title */
.shop-hero__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-dark, #1e293b);
    margin: 0 0 16px;
    line-height: 1.2;
}

.shop-hero--has-image .shop-hero__title {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Description */
.shop-hero__description {
    font-size: 16px;
    color: var(--color-text-light, #64748b);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.shop-hero--has-image .shop-hero__description {
    color: rgba(255, 255, 255, 0.9);
}

/* Product Count */
.shop-hero__count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary, #8b5cf6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.shop-hero--has-image .shop-hero__count {
    background: rgba(255, 255, 255, 0.95);
}

.shop-hero__count i {
    font-size: 18px;
}

/* Decorative Shapes */
.shop-hero__shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.shop-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatShape 20s ease-in-out infinite;
}

.shop-hero__shape--1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.shop-hero__shape--2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.05));
    bottom: -50px;
    left: 10%;
    animation-delay: -5s;
}

.shop-hero__shape--3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
    top: 30%;
    left: -30px;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(0, -30px) rotate(0deg); }
    75% { transform: translate(-20px, -10px) rotate(-5deg); }
}

/* Wave */
.shop-hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.shop-hero__wave svg {
    width: 100%;
    height: 60px;
    fill: var(--color-background, #f8fafc);
}

/* ================================
   Shop Layout
   ================================ */
.shop-content {
    padding: 40px 0 100px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* ================================
   Shop Sidebar / Filter
   ================================ */
.shop-sidebar {
    position: sticky;
    top: 100px;
}

.shop-filter-toggle {
    display: none;
}

.shop-filter {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.shop-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.03));
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}

.shop-filter__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark, #1e293b);
    margin: 0;
}

.shop-filter__title i {
    color: var(--color-primary, #8b5cf6);
    font-size: 20px;
}

.shop-filter__close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border: none;
    border-radius: 10px;
    color: var(--color-text, #475569);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-filter__close:hover {
    background: #ef4444;
    color: #fff;
}

.shop-filter__form {
    padding: 20px;
}

.shop-filter__section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.shop-filter__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shop-filter__section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-dark, #1e293b);
    margin: 0 0 16px;
}

.shop-filter__section-title i {
    color: var(--color-primary, #8b5cf6);
    font-size: 18px;
}

/* Categories */
.shop-filter__categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.shop-filter__category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-filter__category:hover {
    background: rgba(139, 92, 246, 0.08);
}

.shop-filter__category--active {
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    color: #fff;
}

.shop-filter__category img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.shop-filter__category i {
    font-size: 18px;
    color: var(--color-primary, #8b5cf6);
}

.shop-filter__category--active i {
    color: #fff;
}

.shop-filter__category span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text, #475569);
}

.shop-filter__category--active span {
    color: #fff;
}

.shop-filter__category-count {
    margin-right: auto;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.shop-filter__category--active .shop-filter__category-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Price Filter */
.shop-filter__price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.shop-filter__price-input {
    flex: 1;
}

.shop-filter__price-input label {
    display: block;
    font-size: 11px;
    color: var(--color-text-light, #94a3b8);
    margin-bottom: 6px;
}

.shop-filter__price-input input {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark, #1e293b);
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-filter__price-input input:focus {
    outline: none;
    border-color: var(--color-primary, #8b5cf6);
    background: #fff;
}

.shop-filter__price-sep {
    color: var(--color-text-light, #94a3b8);
    font-weight: 600;
    padding-top: 20px;
}

/* Price Slider */
.shop-filter__price-slider {
    position: relative;
    height: 24px;
}

.shop-filter__price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    transform: translateY(-50%);
}

.shop-filter__price-range {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    border-radius: 3px;
}

.shop-filter__price-slider input[type="range"] {
    position: absolute;
    top: 0;
    width: 100%;
    height: 24px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.shop-filter__price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid var(--color-primary, #8b5cf6);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.shop-filter__price-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.shop-filter__price-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid var(--color-primary, #8b5cf6);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Options (Radio) */
.shop-filter__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-filter__option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.shop-filter__option input {
    display: none;
}

.shop-filter__option-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.shop-filter__option input:checked + .shop-filter__option-box {
    background: var(--color-primary, #8b5cf6);
    border-color: var(--color-primary, #8b5cf6);
}

.shop-filter__option input:checked + .shop-filter__option-box::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.shop-filter__option span:last-child {
    font-size: 13px;
    color: var(--color-text, #475569);
}

/* Checkbox */
.shop-filter__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.shop-filter__checkbox input {
    display: none;
}

.shop-filter__checkbox-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.shop-filter__checkbox-box i {
    font-size: 14px;
    color: transparent;
    transition: color 0.2s ease;
}

.shop-filter__checkbox input:checked + .shop-filter__checkbox-box {
    background: var(--color-primary, #8b5cf6);
    border-color: var(--color-primary, #8b5cf6);
}

.shop-filter__checkbox input:checked + .shop-filter__checkbox-box i {
    color: #fff;
}

.shop-filter__checkbox span:last-child {
    font-size: 13px;
    color: var(--color-text, #475569);
}

/* Filter Actions */
.shop-filter__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.shop-filter__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.shop-filter__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.shop-filter__reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light, #64748b);
    background: transparent;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-filter__reset:hover {
    color: #ef4444;
}

/* Filter Overlay */
.shop-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-filter-overlay--active {
    opacity: 1;
}

/* ================================
   Mobile Filter Dropdown
   (Button + panel above products)
   ================================ */
.shop-filter-dropdown {
    display: none;
    margin-bottom: 16px;
}

.shop-filter-dropdown__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.shop-filter-dropdown__btn:hover {
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4);
}

.shop-filter-dropdown__btn i:first-child {
    font-size: 20px;
}

.shop-filter-dropdown__chevron {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.shop-filter-dropdown--open .shop-filter-dropdown__chevron {
    transform: rotate(180deg);
}

.shop-filter-dropdown--open .shop-filter-dropdown__btn {
    border-radius: 14px 14px 0 0;
}

.shop-filter-dropdown__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-top: -2px;
}

.shop-filter-dropdown--open .shop-filter-dropdown__panel {
    max-height: 1200px;
}

.shop-filter-dropdown__form {
    padding: 20px 16px;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.shop-filter-dropdown__actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* ================================
   Shop Main Area
   ================================ */
.shop-main {
    min-width: 0;
}

/* ================================
   Shop Toolbar
   ================================ */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.shop-toolbar__right,
.shop-toolbar__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-toolbar__filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary, #8b5cf6);
    background: rgba(139, 92, 246, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-toolbar__filter-btn:hover {
    background: rgba(139, 92, 246, 0.15);
}

/* Result Count */
.shop-toolbar__result {
    font-size: 13px;
    color: var(--color-text-light, #64748b);
}

.shop-toolbar__result .woocommerce-result-count {
    margin: 0;
}

/* Sorting */
.shop-toolbar__sort .woocommerce-ordering {
    margin: 0;
    position: relative;
}

.shop-toolbar__sort .woocommerce-ordering::before {
    content: '\e9dc';
    font-family: 'Phosphor';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--color-primary, #8b5cf6);
    pointer-events: none;
    z-index: 2;
}

.shop-toolbar__sort .woocommerce-ordering::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s ease;
}

.shop-toolbar__sort .woocommerce-ordering:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.shop-toolbar__sort select {
    padding: 12px 44px 12px 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark, #1e293b);
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shop-toolbar__sort select:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.shop-toolbar__sort select:focus {
    outline: none;
    border-color: var(--color-primary, #8b5cf6);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1), 0 4px 12px rgba(139, 92, 246, 0.15);
}

.shop-toolbar__sort select option {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-dark, #1e293b);
    background: #fff;
}

.shop-toolbar__sort select option:checked {
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    color: #fff;
}

/* ================================
   Active Filters
   ================================ */
.shop-active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.shop-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary, #8b5cf6);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.shop-active-filter i {
    font-size: 14px;
}

.shop-active-filters__clear {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    text-decoration: none;
    margin-right: auto;
    transition: all 0.3s ease;
}

.shop-active-filters__clear:hover {
    background: rgba(239, 68, 68, 0.15);
}

/* ================================
   Products Grid
   ================================ */
.shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shop-products .product-card {
    height: 100%;
}

/* ================================
   Product Card Fixes
   ================================ */
.shop-products .product-card__inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.shop-products .product-card__inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.shop-products .product-card__media {
    position: relative;
    display: block;
    padding-top: 120%;
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    overflow: hidden;
}

.shop-products .product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-products .product-card__inner:hover .product-card__image {
    transform: scale(1.08);
}

.shop-products .product-card__sale {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 28px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
    z-index: 5;
}

.shop-products .product-card__stock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    z-index: 5;
}

.shop-products .product-card__info {
    padding: 16px 14px 14px;
}

.shop-products .product-card__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 12px;
}

.shop-products .product-card__title a {
    color: var(--color-text-dark, #1e293b);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.shop-products .product-card__title a:hover {
    color: var(--color-primary, #8b5cf6);
}

.shop-products .product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.shop-products .product-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shop-products .product-card__price del {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
}

.shop-products .product-card__price ins,
.shop-products .product-card__price > .woocommerce-Price-amount {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark, #1e293b);
    text-decoration: none;
}

.shop-products .product-card__price .woocommerce-Price-currencySymbol {
    font-size: 10px;
    font-weight: 500;
    color: #64748b;
}

.shop-products .product-card__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.shop-products .product-card__cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.shop-products .product-card__cart.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.shop-products .product-card__cart.loading i {
    display: none;
}

.shop-products .product-card__cart.added i::before {
    content: '\e902';
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================
   Out of Stock Products Styling
   ================================ */
.shop-products .product-outofstock .product-card__inner {
    position: relative;
}

.shop-products .product-outofstock .product-card__media {
    position: relative;
}

.shop-products .product-outofstock .product-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 3;
}

.shop-products .product-outofstock .product-card__image {
    filter: grayscale(60%) opacity(0.8);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.shop-products .product-outofstock .product-card__inner:hover .product-card__image {
    filter: grayscale(30%) opacity(0.9);
}

.shop-products .product-outofstock .product-card__stock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.shop-products .product-outofstock .product-card__title a {
    color: #94a3b8;
}

.shop-products .product-outofstock .product-card__title a:hover {
    color: #64748b;
}

.shop-products .product-outofstock .product-card__price ins,
.shop-products .product-outofstock .product-card__price > .woocommerce-Price-amount {
    color: #94a3b8;
}

.shop-products .product-outofstock .product-card__price del {
    color: #cbd5e1;
}

.shop-products .product-outofstock .product-card__sale {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

/* Out of stock hover effect */
.shop-products .product-outofstock .product-card__inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Out of stock responsive */
@media (max-width: 767px) {
    .shop-products .product-outofstock .product-card__stock {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 8px;
    }
}

@media (max-width: 399px) {
    .shop-products .product-outofstock .product-card__stock {
        padding: 6px 12px;
        font-size: 10px;
        border-radius: 6px;
    }
}

/* ================================
   Shop Pagination
   ================================ */
.shop-pagination {
    margin-top: 50px;
}

.shop-pagination .woocommerce-pagination {
    text-align: center;
}

.shop-pagination .woocommerce-pagination ul {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 14px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.shop-pagination .woocommerce-pagination ul li {
    margin: 0;
}

.shop-pagination .woocommerce-pagination ul li a,
.shop-pagination .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text, #475569);
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-pagination .woocommerce-pagination ul li a:hover {
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.shop-pagination .woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    color: #fff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.shop-pagination .woocommerce-pagination ul li .prev,
.shop-pagination .woocommerce-pagination ul li .next {
    background: transparent;
    color: var(--color-primary, #8b5cf6);
}

.shop-pagination .woocommerce-pagination ul li .prev:hover,
.shop-pagination .woocommerce-pagination ul li .next:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-primary, #8b5cf6);
    transform: none;
    box-shadow: none;
}

/* ================================
   Empty State
   ================================ */
.shop-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.shop-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
    border-radius: 50%;
    font-size: 52px;
    color: var(--color-primary, #8b5cf6);
    margin-bottom: 24px;
}

.shop-empty__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark, #1e293b);
    margin: 0 0 12px;
}

.shop-empty__text {
    font-size: 15px;
    color: var(--color-text-light, #64748b);
    margin: 0 0 24px;
}

.shop-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-primary, #8b5cf6), var(--color-secondary, #ec4899));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.shop-empty__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* ================================
   RESPONSIVE - Complete Rewrite v2
   Professional Mobile-First Design
   Breakpoints: 1400+ | 1200-1399 | 992-1199 | 768-991 | 576-767 | 400-575 | <400
   ================================ */

/* --------------------------------
   Base Mobile Styles (Default)
   Applied to all screen sizes
   -------------------------------- */

/* ---- 1. Extra Large Desktop (1400px and above) ---- */
@media (min-width: 1400px) {
    /* Container */
    .shop-page .container {
        max-width: 1340px;
        padding: 0 24px;
    }
    
    /* Hero Section */
    .shop-hero {
        padding: 100px 0 120px;
    }
    
    .shop-hero__title {
        font-size: 46px;
        letter-spacing: -0.5px;
    }
    
    .shop-hero__description {
        font-size: 17px;
        max-width: 680px;
        line-height: 1.8;
    }
    
    .shop-hero__count {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .shop-hero__count i {
        font-size: 20px;
    }
    
    .shop-hero__wave svg {
        height: 70px;
    }
    
    /* Content Area */
    .shop-content {
        padding: 50px 0 120px;
    }
    
    /* Layout Grid */
    .shop-layout {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
    
    /* Sidebar */
    .shop-sidebar {
        position: sticky;
        top: 110px;
        display: block !important;
    }
    
    .shop-filter {
        border-radius: 24px;
    }
    
    .shop-filter__header {
        padding: 22px 26px;
    }
    
    .shop-filter__form {
        padding: 24px;
    }
    
    .shop-filter__categories {
        max-height: 280px;
    }
    
    /* Filter Dropdown - Hide on Desktop */
    .shop-filter-dropdown {
        display: none !important;
    }
    
    /* Toolbar */
    .shop-toolbar {
        padding: 18px 24px;
        margin-bottom: 28px;
        border-radius: 20px;
        gap: 24px;
    }
    
    .shop-toolbar__result {
        font-size: 14px;
    }
    
    .shop-toolbar__sort select {
        min-width: 200px;
        padding: 14px 48px 14px 44px;
        font-size: 14px;
    }
    
    /* Active Filters */
    .shop-active-filters {
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .shop-active-filter {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    /* Products Grid */
    .shop-products {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    /* Product Card */
    .shop-products .product-card__inner {
        border-radius: 22px;
    }
    
    .shop-products .product-card__media {
        padding-top: 118%;
    }
    
    .shop-products .product-card__sale {
        top: 14px;
        right: 14px;
        min-width: 48px;
        height: 30px;
        padding: 0 12px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .shop-products .product-card__info {
        padding: 18px 16px 16px;
    }
    
    .shop-products .product-card__title {
        font-size: 15px;
        margin-bottom: 14px;
    }
    
    .shop-products .product-card__price del {
        font-size: 12px;
    }
    
    .shop-products .product-card__price ins,
    .shop-products .product-card__price > .woocommerce-Price-amount {
        font-size: 16px;
    }
    
    .shop-products .product-card__cart {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 14px;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 60px;
    }
    
    .shop-pagination .woocommerce-pagination ul {
        padding: 16px 24px;
        gap: 10px;
        border-radius: 18px;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        min-width: 46px;
        height: 46px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    /* Empty State */
    .shop-empty {
        padding: 100px 40px;
        border-radius: 28px;
    }
    
    .shop-empty__icon {
        width: 130px;
        height: 130px;
        font-size: 56px;
        margin-bottom: 28px;
    }
    
    .shop-empty__title {
        font-size: 26px;
    }
    
    .shop-empty__text {
        font-size: 16px;
    }
    
    .shop-empty__btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ---- 2. Large Desktop (1200px - 1399px) ---- */
@media (min-width: 1200px) and (max-width: 1399px) {
    /* Container */
    .shop-page .container {
        max-width: 1180px;
        padding: 0 20px;
    }
    
    /* Hero Section */
    .shop-hero {
        padding: 90px 0 110px;
    }
    
    .shop-hero__title {
        font-size: 40px;
    }
    
    .shop-hero__description {
        font-size: 16px;
        max-width: 620px;
    }
    
    .shop-hero__count {
        padding: 11px 22px;
        font-size: 14px;
    }
    
    .shop-hero__wave svg {
        height: 60px;
    }
    
    /* Content Area */
    .shop-content {
        padding: 44px 0 100px;
    }
    
    /* Layout Grid */
    .shop-layout {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }
    
    /* Sidebar */
    .shop-sidebar {
        display: block !important;
    }
    
    .shop-filter__categories {
        max-height: 260px;
    }
    
    /* Filter Dropdown - Hide */
    .shop-filter-dropdown {
        display: none !important;
    }
    
    /* Toolbar */
    .shop-toolbar {
        padding: 16px 22px;
        margin-bottom: 26px;
        border-radius: 18px;
    }
    
    .shop-toolbar__sort select {
        min-width: 185px;
    }
    
    /* Products Grid */
    .shop-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    
    /* Product Card */
    .shop-products .product-card__inner {
        border-radius: 20px;
    }
    
    .shop-products .product-card__media {
        padding-top: 120%;
    }
    
    .shop-products .product-card__sale {
        top: 12px;
        right: 12px;
    }
    
    .shop-products .product-card__info {
        padding: 16px 14px 14px;
    }
    
    .shop-products .product-card__title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .shop-products .product-card__price ins,
    .shop-products .product-card__price > .woocommerce-Price-amount {
        font-size: 15px;
    }
    
    .shop-products .product-card__cart {
        width: 42px;
        height: 42px;
        font-size: 19px;
        border-radius: 13px;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 52px;
    }
    
    .shop-pagination .woocommerce-pagination ul {
        padding: 14px 22px;
        gap: 8px;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        min-width: 44px;
        height: 44px;
        font-size: 14px;
    }
    
    /* Empty State */
    .shop-empty {
        padding: 88px 36px;
    }
}

/* ---- 3. Desktop / Small Desktop (992px - 1199px) ---- */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Container */
    .shop-page .container {
        max-width: 970px;
        padding: 0 18px;
    }
    
    /* Hero Section */
    .shop-hero {
        padding: 80px 0 100px;
    }
    
    .shop-hero__title {
        font-size: 36px;
    }
    
    .shop-hero__description {
        font-size: 15px;
        max-width: 560px;
    }
    
    .shop-hero__count {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .shop-hero__wave svg {
        height: 55px;
    }
    
    /* Content Area */
    .shop-content {
        padding: 40px 0 90px;
    }
    
    /* Layout Grid */
    .shop-layout {
        grid-template-columns: 260px 1fr;
        gap: 28px;
    }
    
    /* Sidebar */
    .shop-sidebar {
        display: block !important;
    }
    
    .shop-filter {
        border-radius: 20px;
    }
    
    .shop-filter__header {
        padding: 18px 20px;
    }
    
    .shop-filter__form {
        padding: 18px;
    }
    
    .shop-filter__categories {
        max-height: 220px;
    }
    
    .shop-filter__section-title {
        font-size: 13px;
    }
    
    .shop-filter__category {
        padding: 9px 11px;
    }
    
    .shop-filter__category img {
        width: 30px;
        height: 30px;
    }
    
    .shop-filter__category span {
        font-size: 12px;
    }
    
    /* Filter Dropdown - Hide */
    .shop-filter-dropdown {
        display: none !important;
    }
    
    /* Toolbar */
    .shop-toolbar {
        padding: 14px 18px;
        margin-bottom: 22px;
        border-radius: 16px;
    }
    
    .shop-toolbar__result {
        font-size: 13px;
    }
    
    .shop-toolbar__sort select {
        min-width: 165px;
        padding: 11px 40px 11px 36px;
        font-size: 13px;
    }
    
    /* Active Filters */
    .shop-active-filters {
        gap: 10px;
        margin-bottom: 22px;
    }
    
    /* Products Grid */
    .shop-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    /* Product Card */
    .shop-products .product-card__inner {
        border-radius: 18px;
    }
    
    .shop-products .product-card__sale {
        top: 10px;
        right: 10px;
        min-width: 42px;
        height: 26px;
        font-size: 11px;
    }
    
    .shop-products .product-card__info {
        padding: 14px 12px 12px;
    }
    
    .shop-products .product-card__title {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .shop-products .product-card__price del {
        font-size: 10px;
    }
    
    .shop-products .product-card__price ins,
    .shop-products .product-card__price > .woocommerce-Price-amount {
        font-size: 14px;
    }
    
    .shop-products .product-card__cart {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 11px;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 44px;
    }
    
    .shop-pagination .woocommerce-pagination ul {
        padding: 12px 18px;
        gap: 6px;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* Empty State */
    .shop-empty {
        padding: 72px 28px;
    }
    
    .shop-empty__icon {
        width: 110px;
        height: 110px;
        font-size: 48px;
    }
    
    .shop-empty__title {
        font-size: 22px;
    }
}

/* ---- 4. Tablet Landscape (768px - 991px) ---- */
@media (min-width: 768px) and (max-width: 991px) {
    /* Container */
    .shop-page .container {
        max-width: 750px;
        padding: 0 16px;
    }
    
    /* Hero Section */
    .shop-hero {
        padding: 60px 0 80px;
    }
    
    .shop-hero__breadcrumbs {
        margin-bottom: 16px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs li {
        font-size: 13px;
    }
    
    .shop-hero__title {
        font-size: 32px;
    }
    
    .shop-hero__description {
        font-size: 14px;
        max-width: 480px;
    }
    
    .shop-hero__count {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .shop-hero__count i {
        font-size: 17px;
    }
    
    .shop-hero__wave svg {
        height: 48px;
    }
    
    .shop-hero__shape--1 {
        width: 220px;
        height: 220px;
    }
    
    .shop-hero__shape--2 {
        width: 150px;
        height: 150px;
    }
    
    .shop-hero__shape--3 {
        width: 100px;
        height: 100px;
    }
    
    /* Content Area */
    .shop-content {
        padding: 32px 0 80px;
    }
    
    /* Layout - Single Column */
    .shop-layout {
        display: block;
    }
    
    /* Sidebar - HIDE on Tablet */
    .shop-sidebar {
        display: none !important;
    }
    
    /* Filter Dropdown - SHOW on Tablet */
    .shop-filter-dropdown {
        display: block !important;
        margin-bottom: 20px;
    }
    
    .shop-filter-dropdown__btn {
        padding: 14px 22px;
        font-size: 15px;
        border-radius: 16px;
        gap: 12px;
    }
    
    .shop-filter-dropdown__btn i:first-child {
        font-size: 22px;
    }
    
    .shop-filter-dropdown__chevron {
        font-size: 20px;
    }
    
    .shop-filter-dropdown--open .shop-filter-dropdown__btn {
        border-radius: 16px 16px 0 0;
    }
    
    .shop-filter-dropdown__panel {
        border-radius: 0 0 16px 16px;
    }
    
    .shop-filter-dropdown__form {
        padding: 22px 20px;
        max-height: 75vh;
    }
    
    .shop-filter-dropdown__form .shop-filter__section {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
    
    .shop-filter-dropdown__form .shop-filter__section-title {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .shop-filter-dropdown__form .shop-filter__categories {
        max-height: 180px;
        gap: 10px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category img {
        width: 30px;
        height: 30px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category span {
        font-size: 13px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-input input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option span:last-child,
    .shop-filter-dropdown__form .shop-filter__checkbox span:last-child {
        font-size: 13px;
    }
    
    .shop-filter-dropdown__actions {
        margin-top: 20px;
        padding-top: 18px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__submit {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__reset {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Toolbar */
    .shop-toolbar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        margin-bottom: 20px;
        border-radius: 14px;
        gap: 16px;
    }
    
    .shop-toolbar__right {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .shop-toolbar__left {
        flex: 0 0 auto;
    }
    
    .shop-toolbar__result {
        font-size: 13px;
    }
    
    .shop-toolbar__result .woocommerce-result-count {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .shop-toolbar__sort {
        flex-shrink: 0;
    }
    
    .shop-toolbar__sort select {
        min-width: 155px;
        padding: 11px 38px 11px 34px;
        font-size: 13px;
    }
    
    /* Active Filters */
    .shop-active-filters {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .shop-active-filter {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* Products Grid - 3 columns on tablet */
    .shop-products {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    /* Product Card */
    .shop-products .product-card__inner {
        border-radius: 16px;
    }
    
    .shop-products .product-card__media {
        padding-top: 122%;
    }
    
    .shop-products .product-card__sale {
        top: 10px;
        right: 10px;
        min-width: 40px;
        height: 24px;
        padding: 0 8px;
        font-size: 11px;
        border-radius: 7px;
    }
    
    .shop-products .product-card__stock {
        padding: 9px 16px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .shop-products .product-card__info {
        padding: 12px 10px 10px;
    }
    
    .shop-products .product-card__title {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.45;
    }
    
    .shop-products .product-card__price del {
        font-size: 10px;
    }
    
    .shop-products .product-card__price ins,
    .shop-products .product-card__price > .woocommerce-Price-amount {
        font-size: 13px;
    }
    
    .shop-products .product-card__price .woocommerce-Price-currencySymbol {
        font-size: 9px;
    }
    
    .shop-products .product-card__cart {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    /* Out of Stock */
    .shop-products .product-outofstock .product-card__stock {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 40px;
    }
    
    .shop-pagination .woocommerce-pagination ul {
        padding: 12px 16px;
        gap: 6px;
        border-radius: 14px;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    /* Empty State */
    .shop-empty {
        padding: 64px 28px;
        border-radius: 20px;
    }
    
    .shop-empty__icon {
        width: 100px;
        height: 100px;
        font-size: 44px;
        margin-bottom: 24px;
    }
    
    .shop-empty__title {
        font-size: 21px;
    }
    
    .shop-empty__text {
        font-size: 14px;
    }
    
    .shop-empty__btn {
        padding: 14px 26px;
        font-size: 14px;
    }
}

/* ---- 5. Mobile Landscape / Large Mobile (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    /* Container */
    .shop-page .container {
        max-width: 100%;
        padding: 0 16px;
    }
    
    /* Hero Section */
    .shop-hero {
        padding: 50px 0 70px;
    }
    
    .shop-hero__breadcrumbs {
        margin-bottom: 14px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs li {
        font-size: 12px;
    }
    
    .shop-hero__title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .shop-hero__description {
        font-size: 14px;
        max-width: 420px;
        line-height: 1.7;
    }
    
    .shop-hero__count {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .shop-hero__count i {
        font-size: 16px;
    }
    
    .shop-hero__wave svg {
        height: 44px;
    }
    
    .shop-hero__shape--1 {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -40px;
    }
    
    .shop-hero__shape--2 {
        width: 120px;
        height: 120px;
    }
    
    .shop-hero__shape--3 {
        display: none;
    }
    
    /* Content Area */
    .shop-content {
        padding: 28px 0 70px;
    }
    
    /* Layout */
    .shop-layout {
        display: block;
    }
    
    /* Sidebar - HIDE */
    .shop-sidebar {
        display: none !important;
    }
    
    /* Filter Dropdown - SHOW */
    .shop-filter-dropdown {
        display: block !important;
        margin-bottom: 18px;
    }
    
    .shop-filter-dropdown__btn {
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 14px;
        gap: 10px;
    }
    
    .shop-filter-dropdown__btn i:first-child {
        font-size: 20px;
    }
    
    .shop-filter-dropdown__chevron {
        font-size: 18px;
    }
    
    .shop-filter-dropdown--open .shop-filter-dropdown__btn {
        border-radius: 14px 14px 0 0;
    }
    
    .shop-filter-dropdown__panel {
        border-radius: 0 0 14px 14px;
    }
    
    .shop-filter-dropdown__form {
        padding: 20px 18px;
        max-height: 70vh;
    }
    
    .shop-filter-dropdown__form .shop-filter__section {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    
    .shop-filter-dropdown__form .shop-filter__section-title {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .shop-filter-dropdown__form .shop-filter__categories {
        max-height: 160px;
        gap: 8px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category {
        padding: 9px 10px;
        gap: 10px;
        border-radius: 10px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category img {
        width: 28px;
        height: 28px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category span {
        font-size: 12px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category-count {
        font-size: 10px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-inputs {
        gap: 10px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-input input {
        padding: 9px 10px;
        font-size: 12px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option,
    .shop-filter-dropdown__form .shop-filter__checkbox {
        gap: 8px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option span:last-child,
    .shop-filter-dropdown__form .shop-filter__checkbox span:last-child {
        font-size: 12px;
    }
    
    .shop-filter-dropdown__actions {
        margin-top: 18px;
        padding-top: 16px;
        gap: 10px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__submit {
        padding: 13px 18px;
        font-size: 13px;
        border-radius: 11px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__reset {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    /* Toolbar */
    .shop-toolbar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        margin-bottom: 16px;
        border-radius: 12px;
        gap: 12px;
    }
    
    .shop-toolbar__right {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .shop-toolbar__left {
        flex: 0 0 auto;
    }
    
    .shop-toolbar__result {
        font-size: 11px;
    }
    
    .shop-toolbar__result .woocommerce-result-count {
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .shop-toolbar__sort {
        flex-shrink: 0;
    }
    
    .shop-toolbar__sort select {
        min-width: 130px;
        padding: 10px 32px 10px 28px;
        font-size: 11px;
        border-radius: 10px;
    }
    
    .shop-toolbar__sort .woocommerce-ordering::before {
        right: 10px;
        font-size: 14px;
    }
    
    .shop-toolbar__sort .woocommerce-ordering::after {
        left: 10px;
        width: 14px;
        height: 14px;
    }
    
    /* Active Filters */
    .shop-active-filters {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .shop-active-filter {
        padding: 7px 12px;
        font-size: 11px;
        border-radius: 7px;
    }
    
    .shop-active-filter i {
        font-size: 12px;
    }
    
    .shop-active-filters__clear {
        padding: 7px 12px;
        font-size: 11px;
    }
    
    /* Products Grid - 2 columns */
    .shop-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    /* Product Card */
    .shop-products .product-card__inner {
        border-radius: 14px;
    }
    
    .shop-products .product-card__media {
        padding-top: 125%;
    }
    
    .shop-products .product-card__sale {
        top: 9px;
        right: 9px;
        min-width: 38px;
        height: 24px;
        padding: 0 7px;
        font-size: 10px;
        border-radius: 7px;
    }
    
    .shop-products .product-card__stock {
        padding: 8px 14px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .shop-products .product-card__info {
        padding: 11px 10px 9px;
    }
    
    .shop-products .product-card__title {
        font-size: 12px;
        margin-bottom: 9px;
        line-height: 1.45;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .shop-products .product-card__price del {
        font-size: 9px;
    }
    
    .shop-products .product-card__price ins,
    .shop-products .product-card__price > .woocommerce-Price-amount {
        font-size: 12px;
    }
    
    .shop-products .product-card__price .woocommerce-Price-currencySymbol {
        font-size: 9px;
    }
    
    .shop-products .product-card__cart {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    /* Out of Stock */
    .shop-products .product-outofstock .product-card__stock {
        padding: 7px 12px;
        font-size: 10px;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 36px;
    }
    
    .shop-pagination .woocommerce-pagination ul {
        padding: 10px 14px;
        gap: 5px;
        border-radius: 12px;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
        border-radius: 9px;
    }
    
    /* Empty State */
    .shop-empty {
        padding: 56px 24px;
        border-radius: 18px;
    }
    
    .shop-empty__icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .shop-empty__title {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .shop-empty__text {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .shop-empty__btn {
        padding: 13px 24px;
        font-size: 14px;
        border-radius: 11px;
    }
}

/* ---- 6. Mobile Portrait (400px - 575px) ---- */
@media (min-width: 400px) and (max-width: 575px) {
    /* Container */
    .shop-page .container {
        max-width: 100%;
        padding: 0 14px;
    }
    
    /* Hero Section */
    .shop-hero {
        padding: 44px 0 60px;
    }
    
    .shop-hero__breadcrumbs {
        margin-bottom: 12px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs li {
        font-size: 11px;
        gap: 6px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs li:not(:last-child)::after {
        margin-right: 2px;
    }
    
    .shop-hero__title {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 12px;
    }
    
    .shop-hero__description {
        font-size: 13px;
        max-width: 320px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .shop-hero__count {
        padding: 7px 14px;
        font-size: 11px;
        gap: 6px;
    }
    
    .shop-hero__count i {
        font-size: 15px;
    }
    
    .shop-hero__wave svg {
        height: 38px;
    }
    
    .shop-hero__shape--1 {
        width: 150px;
        height: 150px;
        top: -50px;
        right: -30px;
    }
    
    .shop-hero__shape--2 {
        width: 100px;
        height: 100px;
        bottom: -30px;
    }
    
    .shop-hero__shape--3 {
        display: none;
    }
    
    /* Content Area */
    .shop-content {
        padding: 24px 0 60px;
    }
    
    /* Layout */
    .shop-layout {
        display: block;
    }
    
    /* Sidebar - HIDE */
    .shop-sidebar {
        display: none !important;
    }
    
    /* Filter Dropdown - SHOW */
    .shop-filter-dropdown {
        display: block !important;
        margin-bottom: 16px;
    }
    
    .shop-filter-dropdown__btn {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 12px;
        gap: 8px;
        box-shadow: 0 3px 12px rgba(139, 92, 246, 0.25);
    }
    
    .shop-filter-dropdown__btn i:first-child {
        font-size: 18px;
    }
    
    .shop-filter-dropdown__chevron {
        font-size: 16px;
    }
    
    .shop-filter-dropdown--open .shop-filter-dropdown__btn {
        border-radius: 12px 12px 0 0;
    }
    
    .shop-filter-dropdown__panel {
        border-radius: 0 0 12px 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }
    
    .shop-filter-dropdown__form {
        padding: 16px 14px;
        max-height: 65vh;
    }
    
    .shop-filter-dropdown__form .shop-filter__section {
        padding-bottom: 14px;
        margin-bottom: 14px;
    }
    
    .shop-filter-dropdown__form .shop-filter__section-title {
        font-size: 12px;
        margin-bottom: 10px;
        gap: 6px;
    }
    
    .shop-filter-dropdown__form .shop-filter__section-title i {
        font-size: 16px;
    }
    
    .shop-filter-dropdown__form .shop-filter__categories {
        max-height: 140px;
        gap: 6px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category {
        padding: 8px 10px;
        gap: 8px;
        border-radius: 10px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category img {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category i {
        font-size: 16px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category span {
        font-size: 11px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category-count {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-inputs {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-input label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-input input {
        padding: 8px;
        font-size: 11px;
        border-radius: 8px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-sep {
        font-size: 13px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-slider {
        height: 20px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-track {
        height: 5px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-slider input[type="range"]::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
    }
    
    .shop-filter-dropdown__form .shop-filter__options {
        gap: 8px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option,
    .shop-filter-dropdown__form .shop-filter__checkbox {
        gap: 8px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option-box {
        width: 18px;
        height: 18px;
    }
    
    .shop-filter-dropdown__form .shop-filter__checkbox-box {
        width: 20px;
        height: 20px;
    }
    
    .shop-filter-dropdown__form .shop-filter__checkbox-box i {
        font-size: 12px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option span:last-child,
    .shop-filter-dropdown__form .shop-filter__checkbox span:last-child {
        font-size: 11px;
    }
    
    .shop-filter-dropdown__actions {
        margin-top: 16px;
        padding-top: 14px;
        gap: 8px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__submit {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__reset {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    /* Toolbar */
    .shop-toolbar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        margin-bottom: 14px;
        border-radius: 12px;
        gap: 10px;
    }
    
    .shop-toolbar__right {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .shop-toolbar__left {
        flex: 0 0 auto;
    }
    
    .shop-toolbar__result {
        font-size: 10px;
    }
    
    .shop-toolbar__result .woocommerce-result-count {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .shop-toolbar__sort {
        flex-shrink: 0;
    }
    
    .shop-toolbar__sort select {
        min-width: 115px;
        padding: 9px 28px 9px 24px;
        font-size: 11px;
        border-radius: 9px;
    }
    
    .shop-toolbar__sort .woocommerce-ordering::before {
        right: 8px;
        font-size: 13px;
    }
    
    .shop-toolbar__sort .woocommerce-ordering::after {
        left: 8px;
        width: 13px;
        height: 13px;
    }
    
    /* Active Filters */
    .shop-active-filters {
        gap: 6px;
        margin-bottom: 14px;
    }
    
    .shop-active-filter {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 6px;
    }
    
    .shop-active-filter i {
        font-size: 11px;
    }
    
    .shop-active-filters__clear {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    /* Products Grid - 2 columns */
    .shop-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Product Card */
    .shop-products .product-card {
        height: auto;
    }
    
    .shop-products .product-card__inner {
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }
    
    .shop-products .product-card__media {
        padding-top: 128%;
    }
    
    .shop-products .product-card__sale {
        top: 8px;
        right: 8px;
        min-width: 36px;
        height: 22px;
        padding: 0 6px;
        font-size: 10px;
        border-radius: 6px;
    }
    
    .shop-products .product-card__stock {
        padding: 7px 12px;
        font-size: 10px;
        border-radius: 8px;
    }
    
    .shop-products .product-card__info {
        padding: 10px 9px 9px;
    }
    
    .shop-products .product-card__title {
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .shop-products .product-card__bottom {
        gap: 8px;
    }
    
    .shop-products .product-card__price {
        gap: 1px;
    }
    
    .shop-products .product-card__price del {
        font-size: 9px;
    }
    
    .shop-products .product-card__price ins,
    .shop-products .product-card__price > .woocommerce-Price-amount {
        font-size: 12px;
    }
    
    .shop-products .product-card__price .woocommerce-Price-currencySymbol {
        font-size: 8px;
    }
    
    .shop-products .product-card__cart {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 9px;
        box-shadow: 0 3px 10px rgba(139, 92, 246, 0.25);
    }
    
    /* Out of Stock */
    .shop-products .product-outofstock .product-card__stock {
        padding: 6px 10px;
        font-size: 9px;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 32px;
    }
    
    .shop-pagination .woocommerce-pagination ul {
        padding: 10px 12px;
        gap: 4px;
        border-radius: 12px;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
        border-radius: 8px;
        padding: 0 8px;
    }
    
    /* Empty State */
    .shop-empty {
        padding: 50px 20px;
        border-radius: 16px;
    }
    
    .shop-empty__icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
        margin-bottom: 18px;
    }
    
    .shop-empty__title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .shop-empty__text {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .shop-empty__btn {
        padding: 12px 22px;
        font-size: 13px;
        border-radius: 10px;
    }
}

/* ---- 7. Small Mobile (< 400px) ---- */
@media (max-width: 399px) {
    /* Container */
    .shop-page .container {
        max-width: 100%;
        padding: 0 12px;
    }
    
    /* Hero Section */
    .shop-hero {
        padding: 36px 0 52px;
    }
    
    .shop-hero__breadcrumbs {
        margin-bottom: 10px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs li {
        font-size: 10px;
        gap: 4px;
    }
    
    .shop-hero__breadcrumbs .breadcrumbs li:not(:last-child)::after {
        margin-right: 0;
    }
    
    .shop-hero__title {
        font-size: 21px;
        line-height: 1.35;
        margin-bottom: 10px;
    }
    
    .shop-hero__description {
        font-size: 12px;
        max-width: 280px;
        line-height: 1.65;
        margin-bottom: 14px;
    }
    
    .shop-hero__count {
        padding: 6px 12px;
        font-size: 10px;
        gap: 5px;
        border-radius: 40px;
    }
    
    .shop-hero__count i {
        font-size: 14px;
    }
    
    .shop-hero__wave svg {
        height: 32px;
    }
    
    .shop-hero__shapes {
        opacity: 0.6;
    }
    
    .shop-hero__shape--1 {
        width: 120px;
        height: 120px;
        top: -40px;
        right: -25px;
    }
    
    .shop-hero__shape--2 {
        width: 80px;
        height: 80px;
        bottom: -25px;
        left: 5%;
    }
    
    .shop-hero__shape--3 {
        display: none;
    }
    
    /* Content Area */
    .shop-content {
        padding: 20px 0 50px;
    }
    
    /* Layout */
    .shop-layout {
        display: block;
    }
    
    /* Sidebar - HIDE */
    .shop-sidebar {
        display: none !important;
    }
    
    /* Filter Dropdown - SHOW */
    .shop-filter-dropdown {
        display: block !important;
        margin-bottom: 14px;
    }
    
    .shop-filter-dropdown__btn {
        padding: 11px 14px;
        font-size: 12px;
        border-radius: 11px;
        gap: 7px;
        box-shadow: 0 3px 10px rgba(139, 92, 246, 0.22);
    }
    
    .shop-filter-dropdown__btn i:first-child {
        font-size: 17px;
    }
    
    .shop-filter-dropdown__chevron {
        font-size: 15px;
    }
    
    .shop-filter-dropdown--open .shop-filter-dropdown__btn {
        border-radius: 11px 11px 0 0;
    }
    
    .shop-filter-dropdown__panel {
        border-radius: 0 0 11px 11px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    }
    
    .shop-filter-dropdown__form {
        padding: 14px 12px;
        max-height: 60vh;
    }
    
    .shop-filter-dropdown__form .shop-filter__section {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    .shop-filter-dropdown__form .shop-filter__section-title {
        font-size: 11px;
        margin-bottom: 10px;
        gap: 5px;
    }
    
    .shop-filter-dropdown__form .shop-filter__section-title i {
        font-size: 14px;
    }
    
    .shop-filter-dropdown__form .shop-filter__categories {
        max-height: 120px;
        gap: 5px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category {
        padding: 7px 8px;
        gap: 7px;
        border-radius: 8px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category img {
        width: 24px;
        height: 24px;
        border-radius: 5px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category i {
        font-size: 14px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category span {
        font-size: 10px;
    }
    
    .shop-filter-dropdown__form .shop-filter__category-count {
        font-size: 8px;
        padding: 2px 5px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-inputs {
        gap: 6px;
        margin-bottom: 14px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-input label {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-input input {
        padding: 7px 6px;
        font-size: 10px;
        border-radius: 7px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-sep {
        font-size: 12px;
        padding-top: 18px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-slider {
        height: 18px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-track {
        height: 4px;
    }
    
    .shop-filter-dropdown__form .shop-filter__price-slider input[type="range"]::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
    
    .shop-filter-dropdown__form .shop-filter__options {
        gap: 7px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option,
    .shop-filter-dropdown__form .shop-filter__checkbox {
        gap: 7px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option-box {
        width: 16px;
        height: 16px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option input:checked + .shop-filter__option-box::after {
        width: 6px;
        height: 6px;
    }
    
    .shop-filter-dropdown__form .shop-filter__checkbox-box {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }
    
    .shop-filter-dropdown__form .shop-filter__checkbox-box i {
        font-size: 11px;
    }
    
    .shop-filter-dropdown__form .shop-filter__option span:last-child,
    .shop-filter-dropdown__form .shop-filter__checkbox span:last-child {
        font-size: 10px;
    }
    
    .shop-filter-dropdown__actions {
        margin-top: 14px;
        padding-top: 12px;
        gap: 6px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__submit {
        padding: 11px 14px;
        font-size: 11px;
        border-radius: 9px;
        gap: 6px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__submit i {
        font-size: 14px;
    }
    
    .shop-filter-dropdown__actions .shop-filter__reset {
        padding: 9px 10px;
        font-size: 10px;
        gap: 4px;
    }
    
    /* Toolbar */
    .shop-toolbar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 9px 10px;
        margin-bottom: 12px;
        border-radius: 10px;
        gap: 8px;
    }
    
    .shop-toolbar__right {
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .shop-toolbar__left {
        flex: 0 0 auto;
    }
    
    .shop-toolbar__result {
        font-size: 9px;
    }
    
    .shop-toolbar__result .woocommerce-result-count {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .shop-toolbar__sort {
        flex-shrink: 0;
    }
    
    .shop-toolbar__sort select {
        min-width: 100px;
        padding: 8px 24px 8px 20px;
        font-size: 10px;
        border-radius: 8px;
    }
    
    .shop-toolbar__sort .woocommerce-ordering::before {
        right: 6px;
        font-size: 12px;
    }
    
    .shop-toolbar__sort .woocommerce-ordering::after {
        left: 6px;
        width: 12px;
        height: 12px;
    }
    
    /* Active Filters */
    .shop-active-filters {
        gap: 5px;
        margin-bottom: 12px;
    }
    
    .shop-active-filter {
        padding: 5px 8px;
        font-size: 9px;
        border-radius: 5px;
        gap: 4px;
    }
    
    .shop-active-filter i {
        font-size: 10px;
    }
    
    .shop-active-filters__clear {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    /* Products Grid - 2 columns */
    .shop-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Product Card */
    .shop-products .product-card {
        height: auto;
    }
    
    .shop-products .product-card__inner {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.035);
    }
    
    .shop-products .product-card__inner:hover {
        transform: translateY(-4px);
    }
    
    .shop-products .product-card__media {
        padding-top: 130%;
    }
    
    .shop-products .product-card__sale {
        top: 6px;
        right: 6px;
        min-width: 32px;
        height: 20px;
        padding: 0 5px;
        font-size: 9px;
        border-radius: 5px;
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }
    
    .shop-products .product-card__stock {
        padding: 6px 10px;
        font-size: 9px;
        border-radius: 7px;
    }
    
    .shop-products .product-card__info {
        padding: 8px 7px 7px;
    }
    
    .shop-products .product-card__title {
        font-size: 11px;
        margin-bottom: 6px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .shop-products .product-card__title a {
        font-weight: 500;
    }
    
    .shop-products .product-card__bottom {
        gap: 6px;
    }
    
    .shop-products .product-card__price {
        gap: 0;
    }
    
    .shop-products .product-card__price del {
        font-size: 8px;
        opacity: 0.7;
    }
    
    .shop-products .product-card__price ins,
    .shop-products .product-card__price > .woocommerce-Price-amount {
        font-size: 11px;
    }
    
    .shop-products .product-card__price .woocommerce-Price-currencySymbol {
        font-size: 7px;
    }
    
    .shop-products .product-card__cart {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.22);
    }
    
    /* Out of Stock */
    .shop-products .product-outofstock .product-card__stock {
        padding: 5px 8px;
        font-size: 8px;
        border-radius: 6px;
    }
    
    /* Pagination */
    .shop-pagination {
        margin-top: 28px;
    }
    
    .shop-pagination .woocommerce-pagination ul {
        padding: 8px 10px;
        gap: 4px;
        border-radius: 10px;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        min-width: 32px;
        height: 32px;
        font-size: 11px;
        border-radius: 7px;
        padding: 0 6px;
    }
    
    .shop-pagination .woocommerce-pagination ul li .prev,
    .shop-pagination .woocommerce-pagination ul li .next {
        min-width: 28px;
    }
    
    /* Empty State */
    .shop-empty {
        padding: 44px 16px;
        border-radius: 14px;
    }
    
    .shop-empty__icon {
        width: 72px;
        height: 72px;
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .shop-empty__title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .shop-empty__text {
        font-size: 12px;
        margin-bottom: 16px;
        line-height: 1.6;
    }
    
    .shop-empty__btn {
        padding: 11px 20px;
        font-size: 12px;
        border-radius: 9px;
        gap: 6px;
    }
    
    .shop-empty__btn i {
        font-size: 16px;
    }
}

/* ================================
   RTL Support - Complete
   ================================ */
[dir="rtl"] .shop-hero__breadcrumbs .breadcrumbs li:not(:last-child)::after {
    margin-right: 0;
    margin-left: 4px;
}

[dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::before {
    right: auto;
    left: 14px;
}

[dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::after {
    left: auto;
    right: 14px;
}

[dir="rtl"] .shop-toolbar__sort select {
    padding: 12px 40px 12px 44px;
}

[dir="rtl"] .shop-filter__price-range {
    right: auto;
    left: auto;
}

[dir="rtl"] .shop-filter__category-count {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .shop-active-filters__clear {
    margin-right: 0;
    margin-left: auto;
}

/* RTL Mobile Responsive */
@media (max-width: 991px) {
    [dir="rtl"] .shop-toolbar__sort select {
        padding: 11px 34px 11px 38px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::before {
        right: auto;
        left: 10px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::after {
        left: auto;
        right: 10px;
    }
}

@media (max-width: 767px) {
    [dir="rtl"] .shop-toolbar__sort select {
        padding: 10px 28px 10px 32px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::before {
        right: auto;
        left: 10px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::after {
        left: auto;
        right: 10px;
    }
}

@media (max-width: 575px) {
    [dir="rtl"] .shop-toolbar__sort select {
        padding: 9px 24px 9px 28px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::before {
        right: auto;
        left: 8px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::after {
        left: auto;
        right: 8px;
    }
}

@media (max-width: 399px) {
    [dir="rtl"] .shop-toolbar__sort select {
        padding: 8px 20px 8px 24px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::before {
        right: auto;
        left: 6px;
    }
    
    [dir="rtl"] .shop-toolbar__sort .woocommerce-ordering::after {
        left: auto;
        right: 6px;
    }
}

/* ================================
   Accessibility
   ================================ */
@media (prefers-reduced-motion: reduce) {
    .shop-hero__shape,
    .shop-filter,
    .shop-filter-dropdown,
    .shop-filter-dropdown__panel,
    .shop-filter-dropdown__chevron,
    .shop-filter-overlay,
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-empty__btn,
    .product-card__inner,
    .product-card__image,
    .product-card__cart,
    .shop-active-filter,
    .shop-toolbar__sort select {
        animation: none !important;
        transition: none !important;
    }
    
    .shop-filter-dropdown__panel {
        max-height: none;
    }
    
    .shop-filter-dropdown--open .shop-filter-dropdown__panel {
        max-height: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .shop-products .product-card__inner {
        border: 2px solid #333;
    }
    
    .shop-filter-dropdown__btn {
        border: 2px solid #000;
    }
    
    .shop-toolbar {
        border: 1px solid #333;
    }
    
    .shop-pagination .woocommerce-pagination ul li a,
    .shop-pagination .woocommerce-pagination ul li span {
        border: 1px solid #333;
    }
}

/* ================================
   Print Styles
   ================================ */
@media print {
    .shop-page {
        background: #fff !important;
    }
    
    .shop-hero {
        padding: 20px 0;
        background: none !important;
    }
    
    .shop-hero__shapes,
    .shop-hero__wave,
    .shop-hero__overlay,
    .shop-hero__bg,
    .shop-sidebar,
    .shop-filter-dropdown,
    .shop-toolbar__filter-btn,
    .shop-active-filters,
    .shop-pagination,
    .product-card__cart,
    .shop-empty__btn {
        display: none !important;
    }
    
    .shop-layout {
        display: block;
    }
    
    .shop-products {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .shop-products .product-card__inner {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
    
    .shop-hero__title {
        color: #000 !important;
    }
    
    .shop-hero__description {
        color: #333 !important;
    }
}
