/* shopping/css/shop.css */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

.hero-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
}

.hero-slider img, 
.hero-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list li a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.category-list li a:hover {
    color: #fd3232;
    font-weight: 600;
}

.section-title {
    font-weight: 800;
    font-size: 1.5rem;
}

.product-card {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-img {
    height: 220px;
    object-fit: cover;
    background: #f8f9fa;
}

.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    font-weight: 600;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.price-container {
    margin-top: auto;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
}

.final-price {
    font-weight: 800;
    font-size: 1.2rem;
    color: #333;
}

.discount-percent {
    color: #fd3232;
    margin-right: 5px;
}

.admin-header {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 30px;
}