/* Content Sections Styles */
.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* SEO Content Section */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.content-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;
}

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

.content-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.content-card h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.content-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card strong {
    color: var(--primary-gold);
    font-weight: 500;
}

/* Brands Preview Section */
.brands-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.brand-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;
}

.brand-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;
}

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

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

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

.rating {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.brand-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.section-dark {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0F0F0F 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 200;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-gold);
}

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

.process-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;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.process-card:hover::before {
    opacity: 1;
}

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

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.process-card p {
    line-height: 1.8;
    opacity: 0.8;
}

/* Brands Showcase */
.brands-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) rgba(255, 255, 255, 0.1);
}

.brand-card {
    min-width: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    padding: 30px;
    scroll-snap-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.brand-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.brand-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.brand-card p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 10px;
}

.price-tag {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: var(--primary-gold);
    font-weight: 500;
}

/* Tasting Notes */
.tasting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.taste-card {
    text-align: center;
    padding: 30px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.taste-card:hover {
    background: rgba(30, 58, 95, 0.2);
    transform: translateY(-5px);
}

.taste-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.taste-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
    font-weight: 400;
}
