.whisky-page {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.whisky-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), 
                linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 100%), /* Amber tint */
                url('assets/whisky-hero-new.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: white;
    position: relative;
    overflow: hidden;
}

.whisky-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.whisky-hero > * {
    position: relative;
    z-index: 2;
}

.whisky-hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.whisky-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.products-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(var(--text-color-rgb), 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--text-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: rgba(var(--text-color-rgb), 0.06);
}

.product-image {
    width: 260px;
    height: 380px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: transform 0.6s ease;
    border-radius: 4px;
}

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

.product-info h2 {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-meta {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 20px;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 30px;
    min-height: 80px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.btn-add {
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-add:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .whisky-hero h1 {
        font-size: 3rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}
