/* High-End Shop Page Styles */
.shop-hero {
    background: #111;
    padding: 100px 0 60px;
    border-bottom: 1px solid #222;
    color: #fff;
    text-align: center;
}

.shop-hero-tag {
    font-size: 0.8rem;
    color: #b8924f;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.shop-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.shop-hero-subtitle {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto 30px;
}

.shop-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.sh-stat strong {
    display: block;
    font-size: 1.8rem;
    color: #b8924f;
}

.sh-stat span {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Base Shop Layout */
.shop-section {
    padding: 80px 0;
    background: #fff;
}

.shop-container {
    display: flex;
    gap: 50px;
}

/* Sidebar Filters */
.shop-sidebar {
    flex: 0 0 280px;
}

.filter-group {
    margin-bottom: 40px;
}

.filter-group-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0ece5;
}

.filter-check {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.filter-check:hover {
    color: #b8924f;
}

.filter-input {
    margin-right: 10px;
}

/* Premium Product Grid */
.shop-content {
    flex: 1;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ece5;
}

.results-count {
    color: #888;
    font-size: 0.9rem;
}

.sort-select {
    padding: 10px 20px;
    border: 1px solid #f0ece5;
    background: #fff;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card-premium {
    background: #fff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0ece5;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e5dfd5;
}

.image-container {
    position: relative;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-premium:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.7rem;
    color: #b8924f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.product-name {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.3;
    min-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-meta {
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.old-price {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

/* Premium Add to Cart Button */
.product-actions-footer {
    margin-top: auto;
}

.btn-add-to-cart-premium {
    width: 100%;
    padding: 14px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-add-to-cart-premium:hover {
    background: #b8924f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(184, 146, 79, 0.2);
}

.btn-add-to-cart-premium i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-add-to-cart-premium:hover i {
    transform: translateY(-2px);
}

/* Global Notifications Styling */
.global-notifications {
    position: fixed;
    top: 90px;
    right: 30px;
    z-index: 10000;
    min-width: 320px;
    max-width: 450px;
    pointer-events: none;
}

.alert {
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 20px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    border-left: 4px solid #1a1a1a;
    animation: slideInRight 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.alert-success {
    border-left-color: #b8924f;
}

.alert-danger {
    border-left-color: #e74c3c;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-content i {
    font-size: 1.2rem;
}

.alert-success i {
    color: #b8924f;
}

.alert-danger i {
    color: #e74c3c;
}

.alert-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.btn-close:hover {
    color: #1a1a1a;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rest of the styles... */

/* Modal Designing */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    border-radius: 4px;
    position: relative;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.modal-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.modal-price-text {
    font-size: 2.2rem;
    color: #b8924f;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #b8924f;
}

.hero-decorative-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 146, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.btn-clear-premium {
    width: 100%;
    padding: 12px;
    background: #f9f9f9;
    border: 1px solid #f0ece5;
    color: #888;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-clear-premium:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.check-label {
    transition: all 0.3s;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .shop-container {
        flex-direction: column;
    }

    .shop-hero-title {
        font-size: 2.5rem;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        height: 100vh;
        z-index: 10001;
        background: #fff;
        padding: 40px 30px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    }

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

    .sidebar-close {
        display: block;
    }

    .mobile-filter-toggle {
        display: block;
        position: sticky;
        top: 70px;
        z-index: 100;
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #f0ece5;
        text-align: center;
    }

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}