/* Products Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue), var(--navy));
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: 'Anton', sans-serif;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Products Grid Section */
.products-grid-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

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

.product-image {
    background: var(--light-gray);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.product-badge.bestseller {
    background: var(--gold);
    color: var(--black);
}

.product-card-info {
    padding: 2rem;
}

.product-card-title {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    min-height: 3rem;
}

.product-card-desc {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 5rem;
}

.product-price-display {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.compare-at {
    font-size: 1.2rem;
    color: var(--dark-gray);
    text-decoration: line-through;
    margin-left: 0.75rem;
    font-weight: 600;
}

/* Hero Product Section */
.hero-product-section {
    padding: 4rem 2rem 0;
    background: var(--light-gray);
}

.hero-product-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-blue), var(--navy));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--gold), #FFC107);
    color: var(--black);
    padding: 0.7rem 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 5;
    animation: pulse 2s infinite;
}

.hero-product-image {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-product-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.hero-product-info {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-product-info h2 {
    font-size: 2.2rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hero-product-info .product-stars {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.hero-product-info .product-card-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-product-info .hero-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.3rem;
}

.hero-product-info .hero-compare {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-left: 1rem;
}

.hero-cta {
    margin-top: 1.5rem;
}

/* Category Section Headers */
.category-section-header {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    margin-top: 1rem;
}

.category-section-header h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    font-family: 'Anton', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
}

.category-section-header .cat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.3rem;
}

.category-section-header .cat-desc {
    color: var(--dark-gray);
    font-size: 1rem;
}

/* Bundles Section */
.bundles-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.bundle-card {
    background: var(--light-gray);
    border: 3px solid var(--primary-orange);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}

.bundle-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.bundle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success), #00AA00);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 10;
}

.bundle-image {
    background: var(--white);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-combo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.combo-icon {
    font-size: 4rem;
}

.combo-plus {
    font-size: 2.5rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.bundle-info {
    padding: 2.5rem;
}

.bundle-info h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.bundle-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.bundle-includes li {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 2;
    border-bottom: 1px solid var(--medium-gray);
    padding: 0.5rem 0;
}

.bundle-includes li:last-child {
    border-bottom: none;
}

.bundle-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bundle-original {
    font-size: 1.4rem;
    color: var(--dark-gray);
    text-decoration: line-through;
}

.bundle-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-combo {
        flex-direction: column;
    }
    
    .combo-plus {
        transform: rotate(90deg);
    }
}
