/* Shop Page Styles */
:root {
    --primary-light: #9BB7D4;
    --primary: #3D5E8C;
    --dark: #27272A;
    --light-bg: #F8F8F8;
    --white: #FFFFFF;
    --border-color: rgba(39, 39, 42, 0.1);
    --border-radius: 30px;
    --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Header and Layout */
.shop-header {
    padding: 80px 0 60px;
    text-align: center;
    background-color: var(--light-bg);
}

.shop-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
}

.shop-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--dark);
    opacity: 0.8;
}

.shop-content {
    padding: 60px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Filters Sidebar */
.shop-filters {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px);
    max-height: 800px;
}

.filters-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    &::-webkit-scrollbar {
        width: 4px;
    }
    
    &::-webkit-scrollbar-track {
        background: var(--light-bg);
        border-radius: 10px;
    }
    
    &::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 10px;
    }
    
    /* IE and Edge */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--light-bg);
}

.filter-button-container {
    margin-top: 20px;
}

.filter-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.filters-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 20px;
    display: none;
}

.filter-group {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.filter-group:last-of-type {
    border-bottom: none;
}

/* Filter Header (Accordion) */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.filter-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-icon {
    transition: var(--transition);
}

.filter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-group:first-of-type .filter-header {
    padding-top: 0;
}

.filter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin: 0;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 10px;
}

.filter-item {
    margin-bottom: 12px;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark);
    position: relative;
    padding-left: 34px;
}

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

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 1.5px solid var(--dark);
    background-color: transparent;
}

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

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

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

.filter-label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-text {
    font-size: 16px;
}

/* Subcategories Styling */
.subcategories-container {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.subcategories-container.open {
    display: block;
}

.filter-subcategory .filter-item {
    margin-bottom: 10px;
}

.filter-subsubcategory {
    padding-left: 15px;
}

.toggle-subcategories {
    margin-left: auto;
    width: 16px;
    height: 16px;
    position: relative;
    cursor: pointer;
}

.toggle-subcategories:before,
.toggle-subcategories:after {
    content: '';
    position: absolute;
    background-color: var(--dark);
    transition: var(--transition);
}

.toggle-subcategories:before {
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
}

.toggle-subcategories:after {
    top: 2px;
    left: 7px;
    width: 2px;
    height: 12px;
}

.toggle-subcategories.open:after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Price Range */
.price-range {
    padding: 10px 5px 0;
}

.range-slider {
    position: relative;
    height: 6px;
    margin: 20px 0;
}

.range-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 3px;
    background-color: var(--border-color);
}

.range-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 3px;
    background-color: var(--primary);
}

.range-input {
    position: absolute;
    top: -8px;
    width: 100%;
    height: 20px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--dark);
    margin-top: 15px;
}

.range-value-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.range-value-input {
    width: 70px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    color: var(--dark);
}

.range-value-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Remove arrows from number inputs */
.range-value-input::-webkit-outer-spin-button,
.range-value-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.range-value-input[type=number] {
    -moz-appearance: textfield;
}

/* Color Filter */
.color-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
}

.color-option {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.color-option:hover, .color-option.active {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-option.active:after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 2px solid var(--white);
}

/* Filter Buttons */
.filter-apply-btn, .filter-reset-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.filter-apply-btn {
    background-color: var(--primary);
    color: var(--white);
    margin-bottom: 10px;
}

.filter-apply-btn:hover {
    background-color: var(--dark);
}

.filter-reset-btn {
    background-color: var(--light-bg);
    color: var(--dark);
}

.filter-reset-btn:hover {
    background-color: var(--border-color);
}

/* Mobile filter action button */
.mobile-filter-action {
    display: none;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%);
    z-index: 5;
}

.mobile-filter-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Products Controls */
.products-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sort-options, .display-count {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label, .display-count label {
    font-size: 16px;
    color: var(--dark);
}

/* Custom Select Style */
.custom-select {
    position: relative;
    min-width: 150px;
}

.sort-select, .count-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 40px 10px 16px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    background-color: var(--white);
    cursor: pointer;
    color: var(--dark);
    width: 100%;
    display: none;
}

.select-selected {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 10px 40px 10px 16px;
    cursor: pointer;
    font-size: 15px;
    color: var(--dark);
}

.select-selected:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: translateY(-70%) rotate(45deg);
    transition: var(--transition);
}

.select-selected.select-arrow-active:after {
    transform: translateY(-30%) rotate(-135deg);
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: 15px;
    margin-top: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.select-hide {
    display: none;
}

.select-items div {
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.select-items div:first-child {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.select-items div:last-child {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.select-items div:hover, .same-as-selected {
    background-color: var(--primary-light);
    color: var(--white);
}

/* Products Grid View */
.products-view {
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    max-width: 100%; /* Ensure image doesn't overflow parent */
}

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

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-badge.new {
    background-color: var(--primary);
}

.product-badge.sale {
    background-color: #e74c3c;
}

.product-badge.bestseller {
    background-color: #2ecc71;
}

.product-badge.premium {
    background-color: #f39c12;
}

.product-badge.last-items {
    background-color: #9b59b6;
}

.product-actions {
    display: none;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-rating {
    display: none;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 16px;
    font-weight: 400;
    position: absolute;
    top: -22px;
    left: 0;
    font-family: 'Cormorant Garamond', serif;
    width: 100px;
}

.current-price {
    color: #e74c3c;
}

.product-buttons {
    display: flex;
    height: 42px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 21px;
}

.product-btn-shop {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    position: relative;
    color: var(--primary);
    border: none;
    background: transparent;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
}

.veska-cart-btn {
    /* border-right is removed as per user's changes */
}

.veska-cart-btn:hover,
.veska-view-btn:hover {
    color: #fff;
}

.product-btn-shop:hover::before {
    transform: translateY(-2px);
}

.product-btn-shop:hover .btn-icon {
    filter: invert(1);
}


.product-btn-shop::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.product-btn-shop.right::before {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
}

.product-btn-shop.left::before {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

/* List view button */
.veska-product-btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--dark);
    color: var(--white);
    border-radius: 21px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.veska-product-btn-shop:hover {
    color: var(--white);
}

.veska-product-btn-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.veska-product-btn-shop:hover::before {
    transform: translateY(0);
}

.veska-product-btn-shop .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

/* Products List View */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-list-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 25px;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 250px;
}

.product-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-list-img {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-list-item:hover .product-list-img img {
    transform: scale(1.05);
}

.product-list-img .product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-list-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-list-content .product-title {
    font-size: 22px;
    margin-top: 5px;
    height: auto;
    margin-bottom: 10px;
}

.product-list-content .product-category {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-list-content .product-rating {
    display: none;
}

.product-description {
    color: var(--dark);
    opacity: 0.8;
    margin: 10px 0 20px;
    line-height: 1.6;
}

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

.product-list-footer .product-price {
    font-size: 22px;
}

.product-list-footer .product-btn-shop {
    width: auto;
    padding: 12px 30px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 60px;
}

.page-link, .page-btn, .page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
}

.page-link, .page-btn {
    border: 1px solid var(--border-color);
    background-color: var(--white);
}

.page-link:hover, .page-btn:hover, .page-link.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-link.active {
    font-weight: 500;
}

.page-btn svg path {
    transition: var(--transition);
}

.page-btn:hover svg path {
    stroke: var(--white);
}

.page-dots {
    cursor: default;
}

/* Mobile Filter Toggle Button */
.filter-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 90;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Filters Overlay for Mobile */
.filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 95;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    /* Prevent products from overflowing their container */
    .products-view {
        max-width: 100%;
        overflow: hidden;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        max-width: 100%;
    }
    
    .shop-filters {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 1001;
        overflow: hidden;
        padding: 20px 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-width: 100%;
        margin-bottom: 0;
        height: 100%;
        max-height: none;
    }
    
    .shop-filters.active {
        transform: translateX(0);
    }
    
    .filter-close {
        display: none; /* Hide X button, using bottom action button instead */
    }
    
    .filters-title {
        display: block;
        text-align: center;
        padding-top: 15px;
    }
    
    .filter-toggle {
        display: flex;
    }
    
    .filters-scroll-area {
        height: calc(100% - 140px);
        padding-bottom: 20px;
    }
    
    .filter-button-container {
        display: none;
    }
    
    .mobile-filter-action {
        display: block;
    }
    
    .filter-content {
        max-height: unset;
        display: block;
    }
    
    .filter-header {
        padding: 15px 0;
    }
    
    .filter-header .accordion-icon {
        display: none;
    }
    
    .filter-group {
        width: 100%;
        padding-bottom: 15px;
    }
    
    .filter-list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Fix subcategories on mobile */
    .filter-list.filter-subcategory,
    .filter-list.filter-subsubcategory {
        display: block;
        flex-wrap: nowrap;
        gap: 0;
    }
    
    .subcategories-container {
        width: 100%;
        padding-left: 34px;
    }
    
    .filter-item {
        margin-bottom: 0;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
        max-width: 100%; /* Ensure grid doesn't overflow container */
    }
    
    .product-list-item {
        grid-template-columns: 1fr;
    }
    
    .product-list-img {
        aspect-ratio: 16 / 9;
    }
    
    .products-controls {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    
    .view-options {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    /* Fix product cards on mobile */
    .product-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-img-container {
        max-width: 100%;
        width: 100%;
    }
    
    .product-title {
        font-size: 18px;
        max-height: 2.6em;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-price {
        font-size: 16px;
    }

    .old-price {
        font-size: 14px;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        display: inline-block;
    }
    
    .product-buttons {
        height: 38px;
    }
    
    .product-btn-shop {
        font-size: 13px;
        gap: 5px;
    }

    .price-container {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .old-price {
        position: static;
        width: auto;
        text-decoration: line-through;
        color: #777;
        font-size: 14px;
    }
    
    .current-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-card {
        border-radius: 15px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }

    .products-grid {
        gap: 15px;
    }
    
    .product-category {
        font-size: 12px;
    }
    
    .product-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 15px;
    }
}

/* Shop Loader Overlay */
.shop-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.shop-loader-overlay.visible {
    visibility: visible;
    opacity: 1;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

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

.shop-loader-overlay p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
} 