/* Product Hero Section */
.products-hero {
    /* background: linear-gradient(rgba(10, 26, 58, 0.8), rgba(10, 26, 58, 0.8)),
                url('../img/product-hero.jpg'); */
    background: linear-gradient(rgba(10, 26, 58, 0.7), rgba(10, 26, 58, 0.7)),
        url('/img/products/product-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Compact Product Cards */
.product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    margin-bottom: 25px;
    position: relative;
}

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

.product-img-container {
    height: 180px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 3px 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.7rem;
    z-index: 2;
}

.product-body {
    padding: 15px;
    background: white;
}

.product-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin: 10px 0 5px;
    transition: color 0.3s ease;
    color: var(--primary-navy);
}

.product-card:hover .product-title {
    color: var(--accent-gold);
}

.product-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    min-height: 40px;
}

/* Category Tabs */
.p-nav-pills .p-nav-link {
    color: var(--primary-navy);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 30px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.p-nav-pills .p-nav-link.active {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.p-nav-pills .p-nav-link:not(.active):hover {
    background: rgba(212, 175, 55, 0.1);
}

/* SweetAlert customization */
.swal2-popup {
    border-radius: 0 !important;
    font-family: inherit !important;
}

.swal2-title {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
}

.swal2-close {
    font-size: 1.8rem !important;
    color: #666 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-img-container {
        height: 150px;
    }
}
