/* Tasting Page Specific Styles */

.tasting-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tasting-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tasting-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.tasting-step:hover::before {
    left: 100%;
}

.tasting-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.step-number {
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: 200;
    margin-bottom: 20px;
    opacity: 0.7;
}

.tasting-step h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.tasting-step p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.flavor-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.flavor-card:hover::before {
    left: 100%;
}

.flavor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.flavor-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.flavor-notes {
    margin-bottom: 20px;
}

.flavor-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.flavor-card p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

.tasting-notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.note-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
}

.note-category h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
}

.note-category ul {
    list-style: none;
    padding: 0;
}

.note-category li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.note-category li:last-child {
    border-bottom: none;
}

.note-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}
