/* ===================================
   BREADCRUMB SECTION
   =================================== */
.breadcrumb-section {
    position: relative;
    height: 300px;
    max-height: 300px;
    background: linear-gradient(135deg, #2C1A11 0%, #5D3A1A 100%);
    background-image: url('../images/promotion-breadcrumb-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 76px;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 26, 17, 0.85), rgba(44, 26, 17, 0.75));
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(253, 251, 247, 0.8);
}

.breadcrumb-item a {
    color: rgba(253, 251, 247, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--accent-gold);
    font-size: 12px;
}

.breadcrumb-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb-description {
    font-size: 18px;
    color: rgba(253, 251, 247, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/* ===================================
   PROMOTIONS PAGE STYLES
   =================================== */
.promo-breadcrumb {
    height: 400px;
    max-height: 400px;
    background: linear-gradient(135deg, #2C1A11 0%, #5D3A1A 100%);
    background-image: url('../images/breadcrumb-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.promotions-page-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.promo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(227, 168, 87, 0.1);
}

.promo-card.featured {
    border: 2px solid var(--accent-gold);
    transform: scale(1.02);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(227, 168, 87, 0.2);
}

.promo-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-green);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.promo-badge.hot {
    background: #9f0f14;
    box-shadow: 0 5px 15px rgba(159, 15, 20, 0.3);
}

.promo-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 26, 17, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover .promo-overlay {
    opacity: 1;
}

.promo-btn {
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.promo-card:hover .promo-btn {
    transform: translateY(0);
}

.promo-content {
    padding: 30px;
}

.promo-meta {
    margin-bottom: 15px;
}

.promo-valid {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-content h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.promo-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.new-price {
    font-size: 28px;
    font-weight: 900;
    color: #9f0f14;
    font-family: 'Playfair Display', serif;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 12px 25px;
    background: rgba(227, 168, 87, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.promo-cta:hover {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    gap: 15px;
}

.promo-cta i {
    transition: transform 0.3s ease;
}

.promo-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .promo-breadcrumb {
        height: 350px;
        max-height: 350px;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .promo-card.featured {
        transform: none;
    }
    
    .promo-card.featured:hover {
        transform: translateY(-10px);
    }
}