/* ===== SHOP HERO SECTION ===== */
.shop-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.shop-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.shop-hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 100px 0 60px;
    }
    
    .shop-hero-title {
        font-size: 2.5rem;
    }
    
    .shop-hero-description {
        font-size: 1rem;
    }
}
/* ===== End SHOP HERO SECTION ===== */

/* ===== SHOP FILTERS SECTION ===== */
.shop-filters {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.filter-bar {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 0.9rem;
    min-width: 150px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }
    
    .filter-select {
        min-width: auto;
        width: 100%;
    }
}
/* ===== End SHOP FILTERS SECTION ===== */

/* ===== SHOP PRODUCTS SECTION ===== */
.shop-products {
    padding: 60px 0;
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.product-code {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0 1rem 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.product-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* Product filtering states */
.product-card.hidden {
    display: none;
}

/* Loading state */
.products-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 768px) {
    .shop-products {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* ===== End SHOP PRODUCTS SECTION ===== */

/* ===== SHOP NAVIGATION ACTIVE STATE ===== */
.nav-link.active {
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1a1a1a;
}
/* ===== End SHOP NAVIGATION ACTIVE STATE ===== */

/* ===== SHOPPING CART STYLES ===== */
.cart-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.cart-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    color: white;
}

.cart-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.cart-btn.cart-highlighted {
    background: var(--accent-color);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.6);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 20px rgba(201, 169, 110, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(201, 169, 110, 0.8);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 0 20px rgba(201, 169, 110, 0.6);
        transform: scale(1);
    }
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-cart-btn:hover {
    color: var(--secondary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 2rem;
}

.empty-cart-message {
    text-align: center;
    color: #666;
    margin: 2rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cart-item-code {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cart-item-remove:hover {
    background: #fff5f5;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.cart-total {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.checkout-btn:disabled:hover {
    background: #ccc;
    transform: none;
}

.add-to-cart-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Order Modal Styles */
.order-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.order-summary h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.order-item:last-child {
    border-bottom: none;
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--secondary-color);
}

.order-total-display {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.booking-form button {
    margin: 0.5rem 0;
}

/* Cart item highlight animation */
.cart-item.newly-added {
    background: #fff8e1;
    border: 2px solid var(--secondary-color);
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% { 
        background: var(--secondary-color);
        transform: scale(1.02);
    }
    50% { 
        background: #fff8e1;
    }
    100% { 
        background: white;
        transform: scale(1);
        border: 1px solid var(--border-light);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 1.5rem;
    }
    
    .cart-items {
        padding: 1rem 1.5rem;
    }
    
    .cart-footer {
        padding: 1.5rem;
    }
    
    .cart-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
/* ===== End SHOPPING CART STYLES ===== */
