.shop-page {
    padding: var(--spacing-lg) 0 var(--spacing-2xl);
    background-color: var(--color-white);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
    font-family: var(--font-body);
    font-size: 20px;
    color: #141414;
    font-weight: 500;
}

.breadcrumbs a,
.breadcrumbs .current {
    color: #141414;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs .separator {
    color: #141414;
    margin: 0 5px;
    font-weight: 400;
}

/* Filters */
.shop-filters {
    margin-bottom: 50px;
}

.filter-pills-row {
    margin-top: 15px;
    padding-bottom: 15px;
    /* More space for scroll */
    width: 100%;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
    /* Momentum scroll for iOS */
    scrollbar-width: none;
    /* Firefox */
}

.filter-pills-row::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.filter-pills-container {
    display: flex;
    gap: 12px;
    padding: 0 5px;
    width: max-content;
    /* Force width to match content */
    min-width: 100%;
}

.filter-pill {
    padding: 12px 28px;
    background: #EEEEEE;
    /* Light gray as per image */
    border: none;
    border-radius: 25px;
    font-family: var(--font-interface);
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill.active {
    background: #333333;
    /* Darker/Black for active "Filter" */
    color: #FFFFFF;
}

/* Energy Filter Section */
.energy-filter-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.energy-filter-section .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.energy-filter-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    overflow-x: auto;
    padding: 10px 10px 25px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.energy-filter-grid::-webkit-scrollbar {
    display: none;
}

.energy-filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 100px;
    position: relative;
    user-select: none;
}

.energy-icon-circle {
    width: 84px;
    height: 84px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.energy-filter-item:hover {
    transform: translateY(-8px);
}

.energy-filter-item:hover .energy-icon-circle {
    border-color: #CDAF71;
    color: #CDAF71;
    box-shadow: 0 15px 30px rgba(205, 175, 113, 0.2);
}

.energy-filter-item.active .energy-icon-circle {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.energy-icon-circle i {
    font-size: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.energy-filter-item:hover .energy-icon-circle i {
    transform: scale(1.15) rotate(5deg);
}

.energy-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.energy-filter-item:hover .energy-label {
    color: #1a1a1a;
}

.energy-filter-item.active .energy-label {
    font-weight: 700;
    color: #1a1a1a;
}

.energy-filter-item.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 3px;
    background: #CDAF71;
    border-radius: 2px;
}

/* Base Filter Row Adjustment */
.filter-controls {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    max-width: 1239px;
    margin: 0;
}

.filters-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 1px;
    gap: 16px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.actions-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.filter-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#filter-more {
    padding: 12px 24px;
    width: auto;
    min-width: 160px;
    height: 48px;
    border: 1.5px solid #F0F0F0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: space-between;
    background: #FFFFFF;
    position: relative;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

#filter-more:hover {
    background-color: #f8f8f8;
    border-color: #333;
}

#filter-more .active-count {
    background: #CDAF71;
    color: #FFF;
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Side Drawer Styles */
.filters-drawer {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100%;
    background: #FFFFFF;
    z-index: 100000;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.filters-drawer.active {
    left: 0;
}

.drawer-header {
    padding: 24px 30px;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 0;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.filter-section {
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Option Chips */
.option-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-chip {
    cursor: pointer;
}

.option-chip input {
    display: none;
}

.option-chip span {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #FFF;
}

.option-chip input:checked+span {
    background: #333;
    color: #FFF;
    border-color: #333;
}

/* Custom Radio List */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.custom-radio input {
    width: 18px;
    height: 18px;
    accent-color: #CDAF71;
}

.radio-label {
    font-size: 15px;
    color: #333;
}

/* Drawer Footer */
.drawer-footer {
    padding: 24px 30px;
    border-top: 1px solid #F0F0F0;
    display: flex;
    gap: 15px;
}

.btn-apply {
    flex: 1;
    background: #333;
    color: #FFF;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-clear-all {
    flex: 1;
    background: #F5F5F5;
    color: #333;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 640px) {
    .filters-drawer {
        width: 100%;
        left: -100%;
    }
}

#filter-categories,
#filter-elements,
#filter-color,
#filter-sort {
    position: relative;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#filter-categories {
    width: 270px;
    height: 48px;
    background: #F9F9F8;
    border: 1.5px solid #F0F0F0;
}

#filter-elements {
    width: 230px;
    height: 48px;
    background: #FBFBFB;
    border: 1.5px solid #F0F0F0;
}

#filter-color {
    width: 250px;
    height: 48px;
    background: #FBFBFB;
    border: 1.5px solid #F0F0F0;
}

#filter-sort {
    width: 200px;
    height: 48px;
    background: #1A1A1A;
    border: 1.5px solid #1A1A1A;
}

#filter-categories:hover,
#filter-elements:hover,
#filter-color:hover {
    border-color: #CDAF71;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#filter-sort:hover {
    background: #333333;
    border-color: #333333;
}

/* Gems Specific Filter Arrangement */
#filter-intention {
    width: 280px;
    background: #F9F9F8;
    border: 1px solid rgba(176, 176, 176, 0.24);
    height: 48px;
    padding: 0 15px;
}

#gem-filter-color,
#gem-filter-shape,
#gem-filter-size {
    width: 140px;
    background: #FBFBFB;
    border: 1px solid rgba(176, 176, 176, 0.24);
    height: 48px;
    padding: 0 15px;
}

#gem-filter-shape {
    width: 160px;
}

#gem-filter-size {
    width: 110px;
}

.filter-action .btn-clear {
    width: 150px;
    height: 48px;
    border-radius: 8px;
    font-weight: 500;
}

/* Mineral Specific Filter Arrangement */
#mineral-filter-finish {
    width: 170px;
}

#mineral-filter-size {
    width: 160px;
}

#mineral-filter-shape {
    width: 175px;
}

#mineral-filter-family {
    width: 180px;
}

#mineral-filter-finish,
#mineral-filter-size,
#mineral-filter-shape,
#mineral-filter-family {
    background: #FBFBFB;
    border: 1px solid rgba(176, 176, 176, 0.24);
    height: 48px;
    padding: 0 15px;
}

/* Jewelry Specific Filter Arrangement */
#jewelry-filter-type {
    width: 170px;
}

#jewelry-filter-stone {
    width: 150px;
}

#jewelry-filter-metal {
    width: 180px;
}

#jewelry-filter-color {
    width: 130px;
}

#jewelry-filter-size {
    width: 130px;
}

#jewelry-filter-type,
#jewelry-filter-stone,
#jewelry-filter-metal,
#jewelry-filter-color,
#jewelry-filter-size {
    background: #FBFBFB;
    border: 1px solid rgba(176, 176, 176, 0.24);
    height: 48px;
    padding: 0 15px;
}

/* Oil Specific Filter Arrangement */
#oil-filter-intention {
    width: 170px;
}

#oil-filter-ingredients {
    width: 150px;
}

#oil-filter-scent {
    width: 160px;
}

#oil-filter-volume {
    width: 110px;
}

#oil-filter-application {
    width: 140px;
}

#oil-filter-intention,
#oil-filter-ingredients,
#oil-filter-scent,
#oil-filter-volume,
#oil-filter-application {
    background: #FBFBFB;
    border: 1px solid rgba(176, 176, 176, 0.24);
    height: 48px;
    padding: 0 15px;
}

.select-filter {
    position: relative;
    padding: 0 !important;
    /* Move padding to select for better click area */
    display: flex;
    align-items: center;
}

.select-filter::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' 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-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: transform 0.3s ease;
}

#filter-sort::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' 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");
}

.select-filter:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.select-filter select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    outline: none;
    width: 100%;
    height: 100%;
    padding: 0 45px 0 20px;
    z-index: 1;
}

#filter-sort select {
    color: #FFFFFF;
    background-color: #333333;
}

#filter-sort select option {
    background-color: #FFFFFF;
    color: #333333;
}

.btn-clear {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    width: 170px;
    height: 45px;
    background: transparent;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background: #333333;
    color: #FFFFFF;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    font-family: 'Poppins';
    color: #333333;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #333333;
    /* Dark background as shown */
    border: 1px solid #333333;
    border-radius: 4px;
}

.custom-checkbox:hover input~.checkmark {
    border-color: #000;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #333333;
    border-color: #333333;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card-image {
        height: 280px;
    }
}

.product-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(205, 175, 113, 0.3);
}

.product-card a {
    display: block;
    height: auto;
    /* For grid, we keep it auto but block */
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-card-image {
    width: 100%;
    height: 320px;
    background-color: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.badge-new,
.badge-energized {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-new {
    background: #FFFFFF;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-energized {
    background: #FFFFFF;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-top-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
}

.badge-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.wishlist-icon-btn {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.wishlist-icon-btn:hover {
    transform: scale(1.1);
    color: #ef4444;
}

.wishlist-icon-btn.active {
    color: #ef4444;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects Removed */
.card-overlay {
    display: none;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.wishlist-icon-btn.active i {
    animation: pulse 0.3s ease-in-out;
}

.wishlist-btn.active i {
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.product-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #CDAF71;
    font-weight: 600;
}

.rating-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #f59e0b;
    font-weight: 500;
}

.product-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Product Actions (Buy + Add to Cart Icon) */
.product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
}

.btn-buy {
    flex: 1;
    background: #CDAF71;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background: #b69a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(182, 154, 90, 0.2);
}

.btn-add-cart-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-add-cart-icon:hover {
    background: #f8fafc;
    border-color: #CDAF71;
    color: #CDAF71;
    transform: translateY(-2px);
}

.btn-add-cart-icon svg {
    width: 20px;
    height: 20px;
}

/* No Products Found */
.no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #f8fafc;
    border-radius: 32px;
    border: 2px dashed #e2e8f0;
}

.no-products-found img {
    width: 200px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.no-products-found h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.no-products-found p {
    color: #64748b;
    margin-bottom: 24px;
}

/* Skeleton Loading */
.skeleton-card {
    background: #FFF;
    border-radius: 20px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skeleton-img {
    width: 100%;
    height: 320px;
    background: #f1f5f9;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.skeleton-text {
    height: 16px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.title {
    height: 24px;
    width: 90%;
}

.skeleton-img::after,
.skeleton-text::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: skeleton-wave 1.5s infinite;
}

@keyframes skeleton-wave {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Shop Overrides */
@media (max-width: 1024px) {

    .filters-group #filter-categories,
    .filters-group #filter-elements,
    .filters-group #filter-color {
        display: none;
        /* Hide individual filters in favor of More Filters drawer */
    }

    .filter-controls {
        justify-content: space-between;
        align-items: center;
    }

    .actions-group {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .shop-page {
        padding: 20px 0 60px;
    }

    .energy-filter-section {
        padding: 24px 16px;
        margin: 20px 0;
    }

    .energy-filter-grid {
        gap: 16px;
        justify-content: flex-start;
    }

    .energy-icon-circle {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .shop-filters {
        margin-bottom: 30px;
    }

    .filter-controls {
        flex-direction: column;
        gap: 16px;
    }

    .filters-group,
    .actions-group {
        width: 100%;
        justify-content: space-between;
    }

    #filter-more,
    #filter-sort {
        flex: 1;
        min-width: 0;
    }

    .btn-clear {
        width: auto !important;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .header-main-row {
        gap: 10px;
    }

    .logo-section .site-logo {
        height: 40px;
    }

    .header-actions {
        gap: 10px;
    }

    .filter-pills-container {
        padding: 0 4px;
    }

    /* Mobile Search Row Styles */
    .mobile-search-row {
        margin: 10px 0;
        width: 100%;
    }

    .mobile-search-form {
        display: flex;
        align-items: center;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 0 16px;
        height: 48px;
        transition: all 0.3s ease;
    }

    .mobile-search-form:focus-within {
        border-color: #CDAF71;
        background: #FFF;
        box-shadow: 0 4px 12px rgba(205, 175, 113, 0.1);
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        font-size: 15px;
        outline: none;
        color: #1a1a1a;
    }

    .mobile-search-submit {
        background: none;
        border: none;
        color: #64748b;
        font-size: 16px;
        padding-left: 10px;
    }

    .filter-pill {
        padding: 8px 16px;
        font-size: 13px;
    }
}