/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : May 26, 2026, 3:21:08 PM
    Author     : lehan
*/
/* Màu nền tổng thể cho Shop giống hình */
.shop-body-wrapper {
    background: transparent !important; /* Thêm !important */
    color: #FFFFFF;
    font-family: 'Be Vietnam Pro', sans-serif;
    padding-bottom: 80px;
    padding-top: 1px; 
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tiêu đề chính */
.shop-main-title {
    font-family: 'Playfair Display', serif; /* Font có chân giống thiết kế */
    font-size: 80px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
    margin: 40px 0;
    color: #FFFFFF;
}

/* Hero Banner (Best of the Week) */
.shop-hero-card {
    background: linear-gradient(135deg, rgba(59, 24, 95, 0.8) 0%, rgba(21, 14, 86, 0.8) 100%);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero-content p { color: #ccc3d8; font-size: 16px; max-width: 400px; margin-bottom: 32px; }

/* Search & Categories */
.shop-filter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.shop-search-bar {
    width: 100%;
    max-width: 600px;
    background: #1D153B;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 16px 24px;
    color: white;
    font-size: 16px;
    margin-bottom: 24px;
}

.shop-category-chips {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}
.chip-btn:hover, .chip-btn.active {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Section Title */
.shop-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.shop-section-title { font-size: 32px; font-weight: 700; }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Product Card */
.product-card {
    background: #1D153B;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-5px); }

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.product-info { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.product-title { font-size: 18px; font-weight: 700; text-transform: uppercase; }
.product-price { font-size: 18px; font-weight: 700; color: #d2bbff; }
.product-desc { font-size: 12px; color: #ccc3d8; margin-bottom: 20px; line-height: 1.4; }

/* Nút bấm trong Card */
.card-actions {
    display: flex;
    gap: 8px;
}
.btn-card {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-dark { background: #2A1F4C; color: white; border: none; }
.btn-white { background: white; color: black; border: none; }
