/* ===================================
   SHOP PAGE STYLES
   =================================== */

:root {
    --sidebar-width: 280px;
}

/* Shop Hero Section */
.shop-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.shop-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.shop-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

/* Shop Main Layout with Sidebar */
.shop-main {
    padding: 4rem 0;
    background: var(--bg-light);
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: 3rem;
    align-items: start;
}

/* Sidebar Styles */
.shop-sidebar {
    position: sticky;
    top: 110px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.sidebar-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-accent);
}

.sidebar-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-header i {
    color: var(--gold-accent);
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
}

.category-item i {
    font-size: 1rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.category-item span:first-of-type {
    flex: 1;
}

.category-count {
    background: var(--bg-light);
    color: var(--gray);
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.813rem;
    font-weight: 500;
}

.category-item:hover {
    background: var(--bg-light);
    border-color: var(--gold-accent);
}

.category-item:hover i {
    color: var(--gold-accent);
}

.category-item.active {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: white;
}

.category-item.active i,
.category-item.active .category-count {
    color: white;
    background: rgba(255,255,255,0.2);
}

.sidebar-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.sidebar-section h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-filter-btn {
    padding: 0.625rem 0.875rem;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    color: var(--text-dark);
    text-align: left;
}

.price-filter-btn:hover {
    background: var(--bg-light);
    border-color: var(--gold-accent);
}

.price-filter-btn.active {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: white;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.938rem;
    color: var(--text-dark);
}

/* Shop Content Area */
.shop-content {
    min-height: 600px;
}

.shop-toolbar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.products-count {
    font-size: 0.938rem;
    color: var(--gray);
    white-space: nowrap;
}

.products-count span {
    font-weight: 600;
    color: var(--gold-accent);
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.938rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
}

.sort-select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.938rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.sort-select:focus {
    outline: none;
    border-color: var(--gold-accent);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-light);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray);
    font-size: 1rem;
}

.shop-hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 200;
    letter-spacing: 0.12em;
    opacity: 0.95;
}

/* Filters Section */
.shop-filters {
    padding: 3rem 3rem 2rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 90px;
    z-index: 100;
}

.filters-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filters-left {
    flex: 1;
    min-width: 200px;
}

.filter-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.products-count {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--warm-gray);
    letter-spacing: 0.05em;
}

.filters-right {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--warm-gray);
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: white;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.filter-group {
    position: relative;
}

.filter-select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    appearance: none;
    min-width: 180px;
    transition: var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.filter-group::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--warm-gray);
    font-size: 0.75rem;
}

/* Products Grid */
.shop-products {
    padding: 4rem 3rem;
    background: var(--ivory);
    min-height: 50vh;
}

.products-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product image carousel */
.product-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.product-main-image.active {
    opacity: 1;
    pointer-events: auto;
}

.product-card:hover .product-main-image.active {
    transform: scale(1.08);
}

/* Image navigation dots */
.product-image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.image-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.image-dot.active {
    background: white;
    width: 20px;
    border-radius: 10px;
}

.product-card:hover .product-image-container img {
    /* Removed - now handled per image */
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-accent);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    font-family: var(--font-sans);
}

.product-info {
    padding: 2rem;
}

.product-category {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--gold-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
}

.product-share {
    display: flex;
    gap: 0.5rem;
}

.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ivory);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--warm-gray);
}

.share-icon-btn:hover {
    background: var(--gold-accent);
    color: white;
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--warm-gray);
}

.no-results i {
    font-size: 4rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.no-results p {
    font-size: 1.1rem;
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
}

.product-modal.active {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--charcoal);
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--gold-accent);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-gallery {
    background: var(--ivory);
    padding: 3rem;
}

.gallery-main {
    width: 100%;
    height: 500px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
    background: white;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--gold-accent);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.video-thumb {
    position: relative;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail.video-thumb::before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.5rem;
}

.modal-info {
    padding: 3rem;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-product-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-product-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.modal-stock {
    margin-bottom: 2rem;
}

.stock-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.stock-badge.in-stock {
    background: rgba(184, 149, 106, 0.15);
    color: #8B6F47;
}

.stock-badge.limited {
    background: rgba(245, 158, 11, 0.1);
    color: #D4883E;
}

.stock-badge.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #C44444;
}

.modal-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.modal-description h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.modal-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

.modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.detail-group h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--gold-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-group p {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.modal-care {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--ivory);
    border-radius: 4px;
}

.modal-care h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-care i {
    color: var(--gold-accent);
}

.modal-care p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.modal-share {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.modal-share h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-share i {
    color: var(--gold-accent);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white !important;
    transition: var(--transition-fast);
}

.share-btn i {
    color: white !important;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-pinterest {
    background: #e60023;
}

.share-whatsapp {
    background: #25d366;
}

.share-copy {
    background: var(--charcoal);
}

/* Social Platform Links (View on other platforms) */
.modal-social-links {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.modal-social-links h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-social-links h4 i {
    color: var(--gold-accent);
}

.social-platform-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-link-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: all 0.2s ease;
}

.platform-link-btn:hover {
    border-color: var(--gold-accent);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.platform-link-btn i {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

.platform-link-btn.youtube i { color: #FF0000; }
.platform-link-btn.instagram i { color: #E4405F; }
.platform-link-btn.facebook i { color: #1877F2; }
.platform-link-btn.tiktok i { color: #000000; }
.platform-link-btn.twitter i { color: #1DA1F2; }
.platform-link-btn.ebay i { color: #E53238; }
.platform-link-btn.etsy i { color: #F45800; }
.platform-link-btn.pinterest i { color: #E60023; }
.platform-link-btn.whatsapp i { color: #25D366; }
.platform-link-btn.other i { color: var(--gold-accent); }

.platform-link-btn .external-icon {
    margin-left: auto;
    font-size: 0.9rem;
    color: #9ca3af;
}

.modal-cta {
    display: flex;
    gap: 1rem;
}

.modal-cta .cta-button {
    flex: 1;
    text-align: center;
    padding: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .shop-hero-title {
        font-size: 2.5rem;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-left {
        text-align: center;
    }
    
    .filters-right {
        flex-direction: column;
    }
    
    .search-box,
    .filter-select {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        margin: 1rem;
    }
    
    .modal-gallery,
    .modal-info {
        padding: 2rem 1.5rem;
    }
    
    .modal-product-title {
        font-size: 2rem;
    }
    
    .modal-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-main {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .shop-filters {
        padding: 2rem 1.5rem;
    }
    
    .shop-products {
        padding: 2rem 1.5rem;
    }
    
    .product-image-container {
        height: 300px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
}
