/* =============================================
   WORKSHOPS PAGE - SAME AS PRODUCT CARD STYLE
============================================= */

/* ----- ROOT VARIABLES ----- */
:root {
    --primary: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #2C1810;
    --gold: #D4A574;
    --cream: #F5E6D3;
    --light: #FFF8F5;
    --white: #FFFFFF;
    --text-muted: #666666;
    --shadow-soft: 0 5px 25px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 15px 50px rgba(139, 69, 19, 0.12);
    --border-light: rgba(139, 69, 19, 0.08);
}

/* =============================================
   PAGE HEADER
============================================= */

.workshop-page-header {
    padding: 70px 0 20px;
    background: linear-gradient(135deg, #FFF8F5 0%, #F5E6D3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.workshop-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 8s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.workshop-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #2C1810;
    animation: slideDown 0.8s ease forwards;
}

.workshop-page-header h1 span {
    color: #8B4513;
    position: relative;
}

.workshop-page-header h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(212,165,116,0.4);
    border-radius: 4px;
    animation: expandLine 1s ease forwards;
}

@keyframes expandLine {
    from { width: 0; left: 50%; right: 50%; }
    to { width: 100%; left: 0; right: 0; }
}

.workshop-page-header p {
    font-size: 16px;
    color: #666;
    margin-top: 6px;
    opacity: 1;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SEARCH BOX - UNIVERSAL (MENU & WORKSHOP)
============================================= */

.workshop-search {
    max-width: 500px;
    margin: 40px auto 30px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid #8B4513;
    border-radius: 50px;
    font-size: 15px;
    color: #2C1810;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.search-input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.08);
}

.search-input::placeholder {
    color: #817b7b;
}

.search-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

/* ----- Search Suggestions ----- */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    padding: 8px 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(139, 69, 19, 0.06);
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #2C1810;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: rgba(139, 69, 19, 0.06);
    color: #8B4513;
}

.search-suggestion-item strong {
    color: #8B4513;
    font-weight: 600;
}

.search-suggestion-item.no-match {
    color: #999;
    cursor: default;
    font-style: italic;
}

.search-suggestion-item.no-match:hover {
    background: none;
    color: #999;
}

/* ----- Search Suggestions Scrollbar ----- */
.search-suggestions::-webkit-scrollbar {
    width: 4px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 10px;
}

/* ----- Search Highlight Effect ----- */
.menu-item-card.search-highlight,
.workshop-card.search-highlight {
    animation: highlightPulse 1.5s ease;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(139, 69, 19, 0.1);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 69, 19, 0);
        transform: scale(1);
    }
}

/* =============================================
   FILTER BUTTONS - UNIVERSAL
============================================= */

.workshop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(139, 69, 19, 0.18);
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(139, 69, 19, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.filter-btn i {
    color: #8B4513;
    font-size: 13px;
    transition: color 0.3s ease;
}

.filter-btn .count {
    font-size: 11px;
    font-weight: 600;
    color: #A0522D;
    margin-left: 2px;
    background: rgba(139, 69, 19, 0.12);
    padding: 1px 7px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(139, 69, 19, 0.18);
    color: #6B3410;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.35) 0%, rgba(245, 230, 211, 0.95) 100%);
    border-color: rgba(139, 69, 19, 0.3);
}

.filter-btn:hover i {
    color: #6B3410;
}

.filter-btn.active {
    background: linear-gradient(135deg, #6B3410 0%, #A0522D 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 22px rgba(139, 69, 19, 0.35);
}

.filter-btn.active i {
    color: #fff;
}

.filter-btn.active .count {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
}

/* =============================================
   RESPONSIVE
============================================= */

@media (max-width: 991px) {
    .workshop-search {
        max-width: 450px;
        margin: 15px auto 20px;
    }
    
    .search-input {
        padding: 12px 18px 12px 46px;
        font-size: 14px;
    }
    
    .search-input-icon {
        left: 16px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .workshop-search {
        max-width: 100%;
        padding: 0 10px;
        margin: 10px auto 15px;
    }
    
    .search-input {
        padding: 10px 14px 10px 40px;
        font-size: 13px;
        border-radius: 40px;
    }
    
    .search-input-icon {
        left: 19px!important;
        font-size: 13px;
    }
    
    .search-suggestion-item {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .workshop-filters {
        gap: 6px;
        padding: 0 5px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
        gap: 4px;
    }
    
    .filter-btn i {
        font-size: 12px;
    }
    
    .filter-btn .count {
        font-size: 10px;
        padding: 0 5px;
    }
}

@media (max-width: 400px) {
    .filter-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .filter-btn i {
        font-size: 11px;
    }
    
    .search-input {
        padding: 8px 12px 8px 36px;
        font-size: 12px;
    }
    
    .search-input-icon {
        left: 10px;
        font-size: 12px;
    }
}
/* =============================================
   WORKSHOP GRID
============================================= */

.workshop-grid-section {
    padding: 40px 0 70px;
    background: #fff;
}

.workshop-category-title {
    text-align: center;
    margin-bottom: 40px;
}

.workshop-category-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2C1810;
}

.workshop-category-title h2 span {
    color: #8B4513;
}

.workshop-category-title .workshop-count {
    font-size: 14px;
    color: #888;
}

/* =============================================
   WORKSHOP CARD - SAME AS PRODUCT CARD
============================================= */

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.workshop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(139, 69, 19, 0.08);
    transition: all 0.45s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: cardStagger 0.6s ease forwards;
}

/* Stagger animation for cards */
.workshop-card:nth-child(1) { animation-delay: 0.05s; }
.workshop-card:nth-child(2) { animation-delay: 0.10s; }
.workshop-card:nth-child(3) { animation-delay: 0.15s; }
.workshop-card:nth-child(4) { animation-delay: 0.20s; }
.workshop-card:nth-child(5) { animation-delay: 0.25s; }
.workshop-card:nth-child(6) { animation-delay: 0.30s; }
.workshop-card:nth-child(7) { animation-delay: 0.35s; }
.workshop-card:nth-child(8) { animation-delay: 0.40s; }
.workshop-card:nth-child(9) { animation-delay: 0.45s; }
.workshop-card:nth-child(10) { animation-delay: 0.50s; }
.workshop-card:nth-child(11) { animation-delay: 0.55s; }
.workshop-card:nth-child(12) { animation-delay: 0.60s; }
.workshop-card:nth-child(13) { animation-delay: 0.65s; }

@keyframes cardStagger {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card Hover */
.workshop-card:hover {
    transform: translateY(-10px);
    border-color: #D4A574;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.18), 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Shine Effect */
.workshop-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: left 0.8s;
    z-index: 3;
    pointer-events: none;
}

.workshop-card:hover::before {
    left: 140%;
}

/* =============================================
   WORKSHOP IMAGE - SAME AS PRODUCT IMAGE
============================================= */

.workshop-image {
    position: relative;
    height: 230px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff, #faf6f2);
    overflow: hidden;
    flex-shrink: 0;
}

.workshop-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent 45%);
    pointer-events: none;
}

.workshop-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.02);
}


/* ============================================= */
/* WORKSHOP IMAGE - SAME AS PRODUCT IMAGE       */
/* ============================================= */

.workshop-image {
    position: relative;
    height: 230px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff, #faf6f2);
    overflow: hidden;
    flex-shrink: 0;
}

.workshop-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent 45%);
    pointer-events: none;
}

.workshop-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.02);
}

/* ============================================= */
/* WORKSHOP CARDS - HOME PAGE                   */
/* ============================================= */

.workshop-preview {
    padding: 80px 0;
    background: #fcf6f0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
}

.section-header h2 span {
    color: #8B4513;
}

.section-header .subtitle {
    font-size: 16px;
    color: #888;
    margin-top: 4px;
}

.workshop-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.workshop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(139, 69, 19, 0.1);
    border-color: #D4A574;
}

.workshop-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #faf6f2);
    flex-shrink: 0;
}

.workshop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.workshop-card:hover .workshop-card-image img {
    transform: scale(1.05);
}

.workshop-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.workshop-card-content {
    padding: 20px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 6px;
    line-height: 1.3;
}

.workshop-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.workshop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 4px;
    gap: 10px;
}

.workshop-card-price {
    font-size: 20px;
    font-weight: 700;
    color: #8B4513;
    margin: 0;
    white-space: nowrap;
}

.workshop-card-content .btn-sm {
    padding: 6px 18px;
    font-size: 13px;
    gap: 5px;
    border-radius: 50px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.workshop-card-content .btn-sm i {
    margin-right: 4px;
}

.workshop-card-content .btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* ============================================= */
/* WORKSHOP GRID - 3 COLUMNS                   */
/* ============================================= */

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-all:hover {
    background: #8B4513;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* ============================================= */
/* RESPONSIVE - ALL DEVICES                     */
/* ============================================= */

/* Large Desktops */
@media (min-width: 1200px) {
    .workshop-grid {
        gap: 28px;
    }
    
    .workshop-card-image {
        height: 220px;
    }
}

/* Small Desktops & Tablets */
@media (max-width: 992px) {
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .workshop-card-image {
        height: 190px;
    }
    
    .workshop-card-content h3 {
        font-size: 17px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .workshop-preview {
        padding: 50px 0;
    }
    
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .workshop-card-image {
        height: 180px;
    }
    
    .workshop-card-content {
        padding: 16px;
    }
    
    .workshop-card-content h3 {
        font-size: 16px;
    }
    
    .workshop-card-content p {
        font-size: 13px;
    }
    
    .workshop-card-price {
        font-size: 18px;
    }
    
    .workshop-card-content .btn-sm {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 576px) {
    .workshop-preview {
        padding: 40px 0;
    }
    
    .workshop-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .workshop-card-image {
        height: 160px;
    }
    
    .workshop-card-content {
        padding: 12px;
    }
    
    .workshop-card-content h3 {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .workshop-card-content p {
        font-size: 11px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .workshop-card-footer {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 2px;
    }
    
    .workshop-card-price {
        font-size: 15px;
    }
    
    .workshop-card-content .btn-sm {
        font-size: 10px;
        padding: 4px 10px;
        gap: 3px;
    }
    
    .workshop-card-content .btn-sm i {
        margin-right: 2px;
        font-size: 9px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header .subtitle {
        font-size: 13px;
    }
    
    .btn-view-all {
        padding: 11px 2px;
        font-size: 14px;
    }
}

/* Mobile Portrait */
@media (max-width: 400px) {
    .workshop-grid {
        gap: 10px;
    }
    
    .workshop-card-image {
        height: 140px;
    }
    
    .workshop-card-content {
        padding: 10px;
    }
    
    .workshop-card-content h3 {
        font-size: 12px;
    }
    
    .workshop-card-content p {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .workshop-card-price {
        font-size: 13px;
    }
    
    .workshop-card-content .btn-sm {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .workshop-card-content .btn-sm i {
        font-size: 8px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .workshop-grid {
        gap: 8px;
    }
    
    .workshop-card-image {
        height: 120px;
    }
    
    .workshop-card-content {
        padding: 8px;
    }
    
    .workshop-card-content h3 {
        font-size: 11px;
    }
    
    .workshop-card-content p {
        font-size: 9px;
    }
    
    .workshop-card-price {
        font-size: 12px;
    }
    
    .workshop-card-content .btn-sm {
        font-size: 8px;
        padding: 2px 6px;
    }
}

/* Landscape Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .workshop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .workshop-card-image {
        height: 120px;
    }
    
    .workshop-card-content {
        padding: 10px;
    }
    
    .workshop-card-content h3 {
        font-size: 13px;
    }
    
    .workshop-card-content p {
        font-size: 11px;
    }
    
    .workshop-card-price {
        font-size: 14px;
    }
    
    .workshop-card-content .btn-sm {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* Large Screens & 4K */
@media (min-width: 1600px) {
    .workshop-grid {
        max-width: 1400px;
        gap: 32px;
    }
    
    .workshop-card-image {
        height: 250px;
    }
    
    .workshop-card-content h3 {
        font-size: 20px;
    }
    
    .workshop-card-content p {
        font-size: 16px;
    }
}

/* =============================================
   WORKSHOP BADGE - COMPLETE FIX
============================================= */

.workshop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    color: #fff;
    background: #8B4513; /* Default fallback */
    opacity: 1 !important;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* =============================================
   WORKSHOP BADGE COLORS
============================================= */

.workshop-badge.best-seller {
    background: #FFD700 !important;
    background: linear-gradient(135deg, #FFD700, #FFC107) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

/* Trending - Red/Orange */
.workshop-badge.trending {
    background: #E74C3C !important;
    background: linear-gradient(135deg, #E74C3C, #F39C12) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
}

/* Popular */
.workshop-badge.popular {
    background: #E74C3C !important;
    background: linear-gradient(135deg, #E74C3C, #F39C12) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
}

/* Premium */
.workshop-badge.premium {
    background: #8B4513 !important;
    background: linear-gradient(135deg, #8B4513, #D4A574) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3) !important;
}

/* New */
.workshop-badge.new {
    background: #27AE60 !important;
    background: linear-gradient(135deg, #27AE60, #2ECC71) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3) !important;
}

/* Special */
.workshop-badge.special {
    background: #6C3483 !important;
    background: linear-gradient(135deg, #6C3483, #AF7AC5) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3) !important;
}

/* Kids */
.workshop-badge.kids {
    background: #2ECC71 !important;
    background: linear-gradient(135deg, #2ECC71, #3498DB) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3) !important;
}

/* Recorded */
.workshop-badge.recorded {
    background: #3498DB !important;
    background: linear-gradient(135deg, #3498DB, #2ECC71) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3) !important;
}

/* Offline */
.workshop-badge.offline {
    background: #2C3E50 !important;
    background: linear-gradient(135deg, #2C3E50, #8B4513) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3) !important;
}
/* =============================================
   WORKSHOP TYPE - COMPACT PILL, DARK-LIGHT COMBO
============================================= */

.workshop-type {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

.workshop-type.online {
    background: linear-gradient(135deg, #1B6FA8 0%, #5DADE2 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.25);
}

.workshop-type.offline {
    background: linear-gradient(135deg, #B9591A 0%, #F0985B 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(230, 126, 34, 0.25);
}

.workshop-type.recorded {
    background: linear-gradient(135deg, #6C3483 0%, #AF7AC5 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(142, 68, 173, 0.25);
}

/* =============================================
   WORKSHOP CONTENT - SAME AS PRODUCT CONTENT
============================================= */

.workshop-content {
    padding: 14px 16px 12px;
    background: rgba(255, 255, 255, 0.95);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 4px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.workshop-card:hover .workshop-content h3 {
    color: #8B4513;
}

.workshop-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

/* ----- META ----- */
.workshop-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.workshop-meta span {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.workshop-meta i {
    font-size: 12px;
    color: #8B4513;
}

/* =============================================
   WORKSHOP FOOTER - SAME AS PRODUCT FOOTER
============================================= */

.workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(139, 69, 19, 0.06);
    margin-top: auto;
    flex-shrink: 0;
}

.workshop-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.workshop-price .current-price {
    font-size: 17px;
    font-weight: 700;
    color: #8B4513;
}

.workshop-price .current-price::before {
    content: '';
    font-size: 13px;
    font-weight: 500;
}

.workshop-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.workshop-price .original-price::before {
    content: '';
    font-size: 12px;
}

/* =============================================
   ENROLL BUTTON - SAME AS ORDER BUTTON
============================================= */

.btn-enroll {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-enroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-enroll:hover::before {
    left: 100%;
}

.btn-enroll:hover {
    background: #128C7E;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.btn-enroll:active {
    transform: scale(0.95);
}

.btn-enroll i {
    transition: transform 0.3s ease;
}

.btn-enroll:hover i {
    transform: translateX(4px);
}

/* =============================================
   FEATURES SECTION
============================================= */

.workshop-features {
    padding: 70px 0;
    background: #FFF8F5;
}

.workshop-features .section-header {
    text-align: center;
    margin-bottom: 45px;
}

.workshop-features .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #2C1810;
}

.workshop-features .section-header h2 span {
    color: #8B4513;
}

.workshop-features .section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 6px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border-color: #D4A574;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.feature-item .feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #8B4513;
}

.feature-item .feature-icon i {
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: #fff;
}

.feature-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   TESTIMONIALS
============================================= */

.workshop-testimonials {
    padding: 70px 0;
    background: #F5E6D3;
}

.workshop-testimonials .section-header {
    text-align: center;
    margin-bottom: 45px;
}

.workshop-testimonials .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #2C1810;
}

.workshop-testimonials .section-header h2 span {
    color: #8B4513;
}

.workshop-testimonials .section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 6px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.testimonial-card .stars {
    font-size: 16px;
    margin-bottom: 10px;
    color: #F4B400;
    letter-spacing: 2px;
}

.testimonial-card .quote-icon {
    color: #D4A574;
    font-size: 24px;
    opacity: 0.3;
    margin-bottom: 6px;
    display: block;
}

.testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5E6D3, #D4A574);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card .author h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2C1810;
    margin: 0;
}

.testimonial-card .author span {
    font-size: 13px;
    color: #666;
}

/* =============================================
   CTA SECTION
============================================= */

.workshop-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #8B4513 0%, #2C1810 100%);
    color: #fff;
}

.workshop-cta .cta-content {
    text-align: center;
}

.workshop-cta .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 12px;
}

.workshop-cta .cta-content h2 span {
    color: #D4A574;
}

.workshop-cta .cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #D4A574;
    color: #2C1810;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.cta-buttons .btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.3);
}

.cta-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: #fff;
    color: #8B4513;
    transform: translateY(-3px);
    border-color: #fff;
}

.cta-buttons .btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.cta-buttons .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

/* =============================================
   NO WORKSHOPS
============================================= */

.no-workshops {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-workshops i {
    font-size: 44px;
    color: #ddd;
    margin-bottom: 14px;
    display: block;
}

.no-workshops h3 {
    font-size: 22px;
    color: #2C1810;
    margin-bottom: 4px;
}

.no-workshops p {
    font-size: 15px;
    color: #aaa;
}


/* =============================================
   RESPONSIVE - WORKSHOP CARDS (ONE LINE)
============================================= */

/* Tablet */
@media (max-width: 991px) {
    .workshop-page-header { padding: 70px 0 30px; }
    .workshop-page-header h1 { font-size: 38px; }
    .workshop-filters-section { top: 100px; }
    .workshop-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .workshop-image { height: 200px; padding: 8px; }
    .workshop-image img { 
        width: 100%; 
        height: 100%; 
        object-fit: contain;
    }
    .workshop-content { padding: 16px 18px 18px; }
    .workshop-content h3 { font-size: 16px; }
    .workshop-content p { font-size: 13px; }
    .workshop-price .current-price { font-size: 16px; }
    .btn-enroll { padding: 7px 16px; font-size: 12px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Landscape - One Line (No Stack) */
@media (max-width: 767px) {
    .workshop-page-header { padding: 70px 0 25px; }
    .workshop-page-header h1 { font-size: 32px; }
    .workshop-filters { gap: 6px; }
    .filter-btn { padding: 6px 16px; font-size: 12px; }
    
    /* ✅ KEEP 2 COLUMNS - ONE LINE */
    .workshop-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 14px; 
        padding: 0 8px;
    }
    
    .workshop-card {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .workshop-image { 
        height: 180px; 
        padding: 6px;
        background: #f5f0eb;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .workshop-image img { 
        width: 100%; 
        height: 100%; 
        object-fit: contain;
        display: block;
    }
    
    .workshop-badge { 
        font-size: 9px; 
        padding: 3px 10px; 
        top: 6px; 
        right: 6px; 
        z-index: 2;
    }
    .workshop-type { 
        padding: 3px 10px; 
        font-size: 9px; 
        bottom: 6px; 
        left: 6px; 
        z-index: 2;
    }
    
    .workshop-content { 
        padding: 10px 14px 10px; 
        min-height: auto;
        flex: none;
        display: flex;
        flex-direction: column;
    }
    
    .workshop-content h3 { 
        font-size: 14px; 
        margin-bottom: 3px;
        line-height: 1.3;
        /* ✅ 2 lines for title */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 32px;
        max-height: 38px;
    }
    
    .workshop-content p { 
        font-size: 12px; 
        line-height: 1.4;
        margin-bottom: 2px;
        /* ✅ 2 lines for description */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 28px;
        max-height: 34px;
    }
    
    .workshop-meta {
        display: flex;
        gap: 10px;
        margin-bottom: 4px;
        flex-wrap: wrap;
    }
    .workshop-meta span {
        font-size: 11px;
         margin-top: 3px;
        color: #888;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .workshop-meta i {
        font-size: 11px;
    }
    
    .workshop-footer { 
        display: flex; 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        padding-top: 4px;
        gap: 4px;
        margin-top: 0;
        border-top: 1px solid rgba(139, 69, 19, 0.06);
    }
    
    .workshop-price { 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }
    .workshop-price .current-price { 
        font-size: 14px; 
        font-weight: 700;
        color: #8B4513;
    }
    .workshop-price .current-price::before {
        content: '';
        font-size: 11px;
    }
    .workshop-price .original-price {
        font-size: 10px;
        color: #999;
        text-decoration: line-through;
    }
    .workshop-price .original-price::before {
        content: '';
        font-size: 9px;
    }
    
    .btn-enroll { 
        padding: 5px 12px; 
        font-size: 10px; 
        min-width: 55px; 
        white-space: nowrap;
        justify-content: center;
        border-radius: 30px;
    }
    .btn-enroll i {
        font-size: 10px;
    }
    
    .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .workshop-cta .cta-content h2 { font-size: 30px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
}

/* Mobile Portrait - Still 2 Columns (No Stack) */
@media (max-width: 575px) {
    .workshop-page-header { padding: 60px 0 14px; }
    .workshop-page-header h1 { font-size: 26px; }
    .workshop-page-header p { font-size: 14px; }
    .workshop-filters-section { top: 64px; padding: 15px 0; }
    .search-input { padding: 10px 16px 10px 40px; font-size: 13px; }
    .filter-btn { padding: 5px 12px; font-size: 11px; }
    
    /* ✅ KEEP 2 COLUMNS */
    .workshop-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 10px; 
        padding: 0 4px;
        overflow-x: hidden;
        align-items: start;
    }

    
     .workshop-card {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .workshop-image { 
        height: 160px; 
        padding: 4px;
        background: #f5f0eb;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .workshop-image img { 
        width: 100%; 
        height: 100%; 
        object-fit: contain;
        display: block;
    }
    
    .workshop-badge { 
        font-size: 8px; 
        padding: 2px 8px; 
        top: 5px; 
        right: 5px; 
        z-index: 2;
    }
    .workshop-type { 
        padding: 2px 8px; 
        font-size: 8px; 
        bottom: 5px; 
        left: 5px; 
        z-index: 2;
    }
    
    .workshop-content {
    padding: 8px 10px 6px;
    display: flex;
    flex-direction: column;
    flex: unset;          /* flex:1 hatao */
    min-height: auto;     /* 65px hatao */
}
    
    .workshop-content h3 { 
        font-size: 12px; 
        margin-bottom: 3px;
        line-height: 1.3;
        /* ✅ 2 lines for title */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 30px;
        max-height: 32px;
    }
    
    .workshop-content p {
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: auto;
    max-height: 28px;
}
    
    .workshop-meta {
        display: flex;
        gap: 6px;
        margin-bottom: 3px;
        flex-wrap: wrap;
    }
    .workshop-meta span {
        font-size: 9px;
        color: #888;
        display: flex;
         margin-top: 4px;
        align-items: center;
        gap: 3px;
    }
    .workshop-meta i {
        font-size: 9px;
    }
    
    .workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 0 !important;   /* top padding kam */
    margin-top: 8px !important;    /* 19px se 8px */
    gap: 4px;
    border-top: 1px solid rgba(139, 69, 19, 0.06);
}

     
    
    .workshop-price { 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }
    .workshop-price .current-price { 
        font-size: 12px; 
        font-weight: 700;
        color: #8B4513;
    }
    .workshop-price .current-price::before {
        content: '';
        font-size: 9px;
    }
    .workshop-price .original-price {
        font-size: 9px;
        color: #999;
        text-decoration: line-through;
    }
    .workshop-price .original-price::before {
        content: '';
        font-size: 8px;
    }
    
    .btn-enroll { 
        padding: 3px 10px; 
        font-size: 9px; 
        min-width: 45px; 
        white-space: nowrap;
        justify-content: center;
        border-radius: 25px;
    }
    .btn-enroll i {
        font-size: 9px;
    }
    
    .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature-item { padding: 18px 14px; }
    .feature-item .feature-icon { width: 44px; height: 44px; }
    .feature-item .feature-icon i { font-size: 20px; }
    .feature-item h5 { font-size: 14px; }
    .feature-item p { font-size: 12px; }
    .workshop-features .section-header h2 { font-size: 26px; }
    .workshop-testimonials .section-header h2 { font-size: 26px; }
    .workshop-cta .cta-content h2 { font-size: 24px; }
    .workshop-cta .cta-content p { font-size: 15px; }

    .workshop-category-title h2 {
        font-size: 20px;
    }
}

/* Extra Small - Still 2 Columns */
@media (max-width: 400px) {
    .workshop-grid { 
        gap: 8px; 
        padding: 0 2px;
    }
    
    .workshop-card {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;   /* 260px hatao */
        max-height: none;   /* 320px hatao */
        border-radius: 8px;
        overflow: hidden;
    }
    
    .workshop-image { 
        height: 100px; 
        padding: 3px;
    }
    .workshop-image img { 
        object-fit: cover;
    }
    
    .workshop-content { 
        padding: 6px 8px 8px; 
        min-height: 55px;
    }
    
    .workshop-content h3 { 
        font-size: 11px; 
        min-height: 26px;
        max-height: 28px;
        -webkit-line-clamp: 2;
    }
    
    .workshop-content p { 
        font-size: 9px; 
        min-height: 22px; 
        max-height: 24px; 
        -webkit-line-clamp: 2;
    }
    
    .workshop-meta span {
        font-size: 8px;
         margin-top: 3px;
    }
    .workshop-meta i {
        font-size: 8px;
    }
    
    .workshop-price .current-price { 
        font-size: 11px; 
    }
    .workshop-price .original-price {
        font-size: 8px;
    }
    
    .btn-enroll { 
        padding: 2px 8px; 
        font-size: 8px; 
        min-width: 35px; 
    }
    .btn-enroll i {
        font-size: 8px;
    }
    
    .features-grid { grid-template-columns: 1fr; }
}

/* Ensure filter buttons stay on a single scrollable line on small screens */
@media (max-width: 575px) {
    .workshop-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding: 6px 8px;
        justify-content: center;
        scrollbar-width: none; /* Firefox: hide scrollbar */
        -ms-overflow-style: none; /* IE 10+ */
    }
    .workshop-filters .filter-btn {
        flex: 0 0 auto;
    }
    .workshop-filters::-webkit-scrollbar { height: 0; display: none; } /* WebKit */
}

@media (max-width: 400px) {
    .workshop-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        padding: 4px 6px;
        justify-content: center;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .workshop-filters .filter-btn {
        flex: 0 0 auto;
        padding: 5px 10px;
    }
    .workshop-filters::-webkit-scrollbar { height: 0; display: none; }
}

/* =============================================
   DARK MODE
============================================= */

@media (prefers-color-scheme: dark) {
    .workshop-page-header {
        background: linear-gradient(135deg, #1a1a1a 0%, #2C1810 100%);
    }
    .workshop-page-header h1 { color: #f5e6d3; }
    .workshop-page-header h1 span { color: #D4A574; }
    .workshop-page-header p { color: #bbb; }
    .workshop-filters-section { background: rgba(26, 26, 26, 0.9); border-bottom-color: rgba(255,255,255,0.05); }
    .search-input { background: rgba(255,255,255,0.05); color: #f5e6d3; border-color: rgba(255,255,255,0.05); }
    .search-input::placeholder { color: #666; }
    .filter-btn { background: rgba(255,255,255,0.05); color: #bbb; border-color: rgba(255,255,255,0.05); }
}

/* =============================================
   SCROLLING AD BANNER (MARQUEE)
============================================= */

.workshop-marquee {
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    color: #fff;
    /* make full-bleed across the viewport */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
    padding: 12px 20px;
    overflow: hidden;
    z-index: 5; /* keep marquee below navbar/filters so buttons remain clickable */
    border-top: 2px solid #D4A574;
    border-bottom: 2px solid #D4A574;
    /* move the marquee slightly down to create gap below the filters/buttons */
    margin-top: 12px; /* increase to move further down, decrease to move up */
}

.workshop-marquee::before,
.workshop-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.workshop-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #8B4513, transparent);
}

.workshop-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #8B4513, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
    margin: 0 auto; /* center the track horizontally */
}

.marquee-track span {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee-track span i {
    font-size: 16px;
    color: #F4B400;
}

.marquee-track .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    margin: 0 4px;
}

/* Hide only the type label (Online/Offline/Recorded). Keep the promotional badge (e.g. "POPULAR") visible. */
.workshop-type {
    display: none !important;
}

/* Hover Pause */
.workshop-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   RESPONSIVE - MARQUEE
============================================= */

@media (max-width: 767px) {
    .workshop-marquee {
        padding: 10px 0;
    }
    
    .marquee-track span {
        font-size: 13px;
    }
    
    .marquee-track span i {
        font-size: 14px;
    }
    
    .marquee-track {
        gap: 25px;
        animation: marqueeScroll 20s linear infinite;
    }
}

@media (max-width: 575px) {
    .workshop-marquee {
        padding: 8px 0;
    }
    
    .marquee-track span {
        font-size: 12px;
    }
    
    .marquee-track span i {
        font-size: 12px;
    }
    
    .marquee-track {
        gap: 18px;
        animation: marqueeScroll 15s linear infinite;
    }
}

/* Search icon inside input */
.search-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B4513; /* visible brown color matching theme */
    font-size: 18px;
    z-index: 3; /* sit above the input background */
    pointer-events: none;
}

@media (max-width: 575px) {
    .search-input {
        padding: 10px 16px 10px 44px;
    }
    .search-input-icon {
        left: 14px;
    }
}



/* ============================================= */
/* COOKIE MASTERCLASS - COMPLETE STYLES         */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. FULL SCREEN BANNER ---------- */
.cookie-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.cookie-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cookie-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cookie-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.cookie-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: cookieFadeIn 1s ease forwards;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.cookie-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.cookie-banner-badge i {
    margin-right: 6px;
}

.cookie-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.cookie-banner-host {
    font-size: 20px;
    color: #d4c5b8;
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.cookie-banner-host strong {
    color: #e8b88a;
}

.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cookie-banner-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.cookie-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.cookie-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cookie-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. E-3 IMAGES (Glassmorphism) ---------- */
.cookie-e3-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.cookie-e3-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(139, 69, 19, 0.15), transparent);
}

.cookie-e3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-e3-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: all 0.45s ease;
    cursor: pointer;
}

.cookie-e3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.12);
    border-color: #D4A574;
}

.cookie-e3-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.cookie-e3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cookie-e3-card:hover .cookie-e3-image img {
    transform: scale(1.01);
}

.cookie-e3-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.cookie-e3-card:hover .cookie-e3-label {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    padding: 14px 0;
    letter-spacing: 1px;
}

.cookie-e3-label i {
    margin-right: 6px;
    transition: transform 0.3s ease;
}

.cookie-e3-card:hover .cookie-e3-label i {
    transform: scale(1.01);
}

/* ---------- 3. CONTENT + IMAGE SECTION ---------- */
.cookie-content-section {
    padding: 80px 0;
    background: #fcf6f0;
}

.cookie-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cookie-content-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.cookie-zoom-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
}

.cookie-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cookie-zoom-image:hover img {
    transform: scale(1.05);
}

.cookie-content-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.12);
    color: #8B4513;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cookie-content-badge i {
    margin-right: 6px;
}

.cookie-content-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #2c1810;
    margin-bottom: 6px;
}

.cookie-content-sub {
    color: #666;
    font-size: 18px;
    margin-bottom: 24px;
}

.cookie-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cookie-content-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 16px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cookie-content-list li:hover {
    padding-left: 8px;
    color: #8B4513;
}

.cookie-content-list li i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cookie-content-list li:hover i {
    transform: scale(1.2);
}

.cookie-content-bonus {
    background: rgba(139, 69, 19, 0.08);
    padding: 10px 16px !important;
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.15) !important;
    margin-top: 8px;
}

.cookie-content-bonus i {
    color: #F4B400 !important;
}

/* ---------- 4. BENEFITS SECTION ---------- */
.cookie-benefits {
    padding: 80px 0;
    background: #fcf6f0;
}

.cookie-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.cookie-benefits-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.12);
    color: #8B4513;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cookie-benefits-badge i {
    margin-right: 6px;
}

.cookie-benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2c1810;
    margin-bottom: 6px;
}

.cookie-benefits-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.cookie-benefits-sub {
    color: #666;
    font-size: 18px;
    margin-top: 16px;
}

.cookie-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cookie-benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #fcf6f0;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.cookie-benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cookie-benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.cookie-benefit-item:hover .cookie-benefit-icon {
    background: #8B4513;
    color: #fff;
}

.cookie-benefit-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 6px;
}

.cookie-benefit-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ---------- 5. TESTIMONIALS ---------- */
.cookie-testimonials {
    padding: 80px 0;
    background: #fcf6f0;
}

.cookie-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.cookie-testimonials-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.12);
    color: #8B4513;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cookie-testimonials-badge i {
    margin-right: 6px;
}

.cookie-testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
}

.cookie-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    transition: all 0.45s ease;
}

.cookie-testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cookie-testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-stars {
    color: #F4B400;
    font-size: 16px;
    letter-spacing: 2px;
}

.cookie-testimonial-badge {
    font-size: 11px;
    background: rgba(46, 204, 113, 0.12);
    color: #27AE60;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(46, 204, 113, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cookie-testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.cookie-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cookie-testimonial-card:hover .cookie-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.cookie-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 16px;
}

.cookie-testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* ---------- 6. FAQ SECTION ---------- */
.cookie-faq {
    padding: 80px 0;
    background: #fff;
}

.cookie-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.cookie-faq-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.12);
    color: #8B4513;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cookie-faq-badge i {
    margin-right: 6px;
}

.cookie-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
}

.cookie-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-faq-item {
    background: #fcf6f0;
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 16px;
    transition: all 0.45s ease;
}

.cookie-faq-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.cookie-faq-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8B4513;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: transform 0.3s ease;
}

.cookie-faq-item:hover .cookie-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.cookie-faq-item h4 {
    color: #2c1810;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-faq-item p {
    color: #666;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* ---------- 7. FINAL CTA ---------- */
.cookie-final-cta {
    padding: 80px 0;
    background: #fdf6f3;  /* Outer - Light Pink */
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.cookie-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);  /* Inner - Brown */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.cookie-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

/* Text colors - White on Brown */
.cookie-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.cookie-final-badge i {
    margin-right: 6px;
}

.cookie-final-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.cookie-final-text {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.cookie-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cookie-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cookie-final-buttons .cookie-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.cookie-final-buttons .cookie-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.cookie-final-buttons .cookie-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.cookie-final-buttons .cookie-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.cookie-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.cookie-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: cookiePulse 2s infinite;
}

@keyframes cookiePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
/* =============================================
   RESPONSIVE - MOBILE
============================================= */

/* Tablet */
@media (max-width: 992px) {
    .cookie-banner-title {
        font-size: 48px;
    }
    
    .cookie-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cookie-zoom-image {
        height: 300px;
    }
    
    .cookie-e3-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .cookie-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .cookie-banner-title {
        font-size: 36px;
    }
    
    .cookie-banner-host {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .cookie-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .cookie-banner-content {
        padding: 20px;
    }
    
    .cookie-e3-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .cookie-e3-card:last-child {
        grid-column: span 2;
    }
    
    .cookie-e3-image {
        height: 150px;
    }
    
    .cookie-e3-label {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .cookie-content-section {
        padding: 50px 0;
    }
    
    .cookie-content-title {
        font-size: 28px;
    }
    
    .cookie-zoom-image {
        height: 250px;
    }
    
    .cookie-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .cookie-benefit-item {
        padding: 20px 16px;
    }
    
    .cookie-benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .cookie-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookie-testimonial-card {
        padding: 24px;
    }
    
    .cookie-faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cookie-faq-item {
        padding: 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-final-box {
        padding: 32px 24px;
    }
    
    .cookie-final-title {
        font-size: 28px;
    }
    
    .cookie-final-text {
        font-size: 16px;
    }
    
    .cookie-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .cookie-banner-title {
        font-size: 28px;
    }
    
    .cookie-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-banner-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-e3-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cookie-e3-card:last-child {
        grid-column: span 1;
    }
    
    .cookie-e3-image {
        height: 180px;
    }
    
    .cookie-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-benefit-item {
        padding: 20px;
    }
    
    .cookie-content-title {
        font-size: 24px;
    }
    
    .cookie-content-list li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .cookie-final-box {
        padding: 24px 16px;
    }
    
    .cookie-final-title {
        font-size: 22px;
    }
    
    .cookie-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-final-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-testimonials-title {
        font-size: 26px;
    }
    
    .cookie-faq-title {
        font-size: 26px;
    }
    
    .cookie-benefits-title {
        font-size: 28px;
    }
    
    .cookie-benefits-title::after {
        width: 60px;
        height: 3px;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    .cookie-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .cookie-banner-title {
        font-size: 22px;
    }
    
    .cookie-banner-host {
        font-size: 14px;
    }
    
    .cookie-banner-buttons .btn {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .cookie-e3-image {
        height: 150px;
    }
    
    .cookie-zoom-image {
        height: 200px;
    }
    
    .cookie-content-title {
        font-size: 20px;
    }
    
    .cookie-final-title {
        font-size: 18px;
    }
    
    .cookie-final-text {
        font-size: 14px;
    }
}

/* ============================================= */
/* ADVERTISING STRIP - CONTINUOUS MOTION        */
/* ============================================= */

.cookie-ad-strip {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Different color variations */
.cookie-ad-marquee {
    background: linear-gradient(135deg, #2c1810, #5a3e32);
}

.cookie-ad-marquee-gold {
    background: linear-gradient(135deg, #D4A574, #8B4513);
}

.cookie-ad-marquee-dark {
    background: #1a1210;
}

/* Marquee Track - Continuous Motion */
.cookie-marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

/* Hover Pause */
.cookie-ad-strip:hover .cookie-marquee-track {
    animation-play-state: paused;
}

/* Individual Items */
.cookie-marquee-track span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.cookie-marquee-track span i {
    font-size: 18px;
    color: #F4B400;
}

.cookie-marquee-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    margin: 0 4px;
}

/* Shine Effect */
.cookie-ad-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: adShine 4s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes adShine {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================= */
/* RESPONSIVE - MARQUEE                         */
/* ============================================= */

@media (max-width: 768px) {
    .cookie-ad-strip {
        padding: 10px 0;
    }
    
    .cookie-marquee-track {
        gap: 25px;
        animation: marqueeScroll 20s linear infinite;
    }
    
    .cookie-marquee-track span {
        font-size: 13px;
    }
    
    .cookie-marquee-track span i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cookie-ad-strip {
        padding: 8px 0;
    }
    
    .cookie-marquee-track {
        gap: 18px;
        animation: marqueeScroll 15s linear infinite;
    }
    
    .cookie-marquee-track span {
        font-size: 12px;
    }
    
    .cookie-marquee-track span i {
        font-size: 12px;
    }
    
    .cookie-marquee-sep {
        font-size: 14px;
    }
}/* ============================================= */
/* ADVERTISING STRIP - CONTINUOUS MOTION        */
/* ============================================= */

.cookie-ad-strip {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Different color variations */
.cookie-ad-marquee {
    background: linear-gradient(135deg, #2c1810, #5a3e32);
}

.cookie-ad-marquee-gold {
    background: linear-gradient(135deg, #D4A574, #8B4513);
}

.cookie-ad-marquee-dark {
    background: #1a1210;
}

/* Marquee Track - Continuous Motion */
.cookie-marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

/* Hover Pause */
.cookie-ad-strip:hover .cookie-marquee-track {
    animation-play-state: paused;
}

/* Individual Items */
.cookie-marquee-track span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.cookie-marquee-track span i {
    font-size: 18px;
    color: #F4B400;
}

.cookie-marquee-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    margin: 0 4px;
}

/* Shine Effect */
.cookie-ad-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: adShine 4s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes adShine {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================= */
/* RESPONSIVE - MARQUEE                         */
/* ============================================= */

@media (max-width: 768px) {
    .cookie-ad-strip {
        padding: 10px 0;
    }
    
    .cookie-marquee-track {
        gap: 25px;
        animation: marqueeScroll 20s linear infinite;
    }
    
    .cookie-marquee-track span {
        font-size: 13px;
    }
    
    .cookie-marquee-track span i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cookie-ad-strip {
        padding: 8px 0;
    }
    
    .cookie-marquee-track {
        gap: 18px;
        animation: marqueeScroll 15s linear infinite;
    }
    
    .cookie-marquee-track span {
        font-size: 12px;
    }
    
    .cookie-marquee-track span i {
        font-size: 12px;
    }
    
    .cookie-marquee-sep {
        font-size: 14px;
    }
}


/* ============================================= */
/* LOAF CAKES - COMPLETE STYLES                 */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.loaf-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.loaf-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loaf-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.loaf-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.loaf-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: loafFadeIn 1s ease forwards;
}

@keyframes loafFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.loaf-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.loaf-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.loaf-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.loaf-banner-host strong {
    color: #e8b88a;
}

.loaf-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.loaf-banner-info span {
    font-size: 15px;
    color: #f5ede5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loaf-banner-info i {
    color: #f5ede5;
}

.loaf-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.loaf-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.loaf-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.loaf-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.loaf-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.loaf-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.loaf-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.loaf-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.loaf-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.loaf-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.loaf-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.loaf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.loaf-stat-item {
    text-align: center;
}

.loaf-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
}

.loaf-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.loaf-about {
    padding: 80px 0;
    background: #fff;
}

.loaf-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.loaf-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.loaf-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.loaf-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.loaf-zoom-image:hover img {
    transform: scale(1.05);
}

.loaf-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.loaf-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.loaf-about-text {
    padding: 10px 0;
}

.loaf-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.loaf-about-tag i {
    margin-right: 6px;
}

.loaf-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.loaf-about-text h2 span {
    color: #8B4513;
}

.loaf-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.loaf-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.loaf-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loaf-feature-row:last-child {
    border-bottom: none;
}

.loaf-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}
/* ---------- 4. COLLECTION GRID ---------- */
.loaf-collection {
    padding: 80px 0;
    background: #fcf6f0;
}

.loaf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.loaf-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.loaf-section-badge i {
    margin-right: 6px;
}

.loaf-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.loaf-section-header p {
    font-size: 16px;
    color: #666;
}

/* Collection Grid */
.loaf-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.loaf-collection-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.loaf-collection-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.loaf-collection-item .loaf-item-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.loaf-collection-item:hover .loaf-item-icon {
    transform: scale(1.15);
}

.loaf-collection-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.loaf-collection-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- 5. COMPONENTS ---------- */
.loaf-components {
    padding: 80px 0;
    background: #fff;
}

.loaf-components-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.loaf-component-card {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.loaf-component-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.loaf-component-card .loaf-component-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.loaf-component-card:hover .loaf-component-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.loaf-component-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
}

.loaf-components-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
/* ---------- 5. COMPONENTS ---------- */
.loaf-components {
    padding: 80px 0;
    background: #fff;
}

.loaf-components-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.loaf-component-card {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.loaf-component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.loaf-component-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.loaf-component-card:hover .loaf-component-icon {
    background: #8B4513;
    color: #fff;
}

.loaf-component-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
}

.loaf-components-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ---------- 6. WHAT'S INCLUDED ---------- */
.loaf-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.loaf-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.loaf-included-item {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.loaf-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.loaf-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.loaf-included-item:hover .loaf-included-icon {
    background: #8B4513;
    color: #fff;
}

.loaf-included-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.loaf-included-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. TESTIMONIALS ---------- */
.loaf-testimonials {
    padding: 80px 0;
    background: #fff;
}

.loaf-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.loaf-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.loaf-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.loaf-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.loaf-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.loaf-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loaf-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.loaf-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.loaf-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 8. FAQ ---------- */
.loaf-faq {
    padding: 80px 0;
    background: #fcf6f0;
}

.loaf-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.loaf-faq-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.loaf-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.loaf-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
}

.loaf-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.loaf-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. FINAL CTA ---------- */
.loaf-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.loaf-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.loaf-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.loaf-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.loaf-final-content {
    position: relative;
    z-index: 1;
}

.loaf-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.loaf-final-badge i {
    margin-right: 6px;
}

.loaf-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.loaf-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;  /* top: 8px, bottom: 30px */
}

.loaf-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.loaf-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.loaf-final-buttons .loaf-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.loaf-final-buttons .loaf-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.loaf-final-buttons .loaf-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.loaf-final-buttons .loaf-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.loaf-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.loaf-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: loafPulse 2s infinite;
}

@keyframes loafPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .loaf-banner-title {
        font-size: 40px;
    }
    
    .loaf-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .loaf-zoom-image {
        height: 300px;
    }
    
    .loaf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .loaf-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .loaf-components-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .loaf-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .loaf-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .loaf-banner-title {
        font-size: 32px;
    }
    
    .loaf-banner-host {
        font-size: 16px;
    }
    
    .loaf-banner-info span {
        font-size: 13px;
    }
    
    .loaf-price-current {
        font-size: 28px;
    }
    
    .loaf-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .loaf-stats {
        padding: 40px 0;
    }
    
    .loaf-stat-number {
        font-size: 32px;
    }
    
    .loaf-about {
        padding: 50px 0;
    }
    
    .loaf-about-text h2 {
        font-size: 28px;
    }
    
    .loaf-collection {
        padding: 50px 0;
    }
    
    .loaf-collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .loaf-components {
        padding: 50px 0;
    }
    
    .loaf-components-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .loaf-component-card {
        padding: 18px 12px;
    }
    
    .loaf-included {
        padding: 50px 0;
    }
    
    .loaf-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .loaf-included-item {
        padding: 20px 16px;
    }
    
    .loaf-testimonials {
        padding: 50px 0;
    }
    
    .loaf-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .loaf-faq {
        padding: 50px 0;
    }
    
    .loaf-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .loaf-final-box {
        padding: 32px 24px;
    }
    
    .loaf-final-content h2 {
        font-size: 28px;
    }
    
    .loaf-final-content p {
        font-size: 16px;
    }
    
    .loaf-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .loaf-banner-title {
        font-size: 24px;
    }
    
    .loaf-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .loaf-banner-info {
        gap: 10px 16px;
    }
    
    .loaf-banner-info span {
        font-size: 12px;
    }
    
    .loaf-price-current {
        font-size: 22px;
    }
    
    .loaf-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .loaf-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .loaf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .loaf-stat-number {
        font-size: 28px;
    }
    
    .loaf-about-text h2 {
        font-size: 24px;
    }
    
    .loaf-about-text p {
        font-size: 14px;
    }
    
    .loaf-section-header h2 {
        font-size: 26px;
    }
    
    .loaf-collection-grid {
        grid-template-columns: 1fr;
    }
    
    .loaf-collection-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
    }
    
    .loaf-item-icon {
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .loaf-components-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .loaf-component-card {
        padding: 14px 10px;
    }
    
    .loaf-component-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .loaf-component-card h5 {
        font-size: 12px;
    }
    
    .loaf-included-grid {
        grid-template-columns: 1fr;
    }
    
    .loaf-included-item {
        padding: 16px 14px;
    }
    
    .loaf-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .loaf-final-box {
        padding: 24px 16px;
    }
    
    .loaf-final-content h2 {
        font-size: 22px;
    }
    
    .loaf-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .loaf-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .loaf-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .loaf-banner-title {
        font-size: 20px;
    }
    
    .loaf-banner-host {
        font-size: 14px;
    }
    
    .loaf-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .loaf-stat-number {
        font-size: 24px;
    }
    
    .loaf-stat-label {
        font-size: 12px;
    }
    
    .loaf-zoom-image {
        height: 200px;
    }
    
    .loaf-about-text h2 {
        font-size: 20px;
    }
    
    .loaf-components-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .loaf-component-card {
        padding: 12px 8px;
    }
    
    .loaf-component-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .loaf-component-card h5 {
        font-size: 11px;
    }
    
    .loaf-final-content h2 {
        font-size: 18px;
    }
    
    .loaf-final-content p {
        font-size: 14px;
    }
}


/* ============================================= */
/* COOKIE TIN - COMPLETE PREMIUM STYLES         */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.tin-banner {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1210;
}

.tin-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tin-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tin-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.tin-banner-content {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: tinFadeIn 1s ease forwards;
}

@keyframes tinFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.tin-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.tin-banner-badge i {
    margin-right: 6px;
}

.tin-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.tin-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.tin-banner-host strong {
    color: #e8b88a;
}

.tin-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.tin-banner-info span {
    font-size: 15px;
    color: #f5ede5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tin-banner-info i {
    color: #f5ede5;
}

.tin-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tin-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.tin-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.tin-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.tin-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.tin-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.tin-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.tin-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.tin-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.tin-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.tin-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.tin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tin-stat-item {
    text-align: center;
}

.tin-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.tin-stat-item:hover .tin-stat-number {
    transform: scale(1.05);
    color: #D4A574;
}

.tin-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.tin-about {
    padding: 80px 0;
    background: #fff;
}

.tin-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tin-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.tin-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.tin-zoom-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tin-zoom-image:hover img {
    transform: scale(1.02);
}

.tin-about-badge {
    position: absolute;
    bottom: 19px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.tin-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.tin-about-text {
    padding: 10px 0;
}

.tin-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tin-about-tag i {
    margin-right: 6px;
}

.tin-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.tin-about-text h2 span {
    color: #8B4513;
}

.tin-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tin-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tin-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tin-feature-row:last-child {
    border-bottom: none;
}

.tin-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. COLLECTION GRID ---------- */
.tin-collection {
    padding: 80px 0;
    background: #fcf6f0;
}

.tin-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tin-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tin-section-badge i {
    margin-right: 6px;
}

.tin-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.tin-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.tin-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.tin-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tin-collection-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tin-collection-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tin-collection-item .tin-item-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.tin-collection-item:hover .tin-item-icon {
    transform: scale(1.15);
}

.tin-collection-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.tin-collection-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- 5. FEATURES SECTION ---------- */
.tin-features {
    padding: 80px 0;
    background: #fff;
}

.tin-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.tin-feature-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tin-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tin-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.tin-feature-card:hover .tin-feature-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.tin-feature-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.tin-feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 6. WHAT'S INCLUDED ---------- */
.tin-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.tin-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tin-included-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tin-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tin-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.tin-included-item:hover .tin-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.tin-included-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.tin-included-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. TESTIMONIALS ---------- */
.tin-testimonials {
    padding: 80px 0;
    background: #fff;
}

.tin-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tin-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.tin-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tin-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tin-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.tin-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tin-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.tin-testimonial-card:hover .tin-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.tin-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.tin-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 8. FAQ ---------- */
.tin-faq {
    padding: 80px 0;
    background: #fcf6f0;
}

.tin-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tin-faq-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.tin-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.tin-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.tin-faq-item:hover .tin-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.tin-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.tin-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. FINAL CTA ---------- */
.tin-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.tin-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.tin-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.tin-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.tin-final-content {
    position: relative;
    z-index: 1;
}

.tin-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.tin-final-badge i {
    margin-right: 6px;
}

.tin-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.tin-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.tin-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tin-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.tin-final-buttons .tin-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.tin-final-buttons .tin-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.tin-final-buttons .tin-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.tin-final-buttons .tin-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.tin-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.tin-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: tinPulse 2s infinite;
}

@keyframes tinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ---------- STATS COUNTER ANIMATION ---------- */
.tin-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.tin-stat-number .plus {
    font-size: 28px;
    color: #D4A574;
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .tin-banner-title {
        font-size: 40px;
    }
    
    .tin-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tin-zoom-image {
        height: 300px;
    }
    
    .tin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tin-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tin-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tin-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tin-banner {
        height: 150vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .tin-banner-title {
        font-size: 32px;
    }
    
    .tin-banner-host {
        font-size: 16px;
    }
    
    .tin-banner-info span {
        font-size: 13px;
    }
    
    .tin-price-current {
        font-size: 28px;
    }
    
    .tin-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .tin-stats {
        padding: 40px 0;
    }
    
    .tin-stat-number {
        font-size: 32px;
    }
    
    .tin-about {
        padding: 50px 0;
    }
    
    .tin-about-text h2 {
        font-size: 28px;
    }
    
    .tin-collection {
        padding: 50px 0;
    }
    
    .tin-collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .tin-features {
        padding: 50px 0;
    }
    
    .tin-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tin-feature-card {
        padding: 20px 16px;
    }
    
    .tin-included {
        padding: 50px 0;
    }
    
    .tin-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .tin-included-item {
        padding: 20px 16px;
    }
    
    .tin-testimonials {
        padding: 50px 0;
    }
    
    .tin-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tin-faq {
        padding: 50px 0;
    }
    
    .tin-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .tin-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .tin-final-box {
        padding: 32px 24px;
    }
    
    .tin-final-content h2 {
        font-size: 28px;
    }
    
    .tin-final-content p {
        font-size: 16px;
    }
    
    .tin-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .tin-banner-title {
        font-size: 24px;
    }
    
    .tin-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .tin-banner-info {
        gap: 10px 16px;
    }
    
    .tin-banner-info span {
        font-size: 12px;
    }
    
    .tin-price-current {
        font-size: 22px;
    }
    
    .tin-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tin-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .tin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tin-stat-number {
        font-size: 28px;
    }
    
    .tin-about-text h2 {
        font-size: 24px;
    }
    
    .tin-about-text p {
        font-size: 14px;
    }
    
    .tin-section-header h2 {
        font-size: 26px;
    }
    
    .tin-collection-grid {
        grid-template-columns: 1fr;
    }
    
    .tin-collection-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
        text-align: left;
    }
    
    .tin-collection-item .tin-item-icon {
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .tin-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .tin-feature-card {
        padding: 16px 12px;
    }
    
    .tin-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .tin-feature-card h5 {
        font-size: 13px;
    }
    
    .tin-feature-card p {
        font-size: 12px;
    }
    
    .tin-included-grid {
        grid-template-columns: 1fr;
    }
    
    .tin-included-item {
        padding: 16px 14px;
    }
    
    .tin-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .tin-final-box {
        padding: 24px 16px;
    }
    
    .tin-final-content h2 {
        font-size: 22px;
    }
    
    .tin-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tin-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .tin-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .tin-banner-title {
        font-size: 20px;
    }
    
    .tin-banner-host {
        font-size: 14px;
    }
    
    .tin-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .tin-stat-number {
        font-size: 24px;
    }
    
    .tin-stat-label {
        font-size: 12px;
    }
    
    .tin-zoom-image {
        height: 200px;
    }
    
    .tin-about-text h2 {
        font-size: 20px;
    }
    
    .tin-features-grid {
        grid-template-columns: 1fr;
    }
    
    .tin-feature-card {
        padding: 16px;
    }
    
    .tin-final-content h2 {
        font-size: 18px;
    }
    
    .tin-final-content p {
        font-size: 14px;
    }
}


/* ============================================= */
/* TIRAMISU ALL THE WAY - COMPLETE STYLES       */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.tira-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1210;
}

.tira-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tira-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tira-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.tira-banner-content {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: tiraFadeIn 1s ease forwards;
}

@keyframes tiraFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.tira-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.tira-banner-badge i {
    margin-right: 6px;
}

.tira-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.tira-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.tira-banner-host strong {
    color: #e8b88a;
}

.tira-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.tira-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tira-banner-info i {
    color: #e8b88a;
}

.tira-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tira-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.tira-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.tira-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.tira-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.tira-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.tira-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.tira-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.tira-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.tira-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.tira-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.tira-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tira-stat-item {
    text-align: center;
}

.tira-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.tira-stat-item:hover .tira-stat-number {
    transform: scale(1.05);
    color: #D4A574;
}

.tira-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.tira-about {
    padding: 80px 0;
    background: #fff;
}

.tira-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tira-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.tira-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.tira-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tira-zoom-image:hover img {
    transform: scale(1.05);
}

.tira-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.tira-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.tira-about-text {
    padding: 10px 0;
}

.tira-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tira-about-tag i {
    margin-right: 6px;
}

.tira-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.tira-about-text h2 span {
    color: #8B4513;
}

.tira-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tira-about-text p strong {
    color: #8B4513;
}

.tira-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tira-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tira-feature-row:last-child {
    border-bottom: none;
}

.tira-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. RECIPES GRID ---------- */
.tira-recipes {
    padding: 80px 0;
    background: #fcf6f0;
}

.tira-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tira-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tira-section-badge i {
    margin-right: 6px;
}

.tira-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.tira-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.tira-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.tira-recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tira-recipe-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tira-recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tira-recipe-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.tira-recipe-card:hover .tira-recipe-icon {
    transform: scale(1.15);
}

.tira-recipe-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.tira-recipe-card p {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.tira-recipe-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- 5. WHY THIS WORKSHOP ---------- */
.tira-why {
    padding: 80px 0;
    background: #fff;
}

.tira-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.tira-why-card {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tira-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tira-why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.tira-why-card:hover .tira-why-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.tira-why-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.tira-why-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 6. AUDIENCE SECTION ---------- */
.tira-audience {
    padding: 80px 0;
    background: #fcf6f0;
}

.tira-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.tira-audience-item {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tira-audience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tira-audience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.tira-audience-item:hover .tira-audience-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.tira-audience-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.tira-audience-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. WHAT'S INCLUDED ---------- */
.tira-included {
    padding: 80px 0;
    background: #fff;
}

.tira-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tira-included-item {
    background: #fcf6f0;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.tira-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tira-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.tira-included-item:hover .tira-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.tira-included-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.tira-included-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 8. TESTIMONIALS ---------- */
.tira-testimonials {
    padding: 80px 0;
    background: #fcf6f0;
}

.tira-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tira-testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.tira-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.tira-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tira-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.tira-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tira-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.tira-testimonial-card:hover .tira-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.tira-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.tira-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 9. FAQ ---------- */
.tira-faq {
    padding: 80px 0;
    background: #fff;
}

.tira-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tira-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.tira-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.tira-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.tira-faq-item:hover .tira-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.tira-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.tira-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 10. FINAL CTA ---------- */
.tira-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.tira-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.tira-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.tira-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.tira-final-content {
    position: relative;
    z-index: 1;
}

.tira-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.tira-final-badge i {
    margin-right: 6px;
}

.tira-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.tira-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.tira-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tira-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.tira-final-buttons .tira-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.tira-final-buttons .tira-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.tira-final-buttons .tira-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.tira-final-buttons .tira-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.tira-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.tira-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: tiraPulse 2s infinite;
}

@keyframes tiraPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .tira-banner-title {
        font-size: 40px;
    }
    
    .tira-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tira-zoom-image {
        height: 300px;
    }
    
    .tira-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tira-recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tira-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tira-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tira-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .tira-banner-title {
        font-size: 32px;
    }
    
    .tira-banner-host {
        font-size: 16px;
    }
    
    .tira-banner-info span {
        font-size: 13px;
    }
    
    .tira-price-current {
        font-size: 28px;
    }
    
    .tira-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .tira-stats {
        padding: 40px 0;
    }
    
    .tira-stat-number {
        font-size: 32px;
    }
    
    .tira-about {
        padding: 50px 0;
    }
    
    .tira-about-text h2 {
        font-size: 28px;
    }
    
    .tira-recipes {
        padding: 50px 0;
    }
    
    .tira-recipes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .tira-why {
        padding: 50px 0;
    }
    
    .tira-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tira-audience {
        padding: 50px 0;
    }
    
    .tira-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .tira-included {
        padding: 50px 0;
    }
    
    .tira-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .tira-included-item {
        padding: 20px 16px;
    }
    
    .tira-testimonials {
        padding: 50px 0;
    }
    
    .tira-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tira-faq {
        padding: 50px 0;
    }
    
    .tira-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .tira-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .tira-final-box {
        padding: 32px 24px;
    }
    
    .tira-final-content h2 {
        font-size: 28px;
    }
    
    .tira-final-content p {
        font-size: 16px;
    }
    
    .tira-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .tira-banner-title {
        font-size: 24px;
    }
    
    .tira-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .tira-banner-info {
        gap: 10px 16px;
    }
    
    .tira-banner-info span {
        font-size: 12px;
    }
    
    .tira-price-current {
        font-size: 22px;
    }
    
    .tira-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tira-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .tira-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tira-stat-number {
        font-size: 28px;
    }
    
    .tira-about-text h2 {
        font-size: 24px;
    }
    
    .tira-about-text p {
        font-size: 14px;
    }
    
    .tira-section-header h2 {
        font-size: 26px;
    }
    
    .tira-recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .tira-recipe-card {
        padding: 20px 16px;
    }
    
    .tira-recipe-icon {
        font-size: 28px;
    }
    
    .tira-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .tira-why-card {
        padding: 16px 12px;
    }
    
    .tira-why-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .tira-why-card h5 {
        font-size: 13px;
    }
    
    .tira-why-card p {
        font-size: 12px;
    }
    
    .tira-audience-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .tira-included-grid {
        grid-template-columns: 1fr;
    }
    
    .tira-included-item {
        padding: 16px 14px;
    }
    
    .tira-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .tira-final-box {
        padding: 24px 16px;
    }
    
    .tira-final-content h2 {
        font-size: 22px;
    }
    
    .tira-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tira-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .tira-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .tira-banner-title {
        font-size: 20px;
    }
    
    .tira-banner-host {
        font-size: 14px;
    }
    
    .tira-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .tira-stat-number {
        font-size: 24px;
    }
    
    .tira-stat-label {
        font-size: 12px;
    }
}


/* ============================================= */
/* ALL ABOUT BROWNIES - COMPLETE STYLES         */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.brownie-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.brownie-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.brownie-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.brownie-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.brownie-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: brownieFadeIn 1s ease forwards;
}

@keyframes brownieFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.brownie-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.brownie-banner-badge i {
    margin-right: 6px;
}

.brownie-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.brownie-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.brownie-banner-host strong {
    color: #e8b88a;
}

.brownie-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.brownie-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brownie-banner-info i {
    color: #e8b88a;
}

.brownie-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.brownie-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.brownie-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.brownie-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.brownie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.brownie-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.brownie-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.brownie-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.brownie-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.brownie-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.brownie-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.brownie-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.brownie-stat-item {
    text-align: center;
}

.brownie-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.brownie-stat-item:hover .brownie-stat-number {
    transform: scale(1.05);
    color: #D4A574;
}

.brownie-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.brownie-about {
    padding: 80px 0;
    background: #fff;
}

.brownie-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.brownie-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.brownie-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.brownie-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brownie-zoom-image:hover img {
    transform: scale(1.05);
}

.brownie-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.brownie-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.brownie-about-text {
    padding: 10px 0;
}

.brownie-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.brownie-about-tag i {
    margin-right: 6px;
}

.brownie-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.brownie-about-text h2 span {
    color: #8B4513;
}

.brownie-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.brownie-about-text p strong {
    color: #8B4513;
}

.brownie-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.brownie-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brownie-feature-row:last-child {
    border-bottom: none;
}

.brownie-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. COLLECTION GRID ---------- */
.brownie-collection {
    padding: 80px 0;
    background: #fcf6f0;
}

.brownie-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.brownie-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.brownie-section-badge i {
    margin-right: 6px;
}

.brownie-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.brownie-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.brownie-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.brownie-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brownie-collection-item {
    background: #fff;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.brownie-collection-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.brownie-collection-item .brownie-item-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.brownie-collection-item:hover .brownie-item-icon {
    transform: scale(1.15);
}

.brownie-collection-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
    line-height: 1.3;
}

.brownie-collection-item p {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.brownie-item-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- 5. FEATURES SECTION ---------- */
.brownie-features {
    padding: 80px 0;
    background: #fff;
}

.brownie-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.brownie-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.brownie-section-badge i {
    margin-right: 6px;
}

.brownie-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.brownie-section-header p {
    font-size: 16px;
    color: #666;
}

.brownie-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.brownie-feature-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.brownie-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.brownie-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.brownie-feature-card:hover .brownie-feature-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.brownie-feature-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.brownie-feature-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
/* ---------- 6. AUDIENCE SECTION ---------- */
.brownie-audience {
    padding: 80px 0;
    background: #fcf6f0;
}

.brownie-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.brownie-audience-item {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.brownie-audience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.brownie-audience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.brownie-audience-item:hover .brownie-audience-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.brownie-audience-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.brownie-audience-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. WHAT'S INCLUDED ---------- */
.brownie-included {
    padding: 80px 0;
    background: #fff;
}

.brownie-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brownie-included-item {
    background: #fcf6f0;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.brownie-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.brownie-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.brownie-included-item:hover .brownie-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.brownie-included-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.brownie-included-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 8. TESTIMONIALS ---------- */
.brownie-testimonials {
    padding: 80px 0;
    background: #fcf6f0;
}

.brownie-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.brownie-testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.brownie-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.brownie-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.brownie-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.brownie-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brownie-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.brownie-testimonial-card:hover .brownie-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.brownie-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.brownie-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 9. FAQ ---------- */
.brownie-faq {
    padding: 80px 0;
    background: #fff;
}

.brownie-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.brownie-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.brownie-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.brownie-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.brownie-faq-item:hover .brownie-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.brownie-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.brownie-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 10. FINAL CTA ---------- */
.brownie-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.brownie-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.brownie-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.brownie-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.brownie-final-content {
    position: relative;
    z-index: 1;
}

.brownie-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.brownie-final-badge i {
    margin-right: 6px;
}

.brownie-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.brownie-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.brownie-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.brownie-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.brownie-final-buttons .brownie-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.brownie-final-buttons .brownie-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.brownie-final-buttons .brownie-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.brownie-final-buttons .brownie-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.brownie-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.brownie-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: browniePulse 2s infinite;
}

@keyframes browniePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@media (max-width: 768px) {
    .brownie-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .brownie-banner-title {
        font-size: 32px;
    }
    
    .brownie-banner-host {
        font-size: 16px;
    }
    
    .brownie-banner-info span {
        font-size: 13px;
    }
    
    .brownie-price-current {
        font-size: 28px;
    }
    
    .brownie-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .brownie-stats {
        padding: 40px 0;
    }
    
    .brownie-stat-number {
        font-size: 32px;
    }
    
    .brownie-about {
        padding: 50px 0;
    }
    
    .brownie-about-text h2 {
        font-size: 28px;
    }
    
    .brownie-collection {
        padding: 50px 0;
    }
    
    .brownie-collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .brownie-collection-item {
        padding: 18px 12px;
    }
    
    .brownie-collection-item .brownie-item-icon {
        font-size: 28px;
    }
    
    .brownie-collection-item h5 {
        font-size: 13px;
    }
    
    .brownie-collection-item p {
        font-size: 11px;
    }
    
    .brownie-features {
        padding: 50px 0;
    }
    
    .brownie-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .brownie-feature-card {
        padding: 20px 16px;
    }
    
    .brownie-audience {
        padding: 50px 0;
    }
    
    .brownie-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .brownie-included {
        padding: 50px 0;
    }
    
    .brownie-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .brownie-included-item {
        padding: 20px 16px;
    }
    
    .brownie-testimonials {
        padding: 50px 0;
    }
    
    .brownie-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brownie-faq {
        padding: 50px 0;
    }
    
    .brownie-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .brownie-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .brownie-final-box {
        padding: 32px 24px;
    }
    
    .brownie-final-content h2 {
        font-size: 28px;
    }
    
    .brownie-final-content p {
        font-size: 16px;
    }
    
    .brownie-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .brownie-banner-title {
        font-size: 24px;
    }
    
    .brownie-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .brownie-banner-info {
        gap: 10px 16px;
    }
    
    .brownie-banner-info span {
        font-size: 12px;
    }
    
    .brownie-price-current {
        font-size: 22px;
    }
    
    .brownie-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .brownie-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .brownie-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .brownie-stat-number {
        font-size: 28px;
    }
    
    .brownie-about-text h2 {
        font-size: 24px;
    }
    
    .brownie-about-text p {
        font-size: 14px;
    }
    
    .brownie-section-header h2 {
        font-size: 26px;
    }
    
    .brownie-collection-grid {
        grid-template-columns: 1fr;
    }
    
    .brownie-collection-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
        text-align: left;
    }
    
    .brownie-collection-item .brownie-item-icon {
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .brownie-collection-item h5 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .brownie-collection-item p {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .brownie-item-tag {
        font-size: 9px;
        padding: 1px 8px;
    }
    
    .brownie-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .brownie-feature-card {
        padding: 16px 12px;
    }
    
    .brownie-feature-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .brownie-feature-card h5 {
        font-size: 13px;
    }
    
    .brownie-feature-card p {
        font-size: 12px;
    }
    
    .brownie-audience-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .brownie-audience-item {
        padding: 20px 16px;
    }
    
    .brownie-audience-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .brownie-included-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .brownie-included-item {
        padding: 16px 14px;
    }
    
    .brownie-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .brownie-included-item h5 {
        font-size: 14px;
    }
    
    .brownie-included-item p {
        font-size: 12px;
    }
    
    .brownie-testimonial-card {
        padding: 20px;
    }
    
    .brownie-testimonial-card p {
        font-size: 14px;
    }
    
    .brownie-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .brownie-testimonial-author strong {
        font-size: 14px;
    }
    
    .brownie-testimonial-author span {
        font-size: 12px;
    }
    
    .brownie-final-box {
        padding: 24px 16px;
    }
    
    .brownie-final-content h2 {
        font-size: 22px;
    }
    
    .brownie-final-content p {
        font-size: 14px;
    }
    
    .brownie-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .brownie-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .brownie-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .brownie-banner-title {
        font-size: 20px;
    }
    
    .brownie-banner-host {
        font-size: 14px;
    }
    
    .brownie-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .brownie-stat-number {
        font-size: 24px;
    }
    
    .brownie-stat-label {
        font-size: 11px;
    }
    
    .brownie-zoom-image {
        height: 200px;
    }
    
    .brownie-about-text h2 {
        font-size: 20px;
    }
    
    .brownie-section-header h2 {
        font-size: 22px;
    }
    
    .brownie-collection-item {
        padding: 12px;
        gap: 10px;
    }
    
    .brownie-collection-item .brownie-item-icon {
        font-size: 20px;
    }
    
    .brownie-collection-item h5 {
        font-size: 12px;
    }
    
    .brownie-collection-item p {
        font-size: 11px;
    }
    
    .brownie-features-grid {
        grid-template-columns: 1fr;
    }
    
    .brownie-feature-card {
        padding: 14px 12px;
    }
    
    .brownie-final-content h2 {
        font-size: 18px;
    }
    
    .brownie-final-content p {
        font-size: 13px;
    }

    /* ✅ IMAGE STACK - Image on top, text below */
    .brownie-about-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .brownie-about-image {
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .brownie-about-text {
        text-align: center !important;
    }
}

/* ============================================= */
/* MILLET CAKE MASTERCLASS - COMPLETE STYLES    */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.millet-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.millet-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.millet-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.millet-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.millet-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: milletFadeIn 1s ease forwards;
}

@keyframes milletFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.millet-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.millet-banner-badge i {
    margin-right: 6px;
}

.millet-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.millet-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.millet-banner-host strong {
    color: #e8b88a;
}

.millet-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.millet-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.millet-banner-info i {
    color: #e8b88a;
}

.millet-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.millet-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.millet-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.millet-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.millet-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.millet-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.millet-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.millet-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.millet-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.millet-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.millet-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.millet-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.millet-stat-item {
    text-align: center;
}

.millet-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.millet-stat-item:hover .millet-stat-number {
    transform: scale(1.05);
    color: #D4A574;
}

.millet-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.millet-about {
    padding: 80px 0;
    background: #fff;
}

.millet-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.millet-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.millet-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.millet-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.millet-zoom-image:hover img {
    transform: scale(1.05);
}

.millet-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.millet-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.millet-about-text {
    padding: 10px 0;
}

.millet-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.millet-about-tag i {
    margin-right: 6px;
}

.millet-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.millet-about-text h2 span {
    color: #8B4513;
}

.millet-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.millet-about-text p strong {
    color: #8B4513;
}

.millet-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.millet-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.millet-feature-row:last-child {
    border-bottom: none;
}

.millet-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. RECIPES GRID ---------- */
.millet-recipes {
    padding: 80px 0;
    background: #fcf6f0;
}

.millet-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.millet-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.millet-section-badge i {
    margin-right: 6px;
}

.millet-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #2c1810;
    margin-bottom: 4px;
}

.millet-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.millet-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.millet-recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.millet-recipe-card {
    background: #fff;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.millet-recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.millet-recipe-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.millet-recipe-card:hover .millet-recipe-icon {
    transform: scale(1.15);
}

.millet-recipe-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
    line-height: 1.3;
}

.millet-recipe-card p {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.millet-recipe-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- 5. BONUS SECTION ---------- */
.millet-bonus {
    padding: 80px 0;
    background: #fff;
}

.millet-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.millet-bonus-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.millet-bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.millet-bonus-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.millet-bonus-card:hover .millet-bonus-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.millet-bonus-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.millet-bonus-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 6. WHAT'S INCLUDED ---------- */
.millet-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.millet-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.millet-included-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.millet-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.millet-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.millet-included-item:hover .millet-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.millet-included-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.millet-included-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. BONUS RESOURCES ---------- */
.millet-bonus-resources {
    padding: 80px 0;
    background: #fff;
}

.millet-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.millet-resource-card {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.millet-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.millet-resource-icon {
    font-size: 28px;
    color: #8B4513;
    display: block;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.millet-resource-card:hover .millet-resource-icon {
    transform: scale(1.15);
}

.millet-resource-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
    line-height: 1.3;
}

/* ---------- 8. AUDIENCE SECTION ---------- */
.millet-audience {
    padding: 80px 0;
    background: #fcf6f0;
}

.millet-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.millet-audience-item {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.millet-audience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.millet-audience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.millet-audience-item:hover .millet-audience-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.millet-audience-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.millet-audience-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. TESTIMONIALS ---------- */
.millet-testimonials {
    padding: 80px 0;
    background: #fff;
}

.millet-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.millet-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.millet-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.millet-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.millet-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.millet-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.millet-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.millet-testimonial-card:hover .millet-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.millet-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.millet-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 10. FAQ ---------- */
.millet-faq {
    padding: 80px 0;
    background: #fff;
}

.millet-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.millet-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.millet-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.millet-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.millet-faq-item:hover .millet-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.millet-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.millet-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 11. FINAL CTA ---------- */
.millet-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.millet-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.millet-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.millet-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.millet-final-content {
    position: relative;
    z-index: 1;
}

.millet-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.millet-final-badge i {
    margin-right: 6px;
}

.millet-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.millet-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.millet-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.millet-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.millet-final-buttons .millet-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.millet-final-buttons .millet-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.millet-final-buttons .millet-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.millet-final-buttons .millet-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.millet-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.millet-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: milletPulse 2s infinite;
}

@keyframes milletPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .millet-banner-title {
        font-size: 40px;
    }
    
    .millet-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .millet-zoom-image {
        height: 300px;
    }
    
    .millet-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .millet-recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .millet-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .millet-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .millet-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .millet-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .millet-banner-title {
        font-size: 32px;
    }
    
    .millet-banner-host {
        font-size: 16px;
    }
    
    .millet-banner-info span {
        font-size: 13px;
    }
    
    .millet-price-current {
        font-size: 28px;
    }
    
    .millet-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .millet-stats {
        padding: 40px 0;
    }
    
    .millet-stat-number {
        font-size: 32px;
    }
    
    .millet-about {
        padding: 50px 0;
    }
    
    .millet-about-text h2 {
        font-size: 28px;
    }
    
    .millet-recipes {
        padding: 50px 0;
    }
    
    .millet-recipes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .millet-recipe-card {
        padding: 18px 12px;
    }
    
    .millet-recipe-icon {
        font-size: 28px;
    }
    
    .millet-recipe-card h5 {
        font-size: 13px;
    }
    
    .millet-recipe-card p {
        font-size: 11px;
    }
    
    .millet-bonus {
        padding: 50px 0;
    }
    
    .millet-bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .millet-bonus-card {
        padding: 20px 16px;
    }
    
    .millet-included {
        padding: 50px 0;
    }
    
    .millet-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .millet-included-item {
        padding: 20px 16px;
    }
    
    .millet-bonus-resources {
        padding: 50px 0;
    }
    
    .millet-resources-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .millet-audience {
        padding: 50px 0;
    }
    
    .millet-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .millet-audience-item {
        padding: 20px 16px;
    }
    
    .millet-testimonials {
        padding: 50px 0;
    }
    
    .millet-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .millet-faq {
        padding: 50px 0;
    }
    
    .millet-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .millet-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .millet-final-box {
        padding: 32px 24px;
    }
    
    .millet-final-content h2 {
        font-size: 28px;
    }
    
    .millet-final-content p {
        font-size: 16px;
    }
    
    .millet-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .millet-banner-title {
        font-size: 24px;
    }
    
    .millet-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .millet-banner-info {
        gap: 10px 16px;
    }
    
    .millet-banner-info span {
        font-size: 12px;
    }
    
    .millet-price-current {
        font-size: 22px;
    }
    
    .millet-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .millet-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .millet-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .millet-stat-number {
        font-size: 28px;
    }
    
    .millet-about-text h2 {
        font-size: 24px;
    }
}


/* ============================================= */
/* CARAMEL CAKE - COMPLETE STYLES               */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.caramel-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.caramel-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.caramel-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.caramel-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.caramel-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: caramelFadeIn 1s ease forwards;
}

@keyframes caramelFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.caramel-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.caramel-banner-badge i {
    margin-right: 6px;
}

.caramel-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.caramel-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.caramel-banner-host strong {
    color: #e8b88a;
}

.caramel-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.caramel-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.caramel-banner-info i {
    color: #e8b88a;
}

.caramel-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.caramel-price-current {
    font-size: 44px;
    font-weight: 700;
    color: #F4B400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.caramel-price-tag {
    background: #F4B400;
    color: #2c1810;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.caramel-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.caramel-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.caramel-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.caramel-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.caramel-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.caramel-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. OFFER SECTION ---------- */
.caramel-offer {
    padding: 50px 0;
    background: linear-gradient(135deg, #fcf6f0, #f5ede5);
}

.caramel-offer-box {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.caramel-offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.caramel-offer-badge i {
    margin-right: 6px;
}

.caramel-offer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #fff;
    margin-bottom: 12px;
}

.caramel-offer-content h2 span {
    color: #F4B400;
}

.caramel-offer-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* ---------- 3. ABOUT SECTION ---------- */
.caramel-about {
    padding: 80px 0;
    background: #fff;
}

.caramel-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.caramel-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.caramel-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.caramel-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.caramel-zoom-image:hover img {
    transform: scale(1.05);
}

.caramel-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.caramel-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.caramel-about-text {
    padding: 10px 0;
}

.caramel-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.caramel-about-tag i {
    margin-right: 6px;
}

.caramel-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.caramel-about-text h2 span {
    color: #8B4513;
}

.caramel-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.caramel-about-highlight {
    color: #8B4513 !important;
    font-weight: 500;
}

.caramel-about-highlight strong {
    color: #8B4513;
}

.caramel-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.caramel-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.caramel-feature-row:last-child {
    border-bottom: none;
}

.caramel-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. LEARN SECTION ---------- */
.caramel-learn {
    padding: 80px 0;
    background: #fcf6f0;
}

.caramel-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.caramel-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.caramel-section-badge i {
    margin-right: 6px;
}

.caramel-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.caramel-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.caramel-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.caramel-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.caramel-learn-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: left;
    transition: all 0.3s ease;
}

.caramel-learn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.caramel-learn-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.caramel-learn-card:hover .caramel-learn-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.caramel-learn-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 10px;
}

.caramel-learn-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.caramel-learn-card ul li {
    font-size: 14px;
    color: #666;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.caramel-learn-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: 700;
    font-size: 18px;
}

/* ---------- 5. AUDIENCE SECTION ---------- */
.caramel-audience {
    padding: 80px 0;
    background: #fff;
}

.caramel-audience-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.caramel-audience-item {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.caramel-audience-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.caramel-audience-icon {
    font-size: 28px;
    color: #8B4513;
    display: block;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.caramel-audience-item:hover .caramel-audience-icon {
    transform: scale(1.15);
}

.caramel-audience-item h5 {
    font-size: 13px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
    line-height: 1.2;
}

.caramel-audience-note {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-top: 24px;
    font-weight: 500;
}

/* ---------- 6. WHAT'S INCLUDED ---------- */
.caramel-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.caramel-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.caramel-included-item {
    background: #fff;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.caramel-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.caramel-included-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.caramel-included-item:hover .caramel-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.caramel-included-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
    line-height: 1.2;
}

/* ---------- 7. WHY SECTION ---------- */
.caramel-why {
    padding: 80px 0;
    background: #fff;
}

.caramel-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.caramel-why-card {
    background: #fcf6f0;
    padding: 30px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.caramel-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.caramel-why-icon {
    font-size: 36px;
    color: #8B4513;
    display: block;
    margin-bottom: 12px;
}

.caramel-why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.caramel-why-card p strong {
    color: #8B4513;
}

/* ---------- 8. TESTIMONIALS ---------- */
.caramel-testimonials {
    padding: 80px 0;
    background: #fcf6f0;
}

.caramel-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.caramel-testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.caramel-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.caramel-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.caramel-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.caramel-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.caramel-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.caramel-testimonial-card:hover .caramel-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.caramel-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.caramel-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 9. FAQ ---------- */
.caramel-faq {
    padding: 80px 0;
    background: #fff;
}

.caramel-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.caramel-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.caramel-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.caramel-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.caramel-faq-item:hover .caramel-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.caramel-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.caramel-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 10. FINAL CTA ---------- */
.caramel-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.caramel-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.caramel-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.caramel-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.caramel-final-content {
    position: relative;
    z-index: 1;
}

.caramel-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.caramel-final-badge i {
    margin-right: 6px;
}

.caramel-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.caramel-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.caramel-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.caramel-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.caramel-final-buttons .caramel-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.caramel-final-buttons .caramel-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.caramel-final-buttons .caramel-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.caramel-final-buttons .caramel-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.caramel-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.caramel-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: caramelPulse 2s infinite;
}

@keyframes caramelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .caramel-banner-title {
        font-size: 38px;
    }
    
    .caramel-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .caramel-zoom-image {
        height: 300px;
    }
    
    .caramel-learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .caramel-audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .caramel-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .caramel-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .caramel-banner-title {
        font-size: 28px;
    }
    
    .caramel-banner-host {
        font-size: 16px;
    }
    
    .caramel-banner-info span {
        font-size: 13px;
    }
    
    .caramel-price-current {
        font-size: 34px;
    }
    
    .caramel-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .caramel-offer {
        padding: 30px 0;
    }
    
    .caramel-offer-box {
        padding: 30px 20px;
    }
    
    .caramel-offer-content h2 {
        font-size: 28px;
    }
    
    .caramel-about {
        padding: 50px 0;
    }
    
    .caramel-about-text h2 {
        font-size: 28px;
    }
    
    .caramel-learn {
        padding: 50px 0;
    }
    
    .caramel-learn-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .caramel-learn-card {
        padding: 20px 16px;
    }
    
    .caramel-learn-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .caramel-learn-card h5 {
        font-size: 15px;
    }
    
    .caramel-learn-card ul li {
        font-size: 13px;
    }
    
    .caramel-audience {
        padding: 50px 0;
    }
    
    .caramel-audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .caramel-audience-item {
        padding: 18px 12px;
    }
    
    .caramel-audience-icon {
        font-size: 24px;
    }
    
    .caramel-audience-item h5 {
        font-size: 12px;
    }
    
    .caramel-included {
        padding: 50px 0;
    }
    
    .caramel-included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .caramel-included-item {
        padding: 18px 12px;
    }
    
    .caramel-included-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .caramel-included-item h5 {
        font-size: 13px;
    }
    
    .caramel-why {
        padding: 50px 0;
    }
    
    .caramel-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .caramel-testimonials {
        padding: 50px 0;
    }
    
    .caramel-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .caramel-faq {
        padding: 50px 0;
    }
    
    .caramel-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .caramel-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .caramel-final-box {
        padding: 32px 24px;
    }
    
    .caramel-final-content h2 {
        font-size: 28px;
    }
    
    .caramel-final-content p {
        font-size: 16px;
    }
    
    .caramel-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .caramel-banner-title {
        font-size: 22px;
    }
    
    .caramel-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .caramel-banner-info {
        gap: 10px 16px;
    }
    
    .caramel-banner-info span {
        font-size: 12px;
    }
    
    .caramel-price-current {
        font-size: 28px;
    }
    
    .caramel-price-tag {
        font-size: 12px;
        padding: 3px 12px;
    }
    
    .caramel-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .caramel-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .caramel-offer-content h2 {
        font-size: 24px;
    }
    
    .caramel-offer-content p {
        font-size: 14px;
    }
    
    .caramel-about-text h2 {
        font-size: 22px;
    }
    
    .caramel-about-text p {
        font-size: 14px;
    }
    
    .caramel-section-header h2 {
        font-size: 26px;
    }
    
    .caramel-learn-grid {
        grid-template-columns: 1fr;
    }
    
    .caramel-learn-card ul li {
        font-size: 13px;
    }
    
    .caramel-audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .caramel-audience-item {
        padding: 16px 10px;
    }
    
    .caramel-audience-icon {
        font-size: 22px;
    }
    
    .caramel-audience-item h5 {
        font-size: 12px;
    }
    
    .caramel-audience-note {
        font-size: 13px;
    }
    
    .caramel-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .caramel-included-item {
        padding: 16px 12px;
    }
    
    .caramel-included-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .caramel-included-item h5 {
        font-size: 12px;
    }
    
    .caramel-why-card {
        padding: 20px 16px;
    }
    
    .caramel-why-icon {
        font-size: 28px;
    }
    
    .caramel-why-card p {
        font-size: 14px;
    }
    
    .caramel-testimonial-card {
        padding: 20px;
    }
    
    .caramel-testimonial-card p {
        font-size: 14px;
    }
    
    .caramel-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .caramel-testimonial-author strong {
        font-size: 14px;
    }
    
    .caramel-testimonial-author span {
        font-size: 12px;
    }
    
    .caramel-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 6px;
    }
    
    .caramel-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .caramel-faq-item h4 {
        font-size: 14px;
    }
    
    .caramel-faq-item p {
        font-size: 13px;
    }
    
    .caramel-final-box {
        padding: 24px 16px;
    }
    
    .caramel-final-content h2 {
        font-size: 22px;
    }
    
    .caramel-final-content p {
        font-size: 14px;
    }
    
    .caramel-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .caramel-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .caramel-final-seats {
        font-size: 14px;
    }
}

/* ---------- EXTRA SMALL (max-width: 400px) ---------- */
@media (max-width: 400px) {
    .caramel-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .caramel-banner-title {
        font-size: 18px;
    }
    
    .caramel-banner-host {
        font-size: 14px;
    }
    
    .caramel-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .caramel-price-current {
        font-size: 24px;
    }
    
    .caramel-offer-content h2 {
        font-size: 20px;
    }
    
    .caramel-zoom-image {
        height: 200px;
    }
    
    .caramel-about-text h2 {
        font-size: 20px;
    }
    
    .caramel-section-header h2 {
        font-size: 22px;
    }
    
    .caramel-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .caramel-audience-item {
        padding: 12px 8px;
    }
    
    .caramel-audience-icon {
        font-size: 20px;
    }
    
    .caramel-included-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .caramel-included-item {
        padding: 14px 10px;
    }
    
    .caramel-learn-card {
        padding: 16px 14px;
    }
    
    .caramel-learn-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .caramel-learn-card h5 {
        font-size: 14px;
    }
    
    .caramel-final-content h2 {
        font-size: 18px;
    }
    
    .caramel-final-content p {
        font-size: 13px;
    }
    
    .caramel-final-buttons .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .caramel-testimonial-card {
        padding: 16px;
    }
}


/* ============================================= */
/* VALENTINE GIFTING - COMPLETE STYLES          */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.valentine-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.valentine-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.valentine-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.valentine-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.valentine-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: valentineFadeIn 1s ease forwards;
}

@keyframes valentineFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.valentine-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.valentine-banner-badge i {
    margin-right: 6px;
}

.valentine-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.valentine-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.valentine-banner-host strong {
    color: #e8b88a;
}

.valentine-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.valentine-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.valentine-banner-info i {
    color: #e8b88a;
}

.valentine-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.valentine-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.valentine-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.valentine-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.valentine-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.valentine-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.valentine-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.valentine-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.valentine-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.valentine-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.valentine-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.valentine-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.valentine-stat-item {
    text-align: center;
}

.valentine-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.valentine-stat-item:hover .valentine-stat-number {
    transform: scale(1.05);
    color: #D4A574;
}

.valentine-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.valentine-about {
    padding: 80px 0;
    background: #fff;
}

.valentine-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.valentine-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.valentine-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.valentine-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.valentine-zoom-image:hover img {
    transform: scale(1.05);
}

.valentine-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.valentine-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.valentine-about-text {
    padding: 10px 0;
}

.valentine-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.valentine-about-tag i {
    margin-right: 6px;
}

.valentine-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.valentine-about-text h2 span {
    color: #8B4513;
}

.valentine-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.valentine-about-text p strong {
    color: #8B4513;
}

.valentine-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.valentine-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.valentine-feature-row:last-child {
    border-bottom: none;
}

.valentine-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. COLLECTION GRID ---------- */
.valentine-collection {
    padding: 80px 0;
    background: #fcf6f0;
}

.valentine-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.valentine-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.valentine-section-badge i {
    margin-right: 6px;
}

.valentine-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.valentine-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.valentine-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.valentine-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.valentine-collection-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.valentine-collection-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.valentine-collection-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.valentine-collection-item:hover .valentine-collection-icon {
    transform: scale(1.15);
}

.valentine-collection-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 8px;
}

.valentine-collection-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.valentine-collection-item ul li {
    font-size: 13px;
    color: #666;
    padding: 3px 0;
    line-height: 1.4;
}

.valentine-collection-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- 5. AUDIENCE SECTION ---------- */
.valentine-audience {
    padding: 80px 0;
    background: #fff;
}

.valentine-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.valentine-audience-item {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.valentine-audience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.valentine-audience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.valentine-audience-item:hover .valentine-audience-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.valentine-audience-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.valentine-audience-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 6. WHAT'S INCLUDED ---------- */
.valentine-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.valentine-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.valentine-included-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.valentine-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.valentine-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.valentine-included-item:hover .valentine-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.valentine-included-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.valentine-included-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. TESTIMONIALS ---------- */
.valentine-testimonials {
    padding: 80px 0;
    background: #fff;
}

.valentine-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.valentine-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    transition: all 0.3s ease;
}

.valentine-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.valentine-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.valentine-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.valentine-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.valentine-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5E6D3, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.valentine-testimonial-card:hover .valentine-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.valentine-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.valentine-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 8. FAQ ---------- */
.valentine-faq {
    padding: 80px 0;
    background: #fff;
}

.valentine-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.valentine-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.valentine-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.valentine-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.valentine-faq-item:hover .valentine-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.valentine-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.valentine-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. FINAL CTA ---------- */
.valentine-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.valentine-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.valentine-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.valentine-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.valentine-final-content {
    position: relative;
    z-index: 1;
}

.valentine-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.valentine-final-badge i {
    margin-right: 6px;
}

.valentine-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.valentine-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.valentine-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.valentine-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.valentine-final-buttons .valentine-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.valentine-final-buttons .valentine-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.valentine-final-buttons .valentine-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.valentine-final-buttons .valentine-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.valentine-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.valentine-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: valentinePulse 2s infinite;
}

@keyframes valentinePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
    .valentine-banner-title {
        font-size: 40px;
    }
    
    .valentine-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .valentine-zoom-image {
        height: 300px;
    }
    
    .valentine-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .valentine-collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .valentine-audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .valentine-included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
    /* Banner */
    .valentine-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .valentine-banner-title {
        font-size: 32px;
    }
    
    .valentine-banner-host {
        font-size: 16px;
    }
    
    .valentine-banner-info {
        gap: 12px 20px;
    }
    
    .valentine-banner-info span {
        font-size: 13px;
    }
    
    .valentine-price-current {
        font-size: 28px;
    }
    
    .valentine-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Stats */
    .valentine-stats {
        padding: 40px 0;
    }
    
    .valentine-stats-grid {
        gap: 20px;
    }
    
    .valentine-stat-number {
        font-size: 32px;
    }
    
    /* About */
    .valentine-about {
        padding: 50px 0;
    }
    
    .valentine-about-text h2 {
        font-size: 28px;
    }
    
    .valentine-about-text p {
        font-size: 15px;
    }
    
    .valentine-about-features {
        gap: 4px;
    }
    
    .valentine-feature-row {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .valentine-feature-row i {
        font-size: 16px;
        width: 20px;
    }
    
    /* Collection */
    .valentine-collection {
        padding: 50px 0;
    }
    
    .valentine-collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .valentine-collection-item {
        padding: 18px 14px;
        overflow: hidden;
    }
    
    .valentine-collection-icon {
        font-size: 28px;
    }
    
    .valentine-collection-item h5 {
        font-size: 14px;
    }
    
    .valentine-collection-item ul li {
        font-size: 12px;
        padding: 2px 0;
    }
    
    /* Audience */
    .valentine-audience {
        padding: 50px 0;
    }
    
    .valentine-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .valentine-audience-item {
        padding: 20px 16px;
    }
    
    .valentine-audience-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .valentine-audience-item h5 {
        font-size: 15px;
    }
    
    .valentine-audience-item p {
        font-size: 13px;
    }
    
    /* Included */
    .valentine-included {
        padding: 50px 0;
    }
    
    .valentine-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .valentine-included-item {
        padding: 20px 16px;
    }
    
    .valentine-included-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .valentine-included-item h5 {
        font-size: 14px;
    }
    
    .valentine-included-item p {
        font-size: 12px;
    }
    
    /* Testimonials */
    .valentine-testimonials {
        padding: 50px 0;
    }
    
    .valentine-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .valentine-testimonial-card {
        padding: 20px;
    }
    
    .valentine-testimonial-card p {
        font-size: 14px;
    }
    
    .valentine-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* FAQ */
    .valentine-faq {
        padding: 50px 0;
    }
    
    .valentine-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .valentine-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
    }
    
    .valentine-faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .valentine-faq-item h4 {
        font-size: 15px;
    }
    
    .valentine-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .valentine-final-box {
        padding: 32px 24px;
    }
    
    .valentine-final-content h2 {
        font-size: 28px;
    }
    
    .valentine-final-content p {
        font-size: 16px;
    }
    
    .valentine-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ---------- SMALL MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {
    /* Banner */
    .valentine-banner-title {
        font-size: 24px;
    }
    
    .valentine-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .valentine-banner-info {
        gap: 8px 14px;
    }
    
    .valentine-banner-info span {
        font-size: 12px;
    }
    
    .valentine-price-current {
        font-size: 22px;
    }
    
    .valentine-price-original {
        font-size: 15px;
    }
    
    .valentine-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .valentine-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Stats */
    .valentine-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .valentine-stat-number {
        font-size: 28px;
    }
    
    .valentine-stat-label {
        font-size: 12px;
    }
    
    /* About */
    .valentine-about-text h2 {
        font-size: 24px;
    }
    
    .valentine-about-text p {
        font-size: 14px;
    }
    
    .valentine-about-tag {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    .valentine-feature-row {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .valentine-feature-row i {
        font-size: 15px;
        width: 18px;
    }
    
    /* Section Headers */
    .valentine-section-header h2 {
        font-size: 26px;
    }
    
    .valentine-section-header p {
        font-size: 14px;
    }
    
    /* Collection */
    .valentine-collection-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .valentine-collection-item {
        padding: 16px 14px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }
    
    .valentine-collection-icon {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .valentine-collection-item h5 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .valentine-collection-item ul li {
        font-size: 12px;
        padding: 2px 0;
    }
    
    .valentine-collection-tag {
        font-size: 9px;
        padding: 1px 10px;
        margin-top: 4px;
    }
    
    /* Audience */
    .valentine-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .valentine-audience-item {
        padding: 16px 12px;
    }
    
    .valentine-audience-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .valentine-audience-item h5 {
        font-size: 14px;
    }
    
    .valentine-audience-item p {
        font-size: 12px;
    }
    
    /* Included */
    .valentine-included-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .valentine-included-item {
        padding: 16px 14px;
    }
    
    .valentine-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .valentine-included-item h5 {
        font-size: 14px;
    }
    
    .valentine-included-item p {
        font-size: 12px;
    }
    
    /* Testimonials */
    .valentine-testimonial-card {
        padding: 18px;
    }
    
    .valentine-testimonial-card p {
        font-size: 14px;
    }
    
    .valentine-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .valentine-testimonial-author strong {
        font-size: 14px;
    }
    
    .valentine-testimonial-author span {
        font-size: 12px;
    }
    
    /* FAQ */
    .valentine-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 4px;
    }
    
    .valentine-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .valentine-faq-item h4 {
        font-size: 14px;
    }
    
    .valentine-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .valentine-final-box {
        padding: 24px 16px;
    }
    
    .valentine-final-content h2 {
        font-size: 22px;
    }
    
    .valentine-final-content p {
        font-size: 14px;
    }
    
    .valentine-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .valentine-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .valentine-final-seats {
        font-size: 14px;
    }
}

/* ---------- EXTRA SMALL (max-width: 400px) ---------- */
@media (max-width: 400px) {
    /* Banner */
    .valentine-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .valentine-banner-title {
        font-size: 20px;
    }
    
    .valentine-banner-host {
        font-size: 14px;
    }
    
    .valentine-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .valentine-price-current {
        font-size: 20px;
    }
    
    /* Stats */
    .valentine-stat-number {
        font-size: 24px;
    }
    
    .valentine-stat-label {
        font-size: 11px;
    }
    
    /* About */
    .valentine-zoom-image {
        height: 200px;
    }
    
    .valentine-about-text h2 {
        font-size: 20px;
    }
    
    .valentine-about-text p {
        font-size: 13px;
    }
    
    .valentine-feature-row {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .valentine-feature-row i {
        font-size: 14px;
        width: 16px;
    }
    
    /* Section Headers */
    .valentine-section-header h2 {
        font-size: 22px;
    }
    
    /* Collection */
    .valentine-collection-item {
        padding: 14px 12px;
    }
    
    .valentine-collection-icon {
        font-size: 22px;
    }
    
    .valentine-collection-item h5 {
        font-size: 13px;
    }
    
    .valentine-collection-item ul li {
        font-size: 11px;
    }
    
    /* Audience */
    .valentine-audience-item {
        padding: 14px 10px;
    }
    
    .valentine-audience-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .valentine-audience-item h5 {
        font-size: 13px;
    }
    
    .valentine-audience-item p {
        font-size: 11px;
    }
    
    /* Included */
    .valentine-included-item {
        padding: 14px 12px;
    }
    
    .valentine-included-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .valentine-included-item h5 {
        font-size: 13px;
    }
    
    .valentine-included-item p {
        font-size: 11px;
    }
    
    /* Testimonials */
    .valentine-testimonial-card {
        padding: 16px;
    }
    
    .valentine-testimonial-card p {
        font-size: 13px;
    }
    
    .valentine-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .valentine-testimonial-author strong {
        font-size: 13px;
    }
    
    .valentine-testimonial-author span {
        font-size: 11px;
    }
    
    /* FAQ */
    .valentine-faq-item {
        padding: 12px 14px;
    }
    
    .valentine-faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .valentine-faq-item h4 {
        font-size: 13px;
    }
    
    .valentine-faq-item p {
        font-size: 12px;
    }
    
    /* Final CTA */
    .valentine-final-box {
        padding: 20px 14px;
    }
    
    .valentine-final-content h2 {
        font-size: 18px;
    }
    
    .valentine-final-content p {
        font-size: 13px;
    }
    
    .valentine-final-buttons .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .valentine-final-seats {
        font-size: 13px;
    }
}

/* ============================================= */
/* MILLET BROWNIE MASTERCLASS - COMPLETE STYLES */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.mbrownie-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.mbrownie-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mbrownie-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mbrownie-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.mbrownie-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: mbrownieFadeIn 1s ease forwards;
}

@keyframes mbrownieFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.mbrownie-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.mbrownie-banner-badge i {
    margin-right: 6px;
}

.mbrownie-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.mbrownie-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.mbrownie-banner-host strong {
    color: #e8b88a;
}

.mbrownie-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.mbrownie-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mbrownie-banner-info i {
    color: #e8b88a;
}

.mbrownie-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.mbrownie-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.mbrownie-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.mbrownie-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.mbrownie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.mbrownie-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.mbrownie-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.mbrownie-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.mbrownie-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.mbrownie-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.mbrownie-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.mbrownie-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.mbrownie-stat-item {
    text-align: center;
}

.mbrownie-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.mbrownie-stat-item:hover .mbrownie-stat-number {
    transform: scale(1.05);
    color: #D4A574;
}

.mbrownie-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.mbrownie-about {
    padding: 80px 0;
    background: #fff;
}

.mbrownie-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mbrownie-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.mbrownie-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.mbrownie-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mbrownie-zoom-image:hover img {
    transform: scale(1.05);
}

.mbrownie-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.mbrownie-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.mbrownie-about-text {
    padding: 10px 0;
}

.mbrownie-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mbrownie-about-tag i {
    margin-right: 6px;
}

.mbrownie-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.mbrownie-about-text h2 span {
    color: #8B4513;
}

.mbrownie-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.mbrownie-about-text p strong {
    color: #8B4513;
}

.mbrownie-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.mbrownie-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mbrownie-feature-row:last-child {
    border-bottom: none;
}

.mbrownie-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. RECIPES GRID ---------- */
.mbrownie-recipes {
    padding: 80px 0;
    background: #fcf6f0;
}

.mbrownie-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mbrownie-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mbrownie-section-badge i {
    margin-right: 6px;
}

.mbrownie-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.mbrownie-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.mbrownie-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.mbrownie-recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mbrownie-recipe-card {
    background: #fff;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mbrownie-recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.mbrownie-recipe-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.mbrownie-recipe-card:hover .mbrownie-recipe-icon {
    transform: scale(1.15);
}

.mbrownie-recipe-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
    line-height: 1.3;
}

.mbrownie-recipe-card p {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.mbrownie-recipe-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- 5. BONUS SECTION ---------- */
.mbrownie-bonus {
    padding: 80px 0;
    background: #fff;
}

.mbrownie-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.mbrownie-bonus-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.mbrownie-bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.mbrownie-bonus-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.mbrownie-bonus-card:hover .mbrownie-bonus-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.mbrownie-bonus-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.mbrownie-bonus-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 6. WHAT'S INCLUDED ---------- */
.mbrownie-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.mbrownie-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mbrownie-included-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.mbrownie-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.mbrownie-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.mbrownie-included-item:hover .mbrownie-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.mbrownie-included-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.mbrownie-included-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. BONUS RESOURCES ---------- */
.mbrownie-bonus-resources {
    padding: 80px 0;
    background: #fff;
}

.mbrownie-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.mbrownie-resource-card {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.mbrownie-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.mbrownie-resource-icon {
    font-size: 28px;
    color: #8B4513;
    display: block;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.mbrownie-resource-card:hover .mbrownie-resource-icon {
    transform: scale(1.15);
}

.mbrownie-resource-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
    line-height: 1.3;
}

/* ---------- 8. AUDIENCE SECTION ---------- */
.mbrownie-audience {
    padding: 80px 0;
    background: #fcf6f0;
}

.mbrownie-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.mbrownie-audience-item {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.mbrownie-audience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.mbrownie-audience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.mbrownie-audience-item:hover .mbrownie-audience-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.mbrownie-audience-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.mbrownie-audience-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. TESTIMONIALS ---------- */
.mbrownie-testimonials {
    padding: 80px 0;
    background: #fff;
}

.mbrownie-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.mbrownie-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.mbrownie-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.mbrownie-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mbrownie-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.mbrownie-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mbrownie-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5E6D3, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.mbrownie-testimonial-card:hover .mbrownie-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.mbrownie-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.mbrownie-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 10. FAQ ---------- */
.mbrownie-faq {
    padding: 80px 0;
    background: #fff;
}

.mbrownie-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.mbrownie-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.mbrownie-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.mbrownie-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.mbrownie-faq-item:hover .mbrownie-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.mbrownie-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.mbrownie-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 11. FINAL CTA ---------- */
.mbrownie-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.mbrownie-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.mbrownie-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.mbrownie-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.mbrownie-final-content {
    position: relative;
    z-index: 1;
}

.mbrownie-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.mbrownie-final-badge i {
    margin-right: 6px;
}

.mbrownie-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.mbrownie-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.mbrownie-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.mbrownie-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.mbrownie-final-buttons .mbrownie-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.mbrownie-final-buttons .mbrownie-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.mbrownie-final-buttons .mbrownie-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.mbrownie-final-buttons .mbrownie-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.mbrownie-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.mbrownie-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: mbrowniePulse 2s infinite;
}

@keyframes mbrowniePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}


/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
    .mbrownie-banner-title {
        font-size: 40px;
    }
    
    .mbrownie-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mbrownie-zoom-image {
        height: 300px;
    }
    
    .mbrownie-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mbrownie-recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mbrownie-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mbrownie-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mbrownie-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
    .mbrownie-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .mbrownie-banner-title {
        font-size: 32px;
    }
    
    .mbrownie-banner-host {
        font-size: 16px;
    }
    
    .mbrownie-banner-info span {
        font-size: 13px;
    }
    
    .mbrownie-price-current {
        font-size: 28px;
    }
    
    .mbrownie-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .mbrownie-stats {
        padding: 40px 0;
    }
    
    .mbrownie-stat-number {
        font-size: 32px;
    }
    
    .mbrownie-about {
        padding: 50px 0;
    }
    
    .mbrownie-about-text h2 {
        font-size: 28px;
    }
    
    .mbrownie-about-text p {
        font-size: 15px;
    }
    
    .mbrownie-recipes {
        padding: 50px 0;
    }
    
    .mbrownie-recipes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .mbrownie-recipe-card {
        padding: 18px 12px;
    }
    
    .mbrownie-recipe-icon {
        font-size: 28px;
    }
    
    .mbrownie-recipe-card h5 {
        font-size: 13px;
    }
    
    .mbrownie-recipe-card p {
        font-size: 11px;
    }
    
    .mbrownie-bonus {
        padding: 50px 0;
    }
    
    .mbrownie-bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mbrownie-bonus-card {
        padding: 20px 16px;
    }
    
    .mbrownie-included {
        padding: 50px 0;
    }
    
    .mbrownie-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .mbrownie-included-item {
        padding: 20px 16px;
    }
    
    .mbrownie-bonus-resources {
        padding: 50px 0;
    }
    
    .mbrownie-resources-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .mbrownie-audience {
        padding: 50px 0;
    }
    
    .mbrownie-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .mbrownie-audience-item {
        padding: 20px 16px;
    }
    
    .mbrownie-testimonials {
        padding: 50px 0;
    }
    
    .mbrownie-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mbrownie-faq {
        padding: 50px 0;
    }
    
    .mbrownie-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .mbrownie-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .mbrownie-final-box {
        padding: 32px 24px;
    }
    
    .mbrownie-final-content h2 {
        font-size: 28px;
    }
    
    .mbrownie-final-content p {
        font-size: 16px;
    }
    
    .mbrownie-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ---------- SMALL MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {
    /* Banner */
    .mbrownie-banner-title {
        font-size: 24px;
    }
    
    .mbrownie-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .mbrownie-banner-info {
        gap: 10px 16px;
    }
    
    .mbrownie-banner-info span {
        font-size: 12px;
    }
    
    .mbrownie-price-current {
        font-size: 22px;
    }
    
    .mbrownie-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mbrownie-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Stats */
    .mbrownie-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mbrownie-stat-number {
        font-size: 28px;
    }
    
    .mbrownie-stat-label {
        font-size: 12px;
    }
    
    /* About */
    .mbrownie-about {
        padding: 40px 0;
    }
    
    .mbrownie-zoom-image {
        height: 220px;
    }
    
    .mbrownie-about-text h2 {
        font-size: 24px;
    }
    
    .mbrownie-about-text p {
        font-size: 14px;
    }
    
    .mbrownie-about-tag {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    .mbrownie-feature-row {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .mbrownie-feature-row i {
        font-size: 16px;
        width: 20px;
    }
    
    /* Section Headers */
    .mbrownie-section-header h2 {
        font-size: 26px;
    }
    
    .mbrownie-section-header p {
        font-size: 14px;
    }
    
    /* Recipes */
    .mbrownie-recipes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mbrownie-recipe-card {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
        text-align: left;
    }
    
    .mbrownie-recipe-icon {
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .mbrownie-recipe-card h5 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .mbrownie-recipe-card p {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .mbrownie-recipe-tag {
        font-size: 9px;
        padding: 1px 8px;
    }
    
    /* Bonus */
    .mbrownie-bonus-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .mbrownie-bonus-card {
        padding: 18px 14px;
    }
    
    .mbrownie-bonus-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .mbrownie-bonus-card h5 {
        font-size: 14px;
    }
    
    .mbrownie-bonus-card p {
        font-size: 12px;
    }
    
    /* Included */
    .mbrownie-included-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .mbrownie-included-item {
        padding: 16px 14px;
    }
    
    .mbrownie-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .mbrownie-included-item h5 {
        font-size: 14px;
    }
    
    .mbrownie-included-item p {
        font-size: 12px;
    }
    
    /* Resources */
    .mbrownie-resources-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .mbrownie-resource-card {
        padding: 16px 12px;
    }
    
    .mbrownie-resource-icon {
        font-size: 22px;
    }
    
    .mbrownie-resource-card h5 {
        font-size: 12px;
    }
    
    /* Audience */
    .mbrownie-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .mbrownie-audience-item {
        padding: 16px 12px;
    }
    
    .mbrownie-audience-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .mbrownie-audience-item h5 {
        font-size: 14px;
    }
    
    .mbrownie-audience-item p {
        font-size: 12px;
    }
    
    /* Testimonials */
    .mbrownie-testimonial-card {
        padding: 20px;
    }
    
    .mbrownie-testimonial-card p {
        font-size: 14px;
    }
    
    .mbrownie-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .mbrownie-testimonial-author strong {
        font-size: 14px;
    }
    
    .mbrownie-testimonial-author span {
        font-size: 12px;
    }
    
    /* FAQ */
    .mbrownie-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 6px;
    }
    
    .mbrownie-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .mbrownie-faq-item h4 {
        font-size: 14px;
    }
    
    .mbrownie-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .mbrownie-final-box {
        padding: 24px 16px;
    }
    
    .mbrownie-final-content h2 {
        font-size: 22px;
    }
    
    .mbrownie-final-content p {
        font-size: 14px;
    }
    
    .mbrownie-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mbrownie-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .mbrownie-final-seats {
        font-size: 14px;
    }
}

/* ---------- EXTRA SMALL (max-width: 400px) ---------- */
@media (max-width: 400px) {
    /* Banner */
    .mbrownie-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .mbrownie-banner-title {
        font-size: 20px;
    }
    
    .mbrownie-banner-host {
        font-size: 14px;
    }
    
    .mbrownie-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .mbrownie-price-current {
        font-size: 20px;
    }
    
    /* Stats */
    .mbrownie-stat-number {
        font-size: 24px;
    }
    
    .mbrownie-stat-label {
        font-size: 11px;
    }
    
    /* About */
    .mbrownie-zoom-image {
        height: 180px;
    }
    
    .mbrownie-about-text h2 {
        font-size: 20px;
    }
    
    .mbrownie-about-text p {
        font-size: 13px;
    }
    
    .mbrownie-feature-row {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .mbrownie-feature-row i {
        font-size: 14px;
        width: 18px;
    }
    
    /* Section Headers */
    .mbrownie-section-header h2 {
        font-size: 22px;
    }
    
    .mbrownie-section-header p {
        font-size: 13px;
    }
    
    /* Recipes */
    .mbrownie-recipes-grid {
        gap: 10px;
    }
    
    .mbrownie-recipe-card {
        padding: 12px 10px;
        gap: 10px;
    }
    
    .mbrownie-recipe-icon {
        font-size: 20px;
    }
    
    .mbrownie-recipe-card h5 {
        font-size: 13px;
    }
    
    .mbrownie-recipe-card p {
        font-size: 11px;
    }
    
    /* Bonus */
    .mbrownie-bonus-card {
        padding: 14px 12px;
    }
    
    .mbrownie-bonus-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    /* Included */
    .mbrownie-included-item {
        padding: 14px 12px;
    }
    
    .mbrownie-included-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .mbrownie-included-item h5 {
        font-size: 13px;
    }
    
    .mbrownie-included-item p {
        font-size: 11px;
    }
    
    /* Resources */
    .mbrownie-resources-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mbrownie-resource-card {
        padding: 14px 10px;
    }
    
    .mbrownie-resource-icon {
        font-size: 20px;
    }
    
    .mbrownie-resource-card h5 {
        font-size: 11px;
    }
    
    /* Audience */
    .mbrownie-audience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mbrownie-audience-item {
        padding: 14px 10px;
    }
    
    .mbrownie-audience-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .mbrownie-audience-item h5 {
        font-size: 13px;
    }
    
    .mbrownie-audience-item p {
        font-size: 11px;
    }
    
    /* Testimonials */
    .mbrownie-testimonial-card {
        padding: 16px;
    }
    
    .mbrownie-testimonial-card p {
        font-size: 13px;
    }
    
    .mbrownie-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .mbrownie-testimonial-author strong {
        font-size: 13px;
    }
    
    .mbrownie-testimonial-author span {
        font-size: 11px;
    }
    
    /* FAQ */
    .mbrownie-faq-item {
        padding: 12px 14px;
    }
    
    .mbrownie-faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .mbrownie-faq-item h4 {
        font-size: 13px;
    }
    
    .mbrownie-faq-item p {
        font-size: 12px;
    }
    
    /* Final CTA */
    .mbrownie-final-box {
        padding: 20px 14px;
    }
    
    .mbrownie-final-content h2 {
        font-size: 18px;
    }
    
    .mbrownie-final-content p {
        font-size: 13px;
    }
    
    .mbrownie-final-buttons .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .mbrownie-final-seats {
        font-size: 13px;
    }
}

/* ============================================= */
/* CUPCAKE MASTERCLASS - COMPLETE STYLES        */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.cupcake-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.cupcake-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cupcake-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cupcake-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.cupcake-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: cupcakeFadeIn 1s ease forwards;
}

@keyframes cupcakeFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.cupcake-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.cupcake-banner-badge i {
    margin-right: 6px;
}

.cupcake-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.cupcake-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.cupcake-banner-host strong {
    color: #e8b88a;
}

.cupcake-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.cupcake-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cupcake-banner-info i {
    color: #e8b88a;
}

.cupcake-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cupcake-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.cupcake-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.cupcake-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.cupcake-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.cupcake-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cupcake-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.cupcake-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.cupcake-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cupcake-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.cupcake-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.cupcake-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cupcake-stat-item {
    text-align: center;
}

.cupcake-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
    transition: all 0.3s ease;
}

.cupcake-stat-item:hover .cupcake-stat-number {
    transform: scale(1.05);
    color: #D4A574;
}

.cupcake-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.cupcake-about {
    padding: 80px 0;
    background: #fff;
}

.cupcake-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cupcake-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.cupcake-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.cupcake-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cupcake-zoom-image:hover img {
    transform: scale(1.05);
}

.cupcake-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.cupcake-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.cupcake-about-text {
    padding: 10px 0;
}

.cupcake-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cupcake-about-tag i {
    margin-right: 6px;
}

.cupcake-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.cupcake-about-text h2 span {
    color: #8B4513;
}

.cupcake-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.cupcake-about-text p strong {
    color: #8B4513;
}

.cupcake-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.cupcake-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cupcake-feature-row:last-child {
    border-bottom: none;
}

.cupcake-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. RECIPES GRID ---------- */
.cupcake-recipes {
    padding: 80px 0;
    background: #fcf6f0;
}

.cupcake-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.cupcake-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cupcake-section-badge i {
    margin-right: 6px;
}

.cupcake-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.cupcake-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.cupcake-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.cupcake-recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cupcake-recipe-card {
    background: #fff;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.cupcake-recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cupcake-recipe-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.cupcake-recipe-card:hover .cupcake-recipe-icon {
    transform: scale(1.1);
}

.cupcake-recipe-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cupcake-recipe-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- 5. FILLINGS GRID ---------- */
.cupcake-fillings {
    padding: 80px 0;
    background: #fff;
}

.cupcake-fillings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cupcake-filling-card {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.cupcake-filling-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cupcake-filling-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.cupcake-filling-card:hover .cupcake-filling-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.cupcake-filling-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
}

/* ---------- 6. SKILLS SECTION ---------- */
.cupcake-skills {
    padding: 80px 0;
    background: #fcf6f0;
}

.cupcake-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.cupcake-skill-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.cupcake-skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cupcake-skill-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.cupcake-skill-card:hover .cupcake-skill-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.cupcake-skill-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.cupcake-skill-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. AUDIENCE SECTION ---------- */
.cupcake-audience {
    padding: 80px 0;
    background: #fff;
}

.cupcake-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.cupcake-audience-item {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.cupcake-audience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cupcake-audience-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.cupcake-audience-item:hover .cupcake-audience-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.cupcake-audience-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.cupcake-audience-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 8. WHAT'S INCLUDED ---------- */
.cupcake-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.cupcake-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cupcake-included-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.cupcake-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cupcake-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.cupcake-included-item:hover .cupcake-included-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.cupcake-included-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.cupcake-included-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. TESTIMONIALS ---------- */
.cupcake-testimonials {
    padding: 80px 0;
    background: #fff;
}

.cupcake-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cupcake-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.cupcake-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.cupcake-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cupcake-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.cupcake-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cupcake-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5E6D3, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cupcake-testimonial-card:hover .cupcake-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.cupcake-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.cupcake-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 10. FAQ ---------- */
.cupcake-faq {
    padding: 80px 0;
    background: #fff;
}

.cupcake-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cupcake-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.cupcake-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.cupcake-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.cupcake-faq-item:hover .cupcake-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.cupcake-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.cupcake-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 11. FINAL CTA ---------- */
.cupcake-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.cupcake-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.cupcake-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.cupcake-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cupcake-final-content {
    position: relative;
    z-index: 1;
}

.cupcake-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.cupcake-final-badge i {
    margin-right: 6px;
}

.cupcake-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.cupcake-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.cupcake-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cupcake-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cupcake-final-buttons .cupcake-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.cupcake-final-buttons .cupcake-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.cupcake-final-buttons .cupcake-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.cupcake-final-buttons .cupcake-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.cupcake-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.cupcake-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: cupcakePulse 2s infinite;
}

@keyframes cupcakePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
    .cupcake-banner-title {
        font-size: 40px;
    }
    
    .cupcake-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cupcake-zoom-image {
        height: 300px;
    }
    
    .cupcake-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cupcake-recipes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cupcake-fillings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cupcake-skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cupcake-audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cupcake-included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
    /* Banner */
    .cupcake-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .cupcake-banner-title {
        font-size: 32px;
    }
    
    .cupcake-banner-host {
        font-size: 16px;
    }
    
    .cupcake-banner-info {
        gap: 12px 20px;
    }
    
    .cupcake-banner-info span {
        font-size: 13px;
    }
    
    .cupcake-price-current {
        font-size: 28px;
    }
    
    .cupcake-price-original {
        font-size: 16px;
    }
    
    .cupcake-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Stats */
    .cupcake-stats {
        padding: 40px 0;
    }
    
    .cupcake-stats-grid {
        gap: 20px;
    }
    
    .cupcake-stat-number {
        font-size: 32px;
    }
    
    /* About */
    .cupcake-about {
        padding: 50px 0;
    }
    
    .cupcake-about-grid {
        gap: 24px;
    }
    
    .cupcake-about-image {
        order: -1;
    }
    
    .cupcake-zoom-image {
        height: 260px;
    }
    
    .cupcake-about-text {
        padding: 0;
    }
    
    .cupcake-about-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .cupcake-about-text h2 span {
        display: block;
    }
    
    .cupcake-about-text p {
        font-size: 15px;
    }
    
    .cupcake-about-tag {
        font-size: 12px;
        padding: 3px 14px;
    }
    
    .cupcake-about-features {
        gap: 4px;
    }
    
    .cupcake-feature-row {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .cupcake-feature-row i {
        font-size: 16px;
        width: 20px;
    }
    
    /* Section Headers */
    .cupcake-section-header h2 {
        font-size: 28px;
    }
    
    .cupcake-section-header p {
        font-size: 15px;
    }
    
    /* Recipes */
    .cupcake-recipes {
        padding: 50px 0;
    }
    
    .cupcake-recipes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .cupcake-recipe-card {
        padding: 18px 12px;
    }
    
    .cupcake-recipe-icon {
        font-size: 28px;
    }
    
    .cupcake-recipe-card h5 {
        font-size: 13px;
    }
    
    .cupcake-recipe-tag {
        font-size: 9px;
        padding: 1px 8px;
    }
    
    /* Fillings */
    .cupcake-fillings {
        padding: 50px 0;
    }
    
    .cupcake-fillings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .cupcake-filling-card {
        padding: 18px 12px;
    }
    
    .cupcake-filling-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .cupcake-filling-card h5 {
        font-size: 13px;
    }
    
    /* Skills */
    .cupcake-skills {
        padding: 50px 0;
    }
    
    .cupcake-skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .cupcake-skill-card {
        padding: 20px 16px;
    }
    
    .cupcake-skill-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .cupcake-skill-card h5 {
        font-size: 14px;
    }
    
    .cupcake-skill-card p {
        font-size: 12px;
    }
    
    /* Audience */
    .cupcake-audience {
        padding: 50px 0;
    }
    
    .cupcake-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .cupcake-audience-item {
        padding: 20px 16px;
    }
    
    .cupcake-audience-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .cupcake-audience-item h5 {
        font-size: 15px;
    }
    
    .cupcake-audience-item p {
        font-size: 13px;
    }
    
    /* Included */
    .cupcake-included {
        padding: 50px 0;
    }
    
    .cupcake-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .cupcake-included-item {
        padding: 20px 16px;
    }
    
    .cupcake-included-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .cupcake-included-item h5 {
        font-size: 14px;
    }
    
    .cupcake-included-item p {
        font-size: 12px;
    }
    
    /* Testimonials */
    .cupcake-testimonials {
        padding: 50px 0;
    }
    
    .cupcake-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cupcake-testimonial-card {
        padding: 20px;
    }
    
    .cupcake-testimonial-card p {
        font-size: 14px;
    }
    
    .cupcake-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .cupcake-testimonial-author strong {
        font-size: 14px;
    }
    
    .cupcake-testimonial-author span {
        font-size: 12px;
    }
    
    /* FAQ */
    .cupcake-faq {
        padding: 50px 0;
    }
    
    .cupcake-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .cupcake-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
    }
    
    .cupcake-faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .cupcake-faq-item h4 {
        font-size: 15px;
    }
    
    .cupcake-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .cupcake-final-box {
        padding: 32px 24px;
    }
    
    .cupcake-final-content h2 {
        font-size: 28px;
    }
    
    .cupcake-final-content p {
        font-size: 16px;
    }
    
    .cupcake-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ---------- SMALL MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {
    /* Banner */
    .cupcake-banner-title {
        font-size: 24px;
    }
    
    .cupcake-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .cupcake-banner-info {
        gap: 8px 14px;
    }
    
    .cupcake-banner-info span {
        font-size: 12px;
    }
    
    .cupcake-price-current {
        font-size: 22px;
    }
    
    .cupcake-price-original {
        font-size: 14px;
    }
    
    .cupcake-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cupcake-banner-buttons .btn {
        width: 90%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Stats */
    .cupcake-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .cupcake-stat-number {
        font-size: 28px;
    }
    
    .cupcake-stat-label {
        font-size: 12px;
    }
    
    /* About */
    .cupcake-about {
        padding: 40px 0;
    }
    
    .cupcake-zoom-image {
        height: 220px;
    }
    
    .cupcake-about-text h2 {
        font-size: 24px;
    }
    
    .cupcake-about-text p {
        font-size: 14px;
    }
    
    .cupcake-about-tag {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    .cupcake-feature-row {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .cupcake-feature-row i {
        font-size: 15px;
        width: 18px;
    }
    
    /* Section Headers */
    .cupcake-section-header h2 {
        font-size: 26px;
    }
    
    .cupcake-section-header p {
        font-size: 14px;
    }
    
    /* Recipes */
    .cupcake-recipes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cupcake-recipe-card {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
        text-align: left;
    }
    
    .cupcake-recipe-icon {
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .cupcake-recipe-card h5 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .cupcake-recipe-tag {
        font-size: 9px;
        padding: 1px 8px;
    }
    
    /* Fillings */
    .cupcake-fillings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .cupcake-filling-card {
        padding: 16px 12px;
    }
    
    .cupcake-filling-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .cupcake-filling-card h5 {
        font-size: 13px;
    }
    
    /* Skills */
    .cupcake-skills-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .cupcake-skill-card {
        padding: 18px 14px;
    }
    
    .cupcake-skill-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    /* Audience */
    .cupcake-audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .cupcake-audience-item {
        padding: 16px 12px;
    }
    
    .cupcake-audience-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .cupcake-audience-item h5 {
        font-size: 14px;
    }
    
    .cupcake-audience-item p {
        font-size: 12px;
    }
    
    /* Included */
    .cupcake-included-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .cupcake-included-item {
        padding: 16px 14px;
    }
    
    .cupcake-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .cupcake-included-item h5 {
        font-size: 14px;
    }
    
    .cupcake-included-item p {
        font-size: 12px;
    }
    
    /* Testimonials */
    .cupcake-testimonial-card {
        padding: 18px;
    }
    
    .cupcake-testimonial-card p {
        font-size: 14px;
    }
    
    .cupcake-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .cupcake-testimonial-author strong {
        font-size: 14px;
    }
    
    .cupcake-testimonial-author span {
        font-size: 12px;
    }
    
    /* FAQ */
    .cupcake-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 4px;
    }
    
    .cupcake-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .cupcake-faq-item h4 {
        font-size: 14px;
    }
    
    .cupcake-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .cupcake-final-box {
        padding: 24px 16px;
    }
    
    .cupcake-final-content h2 {
        font-size: 22px;
    }
    
    .cupcake-final-content p {
        font-size: 14px;
    }
    
    .cupcake-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cupcake-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cupcake-final-seats {
        font-size: 14px;
    }
}

/* ---------- EXTRA SMALL (max-width: 400px) ---------- */
@media (max-width: 400px) {
    /* Banner */
    .cupcake-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .cupcake-banner-title {
        font-size: 20px;
    }
    
    .cupcake-banner-host {
        font-size: 14px;
    }
    
    .cupcake-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .cupcake-price-current {
        font-size: 20px;
    }
    
    /* Stats */
    .cupcake-stat-number {
        font-size: 24px;
    }
    
    .cupcake-stat-label {
        font-size: 11px;
    }
    
    /* About */
    .cupcake-zoom-image {
        height: 180px;
    }
    
    .cupcake-about-text h2 {
        font-size: 20px;
    }
    
    .cupcake-about-text p {
        font-size: 13px;
    }
    
    .cupcake-feature-row {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .cupcake-feature-row i {
        font-size: 14px;
        width: 16px;
    }
    
    /* Section Headers */
    .cupcake-section-header h2 {
        font-size: 22px;
    }
    
    .cupcake-section-header p {
        font-size: 13px;
    }
    
    /* Recipes */
    .cupcake-recipes-grid {
        gap: 10px;
    }
    
    .cupcake-recipe-card {
        padding: 14px 12px;
        gap: 10px;
    }
    
    .cupcake-recipe-icon {
        font-size: 20px;
    }
    
    .cupcake-recipe-card h5 {
        font-size: 13px;
    }
    
    /* Fillings */
    .cupcake-fillings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .cupcake-filling-card {
        padding: 14px 10px;
    }
    
    .cupcake-filling-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .cupcake-filling-card h5 {
        font-size: 12px;
    }
    
    /* Skills */
    .cupcake-skill-card {
        padding: 16px 12px;
    }
    
    .cupcake-skill-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .cupcake-skill-card h5 {
        font-size: 13px;
    }
    
    .cupcake-skill-card p {
        font-size: 11px;
    }
    
    /* Audience */
    .cupcake-audience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cupcake-audience-item {
        padding: 14px 10px;
    }
    
    .cupcake-audience-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .cupcake-audience-item h5 {
        font-size: 13px;
    }
    
    .cupcake-audience-item p {
        font-size: 11px;
    }
    
    /* Included */
    .cupcake-included-item {
        padding: 14px 12px;
    }
    
    .cupcake-included-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .cupcake-included-item h5 {
        font-size: 13px;
    }
    
    .cupcake-included-item p {
        font-size: 11px;
    }
    
    /* Testimonials */
    .cupcake-testimonial-card {
        padding: 16px;
    }
    
    .cupcake-testimonial-card p {
        font-size: 13px;
    }
    
    .cupcake-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .cupcake-testimonial-author strong {
        font-size: 13px;
    }
    
    .cupcake-testimonial-author span {
        font-size: 11px;
    }
    
    /* FAQ */
    .cupcake-faq-item {
        padding: 12px 14px;
    }
    
    .cupcake-faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .cupcake-faq-item h4 {
        font-size: 13px;
    }
    
    .cupcake-faq-item p {
        font-size: 12px;
    }
    
    /* Final CTA */
    .cupcake-final-box {
        padding: 20px 14px;
    }
    
    .cupcake-final-content h2 {
        font-size: 18px;
    }
    
    .cupcake-final-content p {
        font-size: 13px;
    }
    
    .cupcake-final-buttons .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .cupcake-final-seats {
        font-size: 13px;
    }
}


/* ============================================= */
/* HALLOWEEN WORKSHOP - COMPLETE STYLES         */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.halloween-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.halloween-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.halloween-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.halloween-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.halloween-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: halloweenFadeIn 1s ease forwards;
}

@keyframes halloweenFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.halloween-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.halloween-banner-badge i {
    margin-right: 6px;
}

.halloween-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.halloween-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.halloween-banner-host strong {
    color: #e8b88a;
}

.halloween-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.halloween-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.halloween-banner-info i {
    color: #e8b88a;
}

.halloween-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.halloween-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.halloween-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.halloween-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.halloween-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.halloween-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.halloween-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.halloween-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. HIGHLIGHTS SECTION ---------- */
.halloween-highlights {
    padding: 80px 0;
    background: #fcf6f0;
}

.halloween-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.halloween-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.halloween-section-badge i {
    margin-right: 6px;
}

.halloween-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #2c1810;
    margin-bottom: 4px;
}

.halloween-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.halloween-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.halloween-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.halloween-highlight-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    border: 1px solid rgba(44, 24, 16, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.halloween-highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.halloween-highlight-icon {
    font-size: 36px;
    color: #8B4513;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.halloween-highlight-item:hover .halloween-highlight-icon {
    transform: scale(1.1);
}

.halloween-highlight-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.halloween-highlight-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- 3. EVENT DETAILS ---------- */
.halloween-details {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.halloween-details-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.halloween-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.halloween-detail-item {
    text-align: center;
}

.halloween-detail-item i {
    font-size: 28px;
    color: #8B4513;
    display: block;
    margin-bottom: 8px;
}

.halloween-detail-item h5 {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.halloween-detail-item p {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
}

.halloween-details-note {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(139, 69, 19, 0.08);
    color: #999;
    font-size: 14px;
}

.halloween-details-note i {
    color: #8B4513;
    margin-right: 6px;
}

/* ---------- 4. WHAT'S INCLUDED ---------- */
.halloween-included {
    padding: 80px 0;
    background: #fff;
}

.halloween-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.halloween-included-item {
    background: #fcf6f0;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.halloween-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.halloween-included-icon {
    font-size: 28px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.halloween-included-item:hover .halloween-included-icon {
    transform: scale(1.1);
}

.halloween-included-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.halloween-included-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ---------- 5. PARENTS SECTION ---------- */
.halloween-parents {
    padding: 60px 0;
    background: #fcf6f0;
}

.halloween-parents-box {
    background: linear-gradient(135deg, #2c1810, #5a3e32);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.halloween-parents-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.15);
    color: #D4A574;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.halloween-parents-badge i {
    margin-right: 6px;
}

.halloween-parents-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.halloween-parents-content p {
    color: #d4c5b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.halloween-parents-content p strong {
    color: #D4A574;
}

.halloween-parents-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: #f5ede5;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
}

/* ---------- 6. FAQ ---------- */
.halloween-faq {
    padding: 80px 0;
    background: #fff;
}

.halloween-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.halloween-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.halloween-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.halloween-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.halloween-faq-item:hover .halloween-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.halloween-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.halloween-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. FINAL CTA ---------- */
.halloween-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.halloween-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.halloween-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.halloween-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.halloween-final-content {
    position: relative;
    z-index: 1;
}

.halloween-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.halloween-final-badge i {
    margin-right: 6px;
}

.halloween-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.halloween-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.halloween-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.halloween-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.halloween-final-buttons .halloween-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.halloween-final-buttons .halloween-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.halloween-final-buttons .halloween-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.halloween-final-buttons .halloween-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.halloween-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.halloween-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: halloweenPulse 2s infinite;
}

@keyframes halloweenPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .halloween-banner-title {
        font-size: 40px;
    }
    
    .halloween-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .halloween-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .halloween-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .halloween-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .halloween-banner-title {
        font-size: 32px;
    }
    
    .halloween-banner-host {
        font-size: 16px;
    }
    
    .halloween-banner-info {
        gap: 10px 16px;
    }
    
    .halloween-banner-info span {
        font-size: 13px;
    }
    
    .halloween-price-current {
        font-size: 28px;
    }
    
    .halloween-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .halloween-highlights {
        padding: 50px 0;
    }
    
    .halloween-highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .halloween-highlight-item {
        padding: 20px 16px;
    }
    
    .halloween-highlight-icon {
        font-size: 28px;
    }
    
    .halloween-details {
        padding: 40px 0;
    }
    
    .halloween-details-box {
        padding: 30px 20px;
    }
    
    .halloween-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .halloween-detail-item i {
        font-size: 22px;
    }
    
    .halloween-detail-item p {
        font-size: 14px;
    }
    
    .halloween-included {
        padding: 50px 0;
    }
    
    .halloween-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .halloween-included-item {
        padding: 20px 16px;
    }
    
    .halloween-parents {
        padding: 40px 0;
    }
    
    .halloween-parents-box {
        padding: 30px 20px;
    }
    
    .halloween-parents-content h3 {
        font-size: 24px;
    }
    
    .halloween-parents-content p {
        font-size: 14px;
    }
    
    .halloween-faq {
        padding: 50px 0;
    }
    
    .halloween-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .halloween-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
    }
    
    .halloween-faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .halloween-final-box {
        padding: 32px 24px;
    }
    
    .halloween-final-content h2 {
        font-size: 28px;
    }
    
    .halloween-final-content p {
        font-size: 16px;
    }
    
    .halloween-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .halloween-banner-title {
        font-size: 24px;
    }
    
    .halloween-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .halloween-banner-info {
        flex-direction: column;
        gap: 6px;
    }
    
    .halloween-banner-info span {
        font-size: 12px;
    }
    
    .halloween-price-current {
        font-size: 22px;
    }
    
    .halloween-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .halloween-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .halloween-highlights-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .halloween-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .halloween-detail-item {
        padding: 8px 0;
    }
    
    .halloween-detail-item i {
        font-size: 20px;
    }
    
    .halloween-detail-item p {
        font-size: 13px;
    }
    
    .halloween-included-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .halloween-included-item {
        padding: 16px 14px;
    }
    
    .halloween-parents-content h3 {
        font-size: 20px;
    }
    
    .halloween-parents-content p {
        font-size: 13px;
    }
    
    .halloween-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .halloween-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        align-items: center;
        font-size: 16px;
    }
    
    .halloween-faq-item h4 {
        font-size: 14px;
        text-align: center;
    }
    
    .halloween-faq-item p {
        font-size: 13px;
        text-align: center;
    }
    
    .halloween-final-box {
        padding: 24px 16px;
    }
    
    .halloween-final-content h2 {
        font-size: 22px;
    }
    
    .halloween-final-content p {
        font-size: 14px;
    }
    
    .halloween-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .halloween-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .halloween-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .halloween-banner-title {
        font-size: 20px;
    }
    
    .halloween-banner-host {
        font-size: 14px;
    }
    
    .halloween-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .halloween-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .halloween-detail-item i {
        font-size: 18px;
    }
    
    .halloween-detail-item p {
        font-size: 13px;
    }
    
    .halloween-highlight-item {
        padding: 16px 12px;
    }
    
    .halloween-parents-content h3 {
        font-size: 18px;
    }
    
    .halloween-final-content h2 {
        font-size: 18px;
    }
    
    .halloween-final-content p {
        font-size: 13px;
    }
}

/* ============================================= */
/* KIDS BAKING SUMMER CAMP - COMPLETE STYLES    */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.camp-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.camp-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.camp-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.camp-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.camp-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: campFadeIn 1s ease forwards;
}

@keyframes campFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.camp-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.camp-banner-badge i {
    margin-right: 6px;
}

.camp-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.camp-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.camp-banner-host strong {
    color: #e8b88a;
}

.camp-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.camp-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.camp-banner-info i {
    color: #e8b88a;
}

.camp-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.camp-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.camp-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.camp-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.camp-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.camp-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.camp-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.camp-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. OVERVIEW SECTION ---------- */
.camp-overview {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.camp-overview-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.camp-overview-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.camp-overview-badge i {
    margin-right: 6px;
}

.camp-overview-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2c1810;
    margin-bottom: 8px;
}

.camp-overview-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.camp-overview-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.camp-overview-item {
    background: #fcf6f0;
    padding: 14px 10px;
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.06);
}

.camp-overview-item i {
    color: #8B4513;
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.camp-overview-item span {
    font-size: 13px;
    color: #666;
}

.camp-overview-item strong {
    color: #2c1810;
    display: block;
}

/* ---------- 3. DAY SECTIONS ---------- */
.camp-day {
    padding: 70px 0;
    background: #fff;
}

.camp-day-alt {
    background: #fcf6f0;
}

.camp-day-header {
    text-align: center;
    margin-bottom: 40px;
}

.camp-day-number {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.camp-day-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #2c1810;
    margin-bottom: 4px;
}

.camp-day-header p {
    font-size: 16px;
    color: #666;
}

.camp-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.camp-activity-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.camp-day-alt .camp-activity-item {
    background: #fff;
}

.camp-activity-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.camp-activity-icon {
    font-size: 36px;
    color: #8B4513;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.camp-activity-item:hover .camp-activity-icon {
    transform: scale(1.15);
}

.camp-activity-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.camp-activity-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- 4. WHAT'S INCLUDED ---------- */
.camp-included {
    padding: 80px 0;
    background: #fff;
}

.camp-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.camp-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.camp-section-badge i {
    margin-right: 6px;
}

.camp-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.camp-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.camp-section-header p {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

.camp-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.camp-included-item {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.camp-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.camp-included-icon {
    font-size: 28px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.camp-included-item:hover .camp-included-icon {
    transform: scale(1.1);
}

.camp-included-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.camp-included-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ---------- 5. WHY JOIN ---------- */
.camp-why {
    padding: 80px 0;
    background: #fcf6f0;
}

.camp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.camp-why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.camp-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.camp-why-card i {
    font-size: 36px;
    color: #8B4513;
    display: block;
    margin-bottom: 12px;
}

.camp-why-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.camp-why-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ---------- 6. FAQ ---------- */
.camp-faq {
    padding: 80px 0;
    background: #fff;
}

.camp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.camp-faq-item {
    background: #fcf6f0;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.camp-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.camp-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.camp-faq-item:hover .camp-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.camp-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.camp-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. FINAL CTA ---------- */
.camp-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.camp-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.camp-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.camp-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.camp-final-content {
    position: relative;
    z-index: 1;
}

.camp-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.camp-final-badge i {
    margin-right: 6px;
}

.camp-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.camp-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.camp-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.camp-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.camp-final-buttons .camp-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.camp-final-buttons .camp-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.camp-final-buttons .camp-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.camp-final-buttons .camp-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.camp-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.camp-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: campPulse 2s infinite;
}

@keyframes campPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .camp-banner-title {
        font-size: 40px;
    }
    
    .camp-overview-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .camp-activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .camp-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .camp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .camp-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .camp-banner-title {
        font-size: 32px;
    }
    
    .camp-banner-host {
        font-size: 16px;
    }
    
    .camp-banner-info {
        gap: 10px 16px;
    }
    
    .camp-banner-info span {
        font-size: 13px;
    }
    
    .camp-price-current {
        font-size: 28px;
    }
    
    .camp-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .camp-overview {
        padding: 40px 0;
    }
    
    .camp-overview-box {
        padding: 30px 20px;
    }
    
    .camp-overview-content h2 {
        font-size: 26px;
    }
    
    .camp-overview-details {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .camp-day {
        padding: 50px 0;
    }
    
    .camp-day-header h2 {
        font-size: 24px;
    }
    
    .camp-activities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .camp-activity-item {
        padding: 20px 16px;
    }
    
    .camp-activity-icon {
        font-size: 28px;
    }
    
    .camp-included {
        padding: 50px 0;
    }
    
    .camp-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .camp-included-item {
        padding: 20px 16px;
    }
    
    .camp-why {
        padding: 50px 0;
    }
    
    .camp-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .camp-faq {
        padding: 50px 0;
    }
    
    .camp-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .camp-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
    }
    
    .camp-final-box {
        padding: 32px 24px;
    }
    
    .camp-final-content h2 {
        font-size: 28px;
    }
    
    .camp-final-content p {
        font-size: 16px;
    }
    
    .camp-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .camp-banner-title {
        font-size: 24px;
    }
    
    .camp-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .camp-banner-info {
        flex-direction: column;
        gap: 6px;
    }
    
    .camp-price-current {
        font-size: 22px;
    }
    
    .camp-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camp-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .camp-overview-details {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .camp-overview-item span {
        font-size: 12px;
    }
    
    .camp-day-header h2 {
        font-size: 20px;
    }
    
    .camp-activities-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .camp-activity-item {
        padding: 18px 14px;
    }
    
    .camp-section-header h2 {
        font-size: 26px;
    }
    
    .camp-included-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .camp-included-item {
        padding: 16px 14px;
    }
    
    .camp-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .camp-why-card {
        padding: 20px 16px;
    }
    
    .camp-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 4px;
    }
    
    .camp-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .camp-faq-item h4 {
        font-size: 14px;
    }
    
    .camp-faq-item p {
        font-size: 13px;
    }
    
    .camp-final-box {
        padding: 24px 16px;
    }
    
    .camp-final-content h2 {
        font-size: 22px;
    }
    
    .camp-final-content p {
        font-size: 14px;
    }
    
    .camp-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camp-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .camp-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .camp-banner-title {
        font-size: 20px;
    }
    
    .camp-banner-host {
        font-size: 14px;
    }
    
    .camp-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .camp-overview-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .camp-activity-item {
        padding: 14px 12px;
    }
    
    .camp-activity-icon {
        font-size: 24px;
    }
    
    .camp-activity-item h5 {
        font-size: 14px;
    }
    
    .camp-section-header h2 {
        font-size: 22px;
    }
    
    .camp-final-content h2 {
        font-size: 18px;
    }
    
    .camp-final-content p {
        font-size: 13px;
    }
}


/* ============================================= */
/* WEDDING MASTERCLASS - COMPLETE STYLES        */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.wedding-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.wedding-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wedding-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wedding-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.wedding-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: weddingFadeIn 1s ease forwards;
}

@keyframes weddingFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.wedding-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.wedding-banner-badge i {
    margin-right: 6px;
}

.wedding-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.wedding-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.wedding-banner-host strong {
    color: #e8b88a;
}

.wedding-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.wedding-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wedding-banner-info i {
    color: #e8b88a;
}

.wedding-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wedding-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.wedding-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.wedding-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.wedding-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.wedding-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wedding-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.wedding-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.wedding-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.wedding-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. WEDDING GALLERY ---------- */
.wedding-gallery {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.wedding-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(139, 69, 19, 0.15), transparent);
}

.wedding-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wedding-gallery-card {
    background: #fcf6f0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wedding-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding-gallery-image {
    width: 100%;
    height: 400px;
    max-width:800px;
    overflow: hidden;
}

.wedding-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wedding-gallery-card:hover .wedding-gallery-image img {
    transform: scale(1.05);
}

.wedding-gallery-content {
    padding: 14px 16px 16px;
    text-align: center;
}

.wedding-gallery-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.wedding-gallery-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- 3. GALLERY - MULTIPLE CARDS ---------- */
.wedding3-gallery {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.wedding3-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(139, 69, 19, 0.15), transparent);
}

.wedding3-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wedding3-gallery-card {
    background: #fcf6f0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wedding3-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding3-gallery-image {
    width: 100%;
    height: 300px;
    max-width: 400px;
    overflow: hidden;
}

.wedding3-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wedding3-gallery-card:hover .wedding3-gallery-image img {
    transform: scale(1.05);
}

.wedding3-gallery-content {
    padding: 14px 16px 16px;
    text-align: center;
}

.wedding3-gallery-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.wedding3-gallery-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- RESPONSIVE - GALLERY ---------- */
@media (max-width: 992px) {
    .wedding3-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .wedding3-gallery {
        padding: 50px 0;
    }
    
    .wedding3-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .wedding3-gallery-image {
        height: 200px;
    }
    
    .wedding3-gallery-content h5 {
        font-size: 13px;
    }
    
    .wedding3-gallery-content p {
        font-size: 11px;
    }
    
    .wedding3-gallery-content {
        padding: 10px 12px 12px;
    }
}

@media (max-width: 576px) {
    .wedding3-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .wedding3-gallery-image {
        height: 200px;
    }
    
    .wedding3-gallery-content h5 {
        font-size: 12px;
    }
    
    .wedding3-gallery-content p {
        font-size: 10px;
    }
    
    .wedding3-gallery-content {
        padding: 8px 10px 10px;
    }
}

@media (max-width: 400px) {
    .wedding3-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .wedding3-gallery-image {
        height: 150px;
    }
    
    .wedding3-gallery-content h5 {
        font-size: 11px;
    }
    
    .wedding3-gallery-content p {
        font-size: 9px;
    }
    
    .wedding3-gallery-content {
        padding: 6px 8px 8px;
    }
}

/* ---------- ABOUT SECTION ---------- */
.wedding-about {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wedding-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.wedding-zoom-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.wedding-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wedding-zoom-image:hover img {
    transform: scale(1.02);
}

.wedding-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.wedding-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.wedding-about-text {
    padding: 10px 0;
}

.wedding-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wedding-about-tag i {
    margin-right: 6px;
}

.wedding-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.wedding-about-text h2 span {
    color: #8B4513;
}

.wedding-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.wedding-about-text p strong {
    color: #8B4513;
}

.wedding-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.wedding-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wedding-feature-row:last-child {
    border-bottom: none;
}

.wedding-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- RESPONSIVE - ABOUT SECTION ---------- */
@media (max-width: 992px) {
    .wedding-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wedding-zoom-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .wedding-about {
        padding: 50px 0;
    }
    
    .wedding-about-grid {
        gap: 24px;
    }
    
    .wedding-zoom-image {
        height: 260px;
    }
    
    .wedding-about-image {
        order: -1;
    }
    
    .wedding-about-text {
        padding: 0;
    }
    
    .wedding-about-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .wedding-about-text h2 span {
        display: block;
    }
    
    .wedding-about-text p {
        font-size: 15px;
    }
    
    .wedding-about-tag {
        font-size: 12px;
        padding: 3px 14px;
    }
    
    .wedding-about-features {
        gap: 4px;
    }
    
    .wedding-feature-row {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .wedding-feature-row i {
        font-size: 16px;
        width: 20px;
    }
}

@media (max-width: 576px) {
    .wedding-about {
        padding: 40px 0;
    }
    
    .wedding-zoom-image {
        height: 220px;
    }
    
    .wedding-about-text h2 {
        font-size: 24px;
    }
    
    .wedding-about-text p {
        font-size: 14px;
    }
    
    .wedding-about-tag {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    .wedding-feature-row {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .wedding-feature-row i {
        font-size: 15px;
        width: 18px;
    }
}

@media (max-width: 400px) {
    .wedding-zoom-image {
        height: 180px;
    }
    
    .wedding-about-text h2 {
        font-size: 20px;
    }
    
    .wedding-about-text p {
        font-size: 13px;
    }
    
    .wedding-feature-row {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .wedding-feature-row i {
        font-size: 14px;
        width: 16px;
    }
    
    .wedding-about-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
}
/* ---------- 4. LEARN SECTION ---------- */
.wedding-learn {
    padding: 80px 0;
    background: #fff;
}

.wedding-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.wedding-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.wedding-section-badge i {
    margin-right: 6px;
}

.wedding-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.wedding-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

.wedding-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wedding-learn-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wedding-learn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding-learn-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.wedding-learn-card:hover .wedding-learn-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.wedding-learn-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 10px;
    text-align: center;
}

.wedding-learn-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.wedding-learn-card ul li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    text-align: center;
    position: relative;
    line-height: 1.5;
    display: inline-block;
    width: 100%;
}

.wedding-learn-card ul li::before {
    content: '›';
    color: #8B4513;
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
    display: inline-block;
    position: static;
}
/* ---------- 5. ADVANCED TECHNIQUES ---------- */
.wedding-advanced {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wedding-advanced-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wedding-advanced-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding-advanced-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.wedding-advanced-card:hover .wedding-advanced-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.wedding-advanced-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 10px;
    text-align: center;
}

.wedding-advanced-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wedding-advanced-card ul li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.wedding-advanced-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: 700;
    font-size: 18px;
}

/* ---------- 6. BUSINESS BENEFITS ---------- */
.wedding-business {
    padding: 80px 0;
    background: #fff;
}

.wedding-business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wedding-business-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.wedding-business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding-business-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.wedding-business-card:hover .wedding-business-icon {
    transform: scale(1.15);
}

.wedding-business-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 6px;
}

.wedding-business-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. WHY JOIN ---------- */
.wedding-why {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding-why-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.wedding-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.wedding-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.04);
}

.wedding-why-item:last-child {
    border-bottom: none;
}

.wedding-why-item i {
    color: #27AE60;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.wedding-why-item span {
    font-size: 15px;
    color: #2c1810;
    line-height: 1.5;
}

/* ---------- 8. WORKSHOP DETAILS ---------- */
.wedding-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0f0a, #2c1810);
}

.wedding-details-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.wedding-details-box .wedding-section-header h2 {
    color: #f5ede5;
}

.wedding-details-box .wedding-section-header p {
    color: #d4c5b8;
}

.wedding-details-box .wedding-section-badge {
    background: rgba(212, 165, 116, 0.15);
    color: #D4A574;
}

.wedding-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.wedding-detail-item {
    text-align: center;
}

.wedding-detail-item i {
    font-size: 28px;
    color: #D4A574;
    display: block;
    margin-bottom: 8px;
}

.wedding-detail-item h5 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wedding-detail-item p {
    font-size: 16px;
    font-weight: 600;
    color: #f5ede5;
    margin: 0;
}

.wedding-details-contact {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wedding-details-contact h5 {
    font-size: 16px;
    color: #d4c5b8;
    margin-bottom: 8px;
}

.wedding-details-contact p {
    font-size: 20px;
    font-weight: 600;
    color: #f5ede5;
    margin-bottom: 12px;
}

.wedding-details-contact p a {
    color: #D4A574;
    text-decoration: none;
}

.wedding-details-contact p a:hover {
    color: #e8b88a;
}

.wedding-details-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.wedding-details-current {
    font-size: 28px;
    font-weight: 700;
    color: #f5ede5;
}

.wedding-details-original {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.wedding-details-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 50px;
}

.wedding-details-seats {
    color: #F4B400;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

/* ---------- 9. TESTIMONIALS ---------- */
.wedding-testimonials {
    padding: 80px 0;
    background: #fff;
}

.wedding-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.wedding-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wedding-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.wedding-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.wedding-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wedding-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.wedding-testimonial-card:hover .wedding-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.wedding-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.wedding-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 10. FAQ ---------- */
.wedding-faq {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.wedding-faq-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.wedding-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.wedding-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.wedding-faq-item:hover .wedding-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.wedding-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.wedding-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 11. FINAL CTA ---------- */
.wedding-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.wedding-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.wedding-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.wedding-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.wedding-final-content {
    position: relative;
    z-index: 1;
}

.wedding-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.wedding-final-badge i {
    margin-right: 6px;
}

.wedding-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.wedding-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.wedding-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.wedding-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wedding-final-buttons .wedding-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.wedding-final-buttons .wedding-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.wedding-final-buttons .wedding-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.wedding-final-buttons .wedding-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.wedding-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.wedding-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: weddingPulse 2s infinite;
}

@keyframes weddingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
    .wedding-banner-title {
        font-size: 34px;
    }
    
    .wedding-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wedding-zoom-image {
        height: 300px;
    }
    
    .wedding-e3-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .wedding-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .wedding-learn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding-advanced-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding-why-grid {
        grid-template-columns: 1fr;
    }
    
    .wedding-testimonials-grid {
        gap: 20px;
    }
    
    .wedding-faq-grid {
        gap: 16px;
    }
    
    .wedding-final-content h2 {
        font-size: 34px;
    }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
    /* Banner */
    .wedding-banner {
        height: 90vh;
         aspect-ratio: 3/4; 
        min-height: 500px;
        max-height: 700px;
    }
    
    .wedding-banner-title {
        font-size: 28px;
    }
    
    .wedding-banner-host {
        font-size: 16px;
    }
    
    .wedding-banner-info {
        gap: 10px 16px;
    }
    
    .wedding-banner-info span {
        font-size: 13px;
    }
    
    .wedding-price-current {
        font-size: 28px;
    }
    
    .wedding-price-original {
        font-size: 16px;
    }
    
    .wedding-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .wedding-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wedding-banner-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* E-3 Images */
    .wedding-e3 {
        padding: 50px 0;
    }
    
    .wedding-e3-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .wedding-e3-card:last-child {
        grid-column: span 2;
    }
    
    .wedding-e3-image {
        height: 160px;
    }
    
    .wedding-e3-label {
        font-size: 12px;
        padding: 8px 0;
    }

    /* Gallery - Single Card */
    .wedding-gallery-single {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .wedding-gallery-image-single {
        height: 420px;
    }
    
    .wedding-gallery-content-single h5 {
        font-size: 16px;
    }
    
    .wedding-gallery-content-single p {
        font-size: 13px;
    }
    
    .wedding-gallery-content-single {
        padding: 16px 18px 18px;
    }
    
    /* Gallery - Multiple Cards */
    .wedding-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .wedding-gallery-image {
        height: 250px;
    }
    
    .wedding-gallery-content h5 {
        font-size: 12px;
    }
    
    .wedding-gallery-content p {
        font-size: 10px;
    }
    
    .wedding-gallery-content {
        padding: 8px 10px 10px;
    }
    
    /* About */
    .wedding-about {
        padding: 50px 0;
    }
    
    .wedding-about-grid {
        gap: 24px;
    }
    
    .wedding-zoom-image {
        height: 260px;
    }
    
    .wedding-about-image {
        order: -1;
    }
    
    .wedding-about-text {
        padding: 0;
    }
    
    .wedding-about-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .wedding-about-text h2 span {
        display: block;
    }
    
    .wedding-about-text p {
        font-size: 15px;
    }
    
    .wedding-about-tag {
        font-size: 12px;
        padding: 3px 14px;
    }
    
    .wedding-about-features {
        gap: 4px;
    }
    
    .wedding-feature-row {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .wedding-feature-row i {
        font-size: 16px;
        width: 20px;
    }
    
    /* Section Headers */
    .wedding-section-header h2 {
        font-size: 28px;
    }
    
    .wedding-section-header p {
        font-size: 15px;
    }
    
    /* Learn Section */
    .wedding-learn {
        padding: 50px 0;
    }
    
    .wedding-learn-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding-learn-card {
        padding: 20px 16px;
    }
    
    .wedding-learn-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .wedding-learn-card h5 {
        font-size: 15px;
    }
    
    .wedding-learn-card ul li {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }
    
    /* Advanced Section */
    .wedding-advanced {
        padding: 50px 0;
    }
    
    .wedding-advanced-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding-advanced-card {
        padding: 20px 16px;
    }
    
    .wedding-advanced-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .wedding-advanced-card h5 {
        font-size: 15px;
    }
    
    .wedding-advanced-card ul li {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }
    
    /* Business Section */
    .wedding-business {
        padding: 50px 0;
    }
    
    .wedding-business-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding-business-card {
        padding: 20px 16px;
    }
    
    .wedding-business-icon {
        font-size: 28px;
    }
    
    .wedding-business-card h5 {
        font-size: 15px;
    }
    
    .wedding-business-card p {
        font-size: 13px;
    }
    
    /* Why Join */
    .wedding-why {
        padding: 50px 0;
    }
    
    .wedding-why-box {
        padding: 30px 20px;
    }
    
    .wedding-why-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .wedding-why-item span {
        font-size: 14px;
    }
    
    /* Details */
    .wedding-details {
        padding: 50px 0;
    }
    
    .wedding-details-box {
        padding: 30px 20px;
    }
    
    .wedding-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding-detail-item i {
        font-size: 22px;
    }
    
    .wedding-detail-item p {
        font-size: 14px;
    }
    
    .wedding-details-contact p {
        font-size: 17px;
    }
    
    .wedding-details-current {
        font-size: 24px;
    }
    
    .wedding-details-original {
        font-size: 16px;
    }
    
    /* Testimonials */
    .wedding-testimonials {
        padding: 50px 0;
    }
    
    .wedding-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wedding-testimonial-card {
        padding: 20px;
    }
    
    .wedding-testimonial-card p {
        font-size: 14px;
    }
    
    .wedding-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* FAQ */
    .wedding-faq {
        padding: 50px 0;
    }
    
    .wedding-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wedding-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
    }
    
    .wedding-faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .wedding-faq-item h4 {
        font-size: 15px;
    }
    
    .wedding-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .wedding-final-cta {
        padding: 50px 0;
    }
    
    .wedding-final-box {
        padding: 32px 24px;
    }
    
    .wedding-final-content h2 {
        font-size: 28px;
    }
    
    .wedding-final-content p {
        font-size: 16px;
    }
    
    .wedding-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ---------- SMALL MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {
    /* Banner */
    .wedding-banner-title {
        font-size: 24px;
    }
    
    .wedding-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .wedding-banner-info {
        flex-direction: column;
        gap: 6px;
    }
    
    .wedding-banner-info span {
        font-size: 12px;
    }
    
    .wedding-price-current {
        font-size: 22px;
    }
    
    .wedding-price-original {
        font-size: 14px;
    }
    
    .wedding-banner-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* E-3 Images */
    .wedding-e3-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wedding-e3-card:last-child {
        grid-column: span 1;
    }
    
    .wedding-e3-image {
        height: 200px;
    }
    
    /* Gallery - Single Card */
    .wedding-gallery-single {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .wedding-gallery-image-single {
        height: 350px;
    }
    
    .wedding-gallery-content-single h5 {
        font-size: 15px;
    }
    
    .wedding-gallery-content-single p {
        font-size: 12px;
    }
    
    .wedding-gallery-content-single {
        padding: 14px 14px 16px;
    }
    
    /* Gallery - Multiple Cards */
    .wedding-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .wedding-gallery-image {
        height: 200px;
    }
    
    .wedding-gallery-content h5 {
        font-size: 12px;
    }
    
    .wedding-gallery-content p {
        font-size: 10px;
    }
    
    /* About */
    .wedding-about-text h2 {
        font-size: 24px;
    }
    
    .wedding-about-text p {
        font-size: 14px;
    }
    
    .wedding-about-tag {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    .wedding-feature-row {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .wedding-feature-row i {
        font-size: 15px;
        width: 18px;
    }
    
    /* Section Headers */
    .wedding-section-header h2 {
        font-size: 26px;
    }
    
    .wedding-section-header p {
        font-size: 14px;
    }
    
    .wedding-section-badge {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    /* Learn Section */
    .wedding-learn-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wedding-learn-card {
        padding: 18px 14px;
    }
    
    .wedding-learn-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .wedding-learn-card h5 {
        font-size: 14px;
    }
    
    .wedding-learn-card ul li {
        font-size: 13px;
        padding: 4px 0 4px 16px;
    }
    
    /* Advanced Section */
    .wedding-advanced-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wedding-advanced-card {
        padding: 18px 14px;
    }
    
    .wedding-advanced-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .wedding-advanced-card h5 {
        font-size: 14px;
    }
    
    .wedding-advanced-card ul li {
        font-size: 13px;
    }
    
    /* Business Section */
    .wedding-business-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .wedding-business-card {
        padding: 18px 14px;
    }
    
    .wedding-business-icon {
        font-size: 24px;
    }
    
    .wedding-business-card h5 {
        font-size: 14px;
    }
    
    .wedding-business-card p {
        font-size: 12px;
    }
    
    /* Why Join */
    .wedding-why-box {
        padding: 24px 16px;
    }
    
    .wedding-why-item span {
        font-size: 13px;
    }
    
    /* Details */
    .wedding-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .wedding-detail-item i {
        font-size: 20px;
    }
    
    .wedding-detail-item p {
        font-size: 13px;
    }
    
    .wedding-details-contact p {
        font-size: 15px;
    }
    
    .wedding-details-current {
        font-size: 20px;
    }
    
    .wedding-details-original {
        font-size: 14px;
    }
    
    /* Testimonials */
    .wedding-testimonial-card {
        padding: 18px;
    }
    
    .wedding-testimonial-card p {
        font-size: 14px;
    }
    
    .wedding-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .wedding-testimonial-author strong {
        font-size: 14px;
    }
    
    .wedding-testimonial-author span {
        font-size: 12px;
    }
    
    /* FAQ */
    .wedding-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 4px;
    }
    
    .wedding-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .wedding-faq-item h4 {
        font-size: 14px;
    }
    
    .wedding-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .wedding-final-box {
        padding: 24px 16px;
    }
    
    .wedding-final-content h2 {
        font-size: 22px;
    }
    
    .wedding-final-content p {
        font-size: 14px;
    }
    
    .wedding-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wedding-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .wedding-final-seats {
        font-size: 14px;
    }
}

/* ---------- EXTRA SMALL (max-width: 400px) ---------- */
@media (max-width: 400px) {
    /* Banner */
    .wedding-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .wedding-banner-title {
        font-size: 20px;
    }
    
    .wedding-banner-host {
        font-size: 14px;
    }
    
    .wedding-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .wedding-price-current {
        font-size: 20px;
    }
    
    /* E-3 Images */
    .wedding-e3-image {
        height: 160px;
    }
    
    /* Gallery - Single Card */
    .wedding-gallery-single {
        max-width: 100%;
        padding: 0 8px;
    }
    
    .wedding-gallery-image-single {
        height: 280px;
    }
    
    .wedding-gallery-content-single h5 {
        font-size: 14px;
    }
    
    .wedding-gallery-content-single p {
        font-size: 11px;
    }
    
    .wedding-gallery-content-single {
        padding: 12px 12px 14px;
    }
    
    /* Gallery - Multiple Cards */
    .wedding-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .wedding-gallery-image {
        height: 160px;
    }
    
    .wedding-gallery-content h5 {
        font-size: 11px;
    }
    
    .wedding-gallery-content p {
        font-size: 9px;
    }
    
    .wedding-gallery-content {
        padding: 6px 8px 8px;
    }
    
    /* About */
    .wedding-zoom-image {
        height: 200px;
    }
    
    .wedding-about-text h2 {
        font-size: 20px;
    }
    
    .wedding-about-text p {
        font-size: 13px;
    }
    
    .wedding-feature-row {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .wedding-feature-row i {
        font-size: 14px;
        width: 16px;
    }
    
    /* Section Headers */
    .wedding-section-header h2 {
        font-size: 22px;
    }
    
    /* Learn Section */
    .wedding-learn-card {
        padding: 16px 12px;
    }
    
    .wedding-learn-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .wedding-learn-card h5 {
        font-size: 13px;
    }
    
    .wedding-learn-card ul li {
        font-size: 12px;
    }
    
    /* Advanced Section */
    .wedding-advanced-card {
        padding: 16px 12px;
    }
    
    .wedding-advanced-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .wedding-advanced-card h5 {
        font-size: 13px;
    }
    
    .wedding-advanced-card ul li {
        font-size: 12px;
    }
    
    /* Business Section */
    .wedding-business-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wedding-business-card {
        padding: 16px 12px;
    }
    
    .wedding-business-icon {
        font-size: 22px;
    }
    
    .wedding-business-card h5 {
        font-size: 13px;
    }
    
    .wedding-business-card p {
        font-size: 12px;
    }
    
    /* Why Join */
    .wedding-why-item span {
        font-size: 12px;
    }
    
    /* Details */
    .wedding-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .wedding-detail-item i {
        font-size: 18px;
    }
    
    .wedding-detail-item p {
        font-size: 13px;
    }
    
    .wedding-details-contact p {
        font-size: 14px;
    }
    
    .wedding-details-current {
        font-size: 18px;
    }
    
    /* Testimonials */
    .wedding-testimonial-card {
        padding: 16px;
    }
    
    .wedding-testimonial-card p {
        font-size: 13px;
    }
    
    .wedding-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .wedding-testimonial-author strong {
        font-size: 13px;
    }
    
    .wedding-testimonial-author span {
        font-size: 11px;
    }
    
    /* FAQ */
    .wedding-faq-item {
        padding: 12px 14px;
    }
    
    .wedding-faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .wedding-faq-item h4 {
        font-size: 13px;
    }
    
    .wedding-faq-item p {
        font-size: 12px;
    }
    
    /* Final CTA */
    .wedding-final-box {
        padding: 20px 14px;
    }
    
    .wedding-final-content h2 {
        font-size: 18px;
    }
    
    .wedding-final-content p {
        font-size: 13px;
    }
    
    .wedding-final-buttons .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .wedding-final-seats {
        font-size: 13px;
    }
}

/* ============================================= */
/* 3-TIER WEDDING MASTERCLASS - COMPLETE STYLES  */
/* Patisserie180 - Premium Eggless Bakery       */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.wedding3-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.wedding3-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wedding3-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wedding3-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.wedding3-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: wedding3FadeIn 1s ease forwards;
}

@keyframes wedding3FadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.wedding3-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.wedding3-banner-badge i {
    margin-right: 6px;
}

.wedding3-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.wedding3-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.wedding3-banner-host strong {
    color: #e8b88a;
}

.wedding3-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 20px;
}

.wedding3-banner-info span {
    font-size: 15px;
    color: #d4c5b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wedding3-banner-info i {
    color: #e8b88a;
}

.wedding3-banner-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wedding3-price-current {
    font-size: 36px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.wedding3-price-original {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.wedding3-price-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.wedding3-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.wedding3-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wedding3-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
}

.wedding3-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.wedding3-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.wedding3-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ---------- 2. GALLERY SECTION ---------- */
.wedding3-gallery {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.wedding3-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(139, 69, 19, 0.15), transparent);
}

.wedding3-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wedding3-gallery-card {
    background: #fcf6f0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wedding3-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding3-gallery-image {
    width: 100%;
    height: 400px;
    max-width: 900px;
    overflow: hidden;
}

.wedding3-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wedding3-gallery-card:hover .wedding3-gallery-image img {
    transform: scale(1.02);
}

.wedding3-gallery-content {
    padding: 14px 16px 16px;
    text-align: center;
}

.wedding3-gallery-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.wedding3-gallery-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- 3. SECTION HEADER ---------- */
.wedding3-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.wedding3-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.wedding3-section-badge i {
    margin-right: 6px;
}

.wedding3-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.wedding3-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 12px auto 0;
    border-radius: 4px;
}

/* ---------- 4. ABOUT SECTION ---------- */
.wedding3-about {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding3-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wedding3-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.wedding3-zoom-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.wedding3-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wedding3-zoom-image:hover img {
    transform: scale(1.05);
}

.wedding3-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.wedding3-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.wedding3-about-text {
    padding: 10px 0;
}

.wedding3-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.wedding3-about-tag i {
    margin-right: 6px;
}

.wedding3-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.wedding3-about-text h2 span {
    color: #8B4513;
}

.wedding3-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.wedding3-about-text p strong {
    color: #8B4513;
}

.wedding3-about-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.wedding3-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wedding3-feature-row:last-child {
    border-bottom: none;
}

.wedding3-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 5. LEARN SECTION ---------- */
.wedding3-learn {
    padding: 80px 0;
    background: #fff;
}

.wedding3-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wedding3-learn-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.wedding3-learn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding3-learn-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.wedding3-learn-card:hover .wedding3-learn-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.wedding3-learn-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 10px;
    text-align: center;
}

.wedding3-learn-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.wedding3-learn-card ul li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    text-align: center;
    position: relative;
    line-height: 1.5;
    display: inline-block;
    width: 100%;
}

.wedding3-learn-card ul li::before {
    content: '›';
    color: #8B4513;
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
    display: inline-block;
    position: static;
}

/* ---------- 6. ADVANCED TECHNIQUES ---------- */
.wedding3-advanced {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding3-advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wedding3-advanced-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.wedding3-advanced-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding3-advanced-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.wedding3-advanced-card:hover .wedding3-advanced-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.wedding3-advanced-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 10px;
    text-align: center;
}

.wedding3-advanced-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.wedding3-advanced-card ul li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    text-align: center;
    line-height: 1.5;
    display: inline-block;
    width: 100%;
}

.wedding3-advanced-card ul li::before {
    content: '›';
    color: #8B4513;
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
    display: inline-block;
    position: static;
}

/* ---------- 7. BUSINESS BENEFITS ---------- */
.wedding3-business {
    padding: 80px 0;
    background: #fff;
}

.wedding3-business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wedding3-business-card {
    background: #fcf6f0;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.wedding3-business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding3-business-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.wedding3-business-card:hover .wedding3-business-icon {
    transform: scale(1.15);
}

.wedding3-business-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 6px;
}

.wedding3-business-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 8. WHY JOIN ---------- */
.wedding3-why {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding3-why-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.wedding3-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}

.wedding3-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.04);
}

.wedding3-why-item:last-child {
    border-bottom: none;
}

.wedding3-why-item i {
    color: #27AE60;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.wedding3-why-item span {
    font-size: 15px;
    color: #2c1810;
    line-height: 1.5;
}

/* ---------- 9. WORKSHOP DETAILS ---------- */
.wedding3-details {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0f0a, #2c1810);
}

.wedding3-details-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.wedding3-details-box .wedding3-section-header h2 {
    color: #f5ede5;
}

.wedding3-details-box .wedding3-section-header p {
    color: #d4c5b8;
}

.wedding3-details-box .wedding3-section-badge {
    background: rgba(212, 165, 116, 0.15);
    color: #D4A574;
}

.wedding3-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.wedding3-detail-item {
    text-align: center;
}

.wedding3-detail-item i {
    font-size: 28px;
    color: #D4A574;
    display: block;
    margin-bottom: 8px;
}

.wedding3-detail-item h5 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wedding3-detail-item p {
    font-size: 16px;
    font-weight: 600;
    color: #f5ede5;
    margin: 0;
}

.wedding3-details-contact {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wedding3-details-contact h5 {
    font-size: 16px;
    color: #d4c5b8;
    margin-bottom: 8px;
}

.wedding3-details-contact p {
    font-size: 20px;
    font-weight: 600;
    color: #f5ede5;
    margin-bottom: 12px;
}

.wedding3-details-contact p a {
    color: #D4A574;
    text-decoration: none;
}

.wedding3-details-contact p a:hover {
    color: #e8b88a;
}

.wedding3-details-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.wedding3-details-current {
    font-size: 28px;
    font-weight: 700;
    color: #f5ede5;
}

.wedding3-details-original {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.wedding3-details-discount {
    background: #F4B400;
    color: #2c1810;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 50px;
}

.wedding3-details-seats {
    color: #F4B400;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

/* ---------- 10. TESTIMONIALS ---------- */
.wedding3-testimonials {
    padding: 80px 0;
    background: #fff;
}

.wedding3-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.wedding3-testimonial-card {
    background: #fcf6f0;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.wedding3-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.wedding3-testimonial-stars {
    color: #F4B400;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.wedding3-testimonial-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.wedding3-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wedding3-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.wedding3-testimonial-card:hover .wedding3-avatar {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.wedding3-testimonial-author strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.wedding3-testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* ---------- 11. FAQ ---------- */
.wedding3-faq {
    padding: 80px 0;
    background: #fcf6f0;
}

.wedding3-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.wedding3-faq-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.wedding3-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.wedding3-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.wedding3-faq-item:hover .wedding3-faq-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(139, 69, 19, 0.15);
}

.wedding3-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.wedding3-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 12. FINAL CTA ---------- */
.wedding3-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.wedding3-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.wedding3-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.wedding3-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.wedding3-final-content {
    position: relative;
    z-index: 1;
}

.wedding3-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.wedding3-final-badge i {
    margin-right: 6px;
}

.wedding3-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.wedding3-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 30px auto;
}

.wedding3-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.wedding3-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wedding3-final-buttons .wedding3-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 25px rgba(212, 165, 116, 0.3);
}

.wedding3-final-buttons .wedding3-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.wedding3-final-buttons .wedding3-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.wedding3-final-buttons .wedding3-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.wedding3-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.wedding3-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: wedding3Pulse 2s infinite;
}

@keyframes wedding3Pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {
    .wedding3-banner-title {
        font-size: 34px;
    }
    
    .wedding3-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wedding3-zoom-image {
        height: 300px;
    }
    
    .wedding3-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .wedding3-learn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding3-advanced-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding3-business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding3-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .wedding3-why-grid {
        grid-template-columns: 1fr;
    }
    
    .wedding3-testimonials-grid {
        gap: 20px;
    }
    
    .wedding3-faq-grid {
        gap: 16px;
    }
    
    .wedding3-final-content h2 {
        font-size: 34px;
    }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {
    /* Banner */
    .wedding3-banner {
        height: 90vh;
        aspect-ratio: 3/4;
        min-height: 500px;
        max-height: 700px;
    }
    
    .wedding3-banner-title {
        font-size: 28px;
    }
    
    .wedding3-banner-host {
        font-size: 16px;
    }
    
    .wedding3-banner-info {
        gap: 10px 16px;
    }
    
    .wedding3-banner-info span {
        font-size: 13px;
    }
    
    .wedding3-price-current {
        font-size: 28px;
    }
    
    .wedding3-price-original {
        font-size: 16px;
    }
    
    .wedding3-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .wedding3-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wedding3-banner-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Gallery */
    .wedding3-gallery {
        padding: 50px 0;
    }
    
    .wedding3-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .wedding3-gallery-image {
        height: 250px;
    }
    
    .wedding3-gallery-content h5 {
        font-size: 12px;
    }
    
    .wedding3-gallery-content p {
        font-size: 10px;
    }
    
    .wedding3-gallery-content {
        padding: 8px 10px 10px;
    }
    
    /* About */
    .wedding3-about {
        padding: 50px 0;
    }
    
    .wedding3-about-grid {
        gap: 24px;
    }
    
    .wedding3-zoom-image {
        height: 260px;
    }
    
    .wedding3-about-image {
        order: -1;
    }
    
    .wedding3-about-text {
        padding: 0;
    }
    
    .wedding3-about-text h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .wedding3-about-text h2 span {
        display: block;
    }
    
    .wedding3-about-text p {
        font-size: 15px;
    }
    
    .wedding3-about-tag {
        font-size: 12px;
        padding: 3px 14px;
    }
    
    .wedding3-about-features {
        gap: 4px;
    }
    
    .wedding3-feature-row {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .wedding3-feature-row i {
        font-size: 16px;
        width: 20px;
    }
    
    /* Section Headers */
    .wedding3-section-header h2 {
        font-size: 28px;
    }
    
    .wedding3-section-header p {
        font-size: 15px;
    }
    
    /* Learn Section */
    .wedding3-learn {
        padding: 50px 0;
    }
    
    .wedding3-learn-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding3-learn-card {
        padding: 20px 16px;
    }
    
    .wedding3-learn-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .wedding3-learn-card h5 {
        font-size: 15px;
    }
    
    .wedding3-learn-card ul li {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }
    
    /* Advanced Section */
    .wedding3-advanced {
        padding: 50px 0;
    }
    
    .wedding3-advanced-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding3-advanced-card {
        padding: 20px 16px;
    }
    
    .wedding3-advanced-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .wedding3-advanced-card h5 {
        font-size: 15px;
    }
    
    .wedding3-advanced-card ul li {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }
    
    /* Business Section */
    .wedding3-business {
        padding: 50px 0;
    }
    
    .wedding3-business-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding3-business-card {
        padding: 20px 16px;
    }
    
    .wedding3-business-icon {
        font-size: 28px;
    }
    
    .wedding3-business-card h5 {
        font-size: 15px;
    }
    
    .wedding3-business-card p {
        font-size: 13px;
    }
    
    /* Why Join */
    .wedding3-why {
        padding: 50px 0;
    }
    
    .wedding3-why-box {
        padding: 30px 20px;
    }
    
    .wedding3-why-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .wedding3-why-item span {
        font-size: 14px;
    }
    
    /* Details */
    .wedding3-details {
        padding: 50px 0;
    }
    
    .wedding3-details-box {
        padding: 30px 20px;
    }
    
    .wedding3-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wedding3-detail-item i {
        font-size: 22px;
    }
    
    .wedding3-detail-item p {
        font-size: 14px;
    }
    
    .wedding3-details-contact p {
        font-size: 17px;
    }
    
    .wedding3-details-current {
        font-size: 24px;
    }
    
    .wedding3-details-original {
        font-size: 16px;
    }
    
    /* Testimonials */
    .wedding3-testimonials {
        padding: 50px 0;
    }
    
    .wedding3-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wedding3-testimonial-card {
        padding: 20px;
    }
    
    .wedding3-testimonial-card p {
        font-size: 14px;
    }
    
    .wedding3-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* FAQ */
    .wedding3-faq {
        padding: 50px 0;
    }
    
    .wedding3-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wedding3-faq-item {
        padding: 16px 20px;
        flex-direction: column;
        gap: 6px;
    }
    
    .wedding3-faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .wedding3-faq-item h4 {
        font-size: 15px;
    }
    
    .wedding3-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .wedding3-final-cta {
        padding: 50px 0;
    }
    
    .wedding3-final-box {
        padding: 32px 24px;
    }
    
    .wedding3-final-content h2 {
        font-size: 28px;
    }
    
    .wedding3-final-content p {
        font-size: 16px;
    }
    
    .wedding3-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ---------- SMALL MOBILE (max-width: 576px) ---------- */
@media (max-width: 576px) {
    /* Banner */
    .wedding3-banner-title {
        font-size: 24px;
    }
    
    .wedding3-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .wedding3-banner-info {
        flex-direction: column;
        gap: 6px;
    }
    
    .wedding3-banner-info span {
        font-size: 12px;
    }
    
    .wedding3-price-current {
        font-size: 22px;
    }
    
    .wedding3-price-original {
        font-size: 14px;
    }
    
    .wedding3-banner-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Gallery */
    .wedding3-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .wedding3-gallery-image {
        height: 200px;
    }
    
    .wedding3-gallery-content h5 {
        font-size: 12px;
    }
    
    .wedding3-gallery-content p {
        font-size: 10px;
    }
    
    /* About */
    .wedding3-about-text h2 {
        font-size: 24px;
    }
    
    .wedding3-about-text p {
        font-size: 14px;
    }
    
    .wedding3-about-tag {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    .wedding3-feature-row {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .wedding3-feature-row i {
        font-size: 15px;
        width: 18px;
    }
    
    /* Section Headers */
    .wedding3-section-header h2 {
        font-size: 26px;
    }
    
    .wedding3-section-header p {
        font-size: 14px;
    }
    
    .wedding3-section-badge {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    /* Learn Section */
    .wedding3-learn-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wedding3-learn-card {
        padding: 18px 14px;
    }
    
    .wedding3-learn-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .wedding3-learn-card h5 {
        font-size: 14px;
    }
    
    .wedding3-learn-card ul li {
        font-size: 13px;
        padding: 4px 0 4px 16px;
    }
    
    /* Advanced Section */
    .wedding3-advanced-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .wedding3-advanced-card {
        padding: 18px 14px;
    }
    
    .wedding3-advanced-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .wedding3-advanced-card h5 {
        font-size: 14px;
    }
    
    .wedding3-advanced-card ul li {
        font-size: 13px;
    }
    
    /* Business Section */
    .wedding3-business-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .wedding3-business-card {
        padding: 18px 14px;
    }
    
    .wedding3-business-icon {
        font-size: 24px;
    }
    
    .wedding3-business-card h5 {
        font-size: 14px;
    }
    
    .wedding3-business-card p {
        font-size: 12px;
    }
    
    /* Why Join */
    .wedding3-why-box {
        padding: 24px 16px;
    }
    
    .wedding3-why-item span {
        font-size: 13px;
    }
    
    /* Details */
    .wedding3-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .wedding3-detail-item i {
        font-size: 20px;
    }
    
    .wedding3-detail-item p {
        font-size: 13px;
    }
    
    .wedding3-details-contact p {
        font-size: 15px;
    }
    
    .wedding3-details-current {
        font-size: 20px;
    }
    
    .wedding3-details-original {
        font-size: 14px;
    }
    
    /* Testimonials */
    .wedding3-testimonial-card {
        padding: 18px;
    }
    
    .wedding3-testimonial-card p {
        font-size: 14px;
    }
    
    .wedding3-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .wedding3-testimonial-author strong {
        font-size: 14px;
    }
    
    .wedding3-testimonial-author span {
        font-size: 12px;
    }
    
    /* FAQ */
    .wedding3-faq-item {
        padding: 14px 16px;
        flex-direction: column;
        gap: 4px;
    }
    
    .wedding3-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .wedding3-faq-item h4 {
        font-size: 14px;
    }
    
    .wedding3-faq-item p {
        font-size: 13px;
    }
    
    /* Final CTA */
    .wedding3-final-box {
        padding: 24px 16px;
    }
    
    .wedding3-final-content h2 {
        font-size: 22px;
    }
    
    .wedding3-final-content p {
        font-size: 14px;
    }
    
    .wedding3-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wedding3-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .wedding3-final-seats {
        font-size: 14px;
    }
}

/* ---------- EXTRA SMALL (max-width: 400px) ---------- */
@media (max-width: 400px) {
    /* Banner */
    .wedding3-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .wedding3-banner-title {
        font-size: 20px;
    }
    
    .wedding3-banner-host {
        font-size: 14px;
    }
    
    .wedding3-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .wedding3-price-current {
        font-size: 20px;
    }

    /* Gallery */
    .wedding3-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .wedding3-gallery-image {
        height: 160px;
    }
    
    .wedding3-gallery-content h5 {
        font-size: 11px;
    }
    
    .wedding3-gallery-content p {
        font-size: 9px;
    }
    
    .wedding3-gallery-content {
        padding: 6px 8px 8px;
    }
    
    /* About */
    .wedding3-zoom-image {
        height: 200px;
    }
    
    .wedding3-about-text h2 {
        font-size: 20px;
    }
    
    .wedding3-about-text p {
        font-size: 13px;
    }
    
    .wedding3-feature-row {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .wedding3-feature-row i {
        font-size: 14px;
        width: 16px;
    }
    
    /* Section Headers */
    .wedding3-section-header h2 {
        font-size: 22px;
    }
    
    /* Learn Section */
    .wedding3-learn-card {
        padding: 16px 12px;
    }
    
    .wedding3-learn-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .wedding3-learn-card h5 {
        font-size: 13px;
    }
    
    .wedding3-learn-card ul li {
        font-size: 12px;
    }
    
    /* Advanced Section */
    .wedding3-advanced-card {
        padding: 16px 12px;
    }
    
    .wedding3-advanced-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .wedding3-advanced-card h5 {
        font-size: 13px;
    }
    
    .wedding3-advanced-card ul li {
        font-size: 12px;
    }
    
    /* Business Section */
    .wedding3-business-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wedding3-business-card {
        padding: 16px 12px;
    }
    
    .wedding3-business-icon {
        font-size: 22px;
    }
    
    .wedding3-business-card h5 {
        font-size: 13px;
    }
    
    .wedding3-business-card p {
        font-size: 12px;
    }
    
    /* Why Join */
    .wedding3-why-item span {
        font-size: 12px;
    }
    
    /* Details */
    .wedding3-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .wedding3-detail-item i {
        font-size: 18px;
    }
    
    .wedding3-detail-item p {
        font-size: 13px;
    }
    
    .wedding3-details-contact p {
        font-size: 14px;
    }
    
    .wedding3-details-current {
        font-size: 18px;
    }
    
    /* Testimonials */
    .wedding3-testimonial-card {
        padding: 16px;
    }
    
    .wedding3-testimonial-card p {
        font-size: 13px;
    }
    
    .wedding3-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .wedding3-testimonial-author strong {
        font-size: 13px;
    }
    
    .wedding3-testimonial-author span {
        font-size: 11px;
    }
    
    /* FAQ */
    .wedding3-faq-item {
        padding: 12px 14px;
    }
    
    .wedding3-faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }
    
    .wedding3-faq-item h4 {
        font-size: 13px;
    }
    
    .wedding3-faq-item p {
        font-size: 12px;
    }
    
    /* Final CTA */
    .wedding3-final-box {
        padding: 20px 14px;
    }
    
    .wedding3-final-content h2 {
        font-size: 18px;
    }
    
    .wedding3-final-content p {
        font-size: 13px;
    }
    
    .wedding3-final-buttons .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .wedding3-final-seats {
        font-size: 13px;
    }
}



/* ============================================= */
/* HOBBY BAKING PROGRAM - COMPLETE STYLES        */
/* Patisserie180 - Premium Eggless Bakery        */
/* ============================================= */

/* ---------- 1. BANNER ---------- */
.hobby-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: #1a1210;
}

.hobby-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hobby-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hobby-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.5) 0%, rgba(44, 24, 16, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hobby-banner-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 30px 20px;
    animation: hobbyFadeIn 1s ease forwards;
}

@keyframes hobbyFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.hobby-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 215, 190, 0.2);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.hobby-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 8px;
    line-height: 1.1;
}

.hobby-banner-host {
    font-size: 18px;
    color: #d4c5b8;
    margin-bottom: 8px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hobby-banner-host strong {
    color: #e8b88a;
}

.hobby-banner-subtitle {
    font-size: 18px;
    color: #f5ede5;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.hobby-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 24px;
}

.hobby-banner-info span {
    font-size: 15px;
    color: #f5ede5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hobby-banner-info i {
    color: #e8b88a;
}

.hobby-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hobby-banner-buttons .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.hobby-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.hobby-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.hobby-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #f5ede5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hobby-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ---------- 2. STATS SECTION ---------- */
.hobby-stats {
    padding: 60px 0;
    background: #fdf6f3;
    border-bottom: 2px solid rgba(139, 69, 19, 0.06);
}

.hobby-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hobby-stat-item {
    text-align: center;
}

.hobby-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
}

.hobby-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

/* ---------- 3. ABOUT SECTION ---------- */
.hobby-about {
    padding: 80px 0;
    background: #fff;
}

.hobby-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hobby-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.hobby-zoom-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.hobby-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hobby-zoom-image:hover img {
    transform: scale(1.05);
}

.hobby-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hobby-about-badge i {
    margin-right: 6px;
    color: #e8b88a;
}

.hobby-about-text {
    padding: 10px 0;
}

.hobby-about-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hobby-about-tag i {
    margin-right: 6px;
}

.hobby-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2c1810;
    margin-bottom: 12px;
}

.hobby-about-text h2 span {
    color: #8B4513;
}

.hobby-about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hobby-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.hobby-feature-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
    font-size: 15px;
    color: #2c1810;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hobby-feature-row:last-child,
.hobby-feature-row:nth-last-child(2) {
    border-bottom: none;
}

.hobby-feature-row i {
    color: #8B4513;
    width: 22px;
    font-size: 18px;
}

/* ---------- 4. SCHEDULE SECTION ---------- */
.hobby-schedule {
    padding: 80px 0;
    background: #fcf6f0;
}

.hobby-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.hobby-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hobby-section-badge i {
    margin-right: 6px;
}

.hobby-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2c1810;
    margin-bottom: 4px;
}

.hobby-section-header p {
    font-size: 16px;
    color: #666;
}

/* Schedule Grid */
.hobby-schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hobby-schedule-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.hobby-schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.hobby-schedule-highlight {
    background: linear-gradient(135deg, #fdf6f3, #fcf0e8);
    border-color: #D4A574;
    border-width: 2px;
}

.hobby-schedule-highlight:hover {
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.15);
}

.hobby-day-number {
    text-align: center;
    min-width: 60px;
    padding-top: 4px;
}

.hobby-day-number span {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hobby-day-number strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #8B4513;
    line-height: 1;
}

.hobby-day-content {
    flex: 1;
}

.hobby-day-content h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 6px;
}

.hobby-day-content h4 i {
    color: #8B4513;
    margin-right: 6px;
}

.hobby-day-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hobby-day-content ul li {
    font-size: 14px;
    color: #666;
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
}

.hobby-day-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D4A574;
}

.hobby-day-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #F4B400, #F9A825);
    color: #2c1810;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.hobby-schedule-card {
    position: relative;
}

/* ---------- 5. SKILLS SECTION ---------- */
.hobby-skills {
    padding: 80px 0;
    background: #fff;
}

.hobby-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hobby-skill-item {
    background: #fcf6f0;
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.hobby-skill-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.hobby-skill-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.hobby-skill-item:hover .hobby-skill-icon {
    background: #8B4513;
    color: #fff;
    transform: scale(1.1);
}

.hobby-skill-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.hobby-skill-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ---------- 6. WHAT'S INCLUDED ---------- */
.hobby-included {
    padding: 80px 0;
    background: #fcf6f0;
}

.hobby-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hobby-included-item {
    background: #fff;
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.hobby-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border-color: #D4A574;
}

.hobby-included-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #8B4513;
    transition: all 0.3s ease;
}

.hobby-included-item:hover .hobby-included-icon {
    background: #8B4513;
    color: #fff;
}

.hobby-included-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.hobby-included-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 7. LOCATION SECTION ---------- */
.hobby-location {
    padding: 80px 0;
    background: #fff;
}

.hobby-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.hobby-location-info {
    padding: 10px 0;
}

.hobby-location-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hobby-location-tag i {
    margin-right: 6px;
}

.hobby-location-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2c1810;
    margin-bottom: 20px;
}

.hobby-location-detail {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}

.hobby-location-detail:last-of-type {
    border-bottom: none;
}

.hobby-location-detail i {
    width: 24px;
    color: #8B4513;
    font-size: 20px;
    padding-top: 2px;
}

.hobby-location-detail strong {
    display: block;
    color: #2c1810;
    font-size: 15px;
}

.hobby-location-detail p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.hobby-location-cta {
    margin-top: 24px;
}

.hobby-location-cta .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.hobby-location-cta .btn:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.hobby-location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.1);
}

/* ---------- 8. FAQ ---------- */
.hobby-faq {
    padding: 80px 0;
    background: #fcf6f0;
}

.hobby-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hobby-faq-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: 14px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    display: flex;
    gap: 14px;
    transition: all 0.3s ease;
}

.hobby-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.06);
    border-color: #D4A574;
}

.hobby-faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(139, 69, 19, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B4513;
}

.hobby-faq-item h4 {
    font-size: 16px;
    color: #2c1810;
    margin-bottom: 2px;
}

.hobby-faq-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. FINAL CTA ---------- */
.hobby-final-cta {
    padding: 80px 0;
    background: #fdf6f3;
    border-top: 3px solid #D4A574;
    border-bottom: 3px solid #D4A574;
    position: relative;
    overflow: hidden;
}

.hobby-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.15);
}

.hobby-final-box:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.2);
}

.hobby-final-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hobby-final-content {
    position: relative;
    z-index: 1;
}

.hobby-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #F4B400;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 193, 7, 0.1);
    margin-bottom: 16px;
}

.hobby-final-badge i {
    margin-right: 6px;
}

.hobby-final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5ede5;
    margin-bottom: 8px;
}

.hobby-final-content p {
    color: #d4c5b8;
    font-size: 18px;
    max-width: 600px;
    margin: 8px auto 24px auto;
}

.hobby-final-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 28px;
}

.hobby-final-details span {
    color: #d4c5b8;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hobby-final-details i {
    color: #e8b88a;
}

.hobby-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hobby-final-buttons .btn {
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.hobby-final-buttons .hobby-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.hobby-final-buttons .hobby-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.hobby-final-seats {
    margin-top: 24px;
    color: #d4c5b8;
    font-size: 16px;
}

.hobby-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: hobbyPulse 2s infinite;
}

@keyframes hobbyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                          */
/* ============================================= */

@media (max-width: 992px) {
    .hobby-banner-title {
        font-size: 40px;
    }
    
    .hobby-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hobby-zoom-image {
        height: 300px;
    }
    
    .hobby-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hobby-schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .hobby-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hobby-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hobby-location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hobby-banner {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .hobby-banner-title {
        font-size: 32px;
    }
    
    .hobby-banner-host {
        font-size: 16px;
    }
    
    .hobby-banner-subtitle {
        font-size: 16px;
    }
    
    .hobby-banner-info span {
        font-size: 13px;
    }
    
    .hobby-banner-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hobby-stats {
        padding: 40px 0;
    }
    
    .hobby-stat-number {
        font-size: 32px;
    }
    
    .hobby-about {
        padding: 50px 0;
    }
    
    .hobby-about-text h2 {
        font-size: 28px;
    }
    
    .hobby-about-features {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .hobby-schedule {
        padding: 50px 0;
    }
    
    .hobby-section-header h2 {
        font-size: 28px;
    }
    
    .hobby-schedule-card {
        padding: 16px 18px;
        flex-direction: column;
        gap: 10px;
    }
    
    .hobby-day-number {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: auto;
        width: 100%;
    }
    
    .hobby-day-number strong {
        font-size: 24px;
    }
    
    .hobby-day-number span {
        font-size: 10px;
    }
    
    .hobby-skills {
        padding: 50px 0;
    }
    
    .hobby-skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .hobby-included {
        padding: 50px 0;
    }
    
    .hobby-included-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .hobby-included-item {
        padding: 20px 16px;
    }
    
    .hobby-location {
        padding: 50px 0;
    }
    
    .hobby-location-info h2 {
        font-size: 28px;
    }
    
    .hobby-faq {
        padding: 50px 0;
    }
    
    .hobby-faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .hobby-final-box {
        padding: 32px 24px;
    }
    
    .hobby-final-content h2 {
        font-size: 28px;
    }
    
    .hobby-final-content p {
        font-size: 16px;
    }
    
    .hobby-final-details span {
        font-size: 13px;
    }
    
    .hobby-final-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hobby-banner-title {
        font-size: 24px;
    }
    
    .hobby-banner-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hobby-banner-info {
        gap: 10px 16px;
    }
    
    .hobby-banner-info span {
        font-size: 12px;
    }
    
    .hobby-banner-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hobby-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hobby-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .hobby-stat-number {
        font-size: 28px;
    }
    
    .hobby-about-text h2 {
        font-size: 24px;
    }
    
    .hobby-about-text p {
        font-size: 14px;
    }
    
    .hobby-section-header h2 {
        font-size: 24px;
    }
    
    .hobby-schedule-card {
        padding: 14px 14px;
    }
    
    .hobby-day-content h4 {
        font-size: 14px;
    }
    
    .hobby-day-content ul li {
        font-size: 13px;
    }
    
    .hobby-skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .hobby-skill-item {
        padding: 16px 12px;
    }
    
    .hobby-skill-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .hobby-skill-item h5 {
        font-size: 14px;
    }
    
    .hobby-included-grid {
        grid-template-columns: 1fr;
    }
    
    .hobby-included-item {
        padding: 16px 14px;
    }
    
    .hobby-included-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .hobby-location-info h2 {
        font-size: 24px;
    }
    
    .hobby-location-detail i {
        font-size: 18px;
    }
    
    .hobby-final-box {
        padding: 24px 16px;
    }
    
    .hobby-final-content h2 {
        font-size: 22px;
    }
    
    .hobby-final-details {
        gap: 12px 20px;
    }
    
    .hobby-final-details span {
        font-size: 12px;
    }
    
    .hobby-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hobby-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .hobby-banner {
        min-height: 450px;
        max-height: 600px;
    }
    
    .hobby-banner-title {
        font-size: 20px;
    }
    
    .hobby-banner-host {
        font-size: 14px;
    }
    
    .hobby-banner-subtitle {
        font-size: 14px;
    }
    
    .hobby-banner-buttons .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hobby-stat-number {
        font-size: 24px;
    }
    
    .hobby-stat-label {
        font-size: 12px;
    }
    
    .hobby-zoom-image {
        height: 200px;
    }
    
    .hobby-about-text h2 {
        font-size: 20px;
    }
    
    .hobby-skills-grid {
        grid-template-columns: 1fr;
    }
    
    .hobby-final-content h2 {
        font-size: 18px;
    }
    
    .hobby-final-content p {
        font-size: 14px;
    }
}

/* ============================================= */
/* 10. INSTAGRAM STORY HIGHLIGHTS - COMPLETE     */
/* ============================================= */

.hobby-instagram {
    padding: 80px 0;
    background: #fcf6f0;
    position: relative;
}

.hobby-instagram-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

.hobby-instagram-link {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #fff;
    padding: 28px 36px;
    border-radius: 20px;
    text-decoration: none;
    border: 2px solid rgba(139, 69, 19, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
    position: relative;
    overflow: hidden;
}

.hobby-instagram-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.03), rgba(64, 93, 230, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hobby-instagram-link:hover::before {
    opacity: 1;
}

.hobby-instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(139, 69, 19, 0.12);
    border-color: #E1306C;
}

.hobby-instagram-link:active {
    transform: translateY(-1px) scale(0.98);
}

.hobby-instagram-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.hobby-instagram-link:hover .hobby-instagram-icon {
    transform: scale(1.02) rotate(-2deg);
    box-shadow: 0 12px 32px rgba(225, 48, 108, 0.35);
}

.hobby-instagram-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hobby-instagram-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.hobby-instagram-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.hobby-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #405DE6, #E1306C);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hobby-instagram-btn i {
    font-size: 16px;
}

.hobby-instagram-link:hover .hobby-instagram-btn {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.hobby-instagram-link::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #D4A574;
    font-size: 18px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hobby-instagram-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
    color: #E1306C;
}

/* Instagram Icon Pulse Animation */
@keyframes instagramPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(225, 48, 108, 0.25);
    }
    50% {
        box-shadow: 0 8px 40px rgba(225, 48, 108, 0.45);
    }
}

.hobby-instagram-icon {
    animation: instagramPulse 3s ease-in-out infinite;
}

.hobby-instagram-link:hover .hobby-instagram-icon {
    animation: none;
}

/* ============================================= */
/* TABLET - 992px                              */
/* ============================================= */
@media (max-width: 992px) {
    .hobby-instagram {
        padding: 70px 0;
    }

    .hobby-instagram-box {
        max-width: 600px;
    }

    .hobby-instagram-link {
        padding: 26px 32px;
        gap: 24px;
    }

    .hobby-instagram-icon {
        width: 68px;
        height: 68px;
        min-width: 68px;
        font-size: 34px;
    }

    .hobby-instagram-content h3 {
        font-size: 19px;
    }

    .hobby-instagram-content p {
        font-size: 14px;
    }

    .hobby-instagram-btn {
        font-size: 13px;
        padding: 7px 20px;
    }

    .hobby-instagram-link::after {
        right: 24px;
        font-size: 16px;
    }
}

/* ============================================= */
/* TABLET SMALL - 768px                        */
/* ============================================= */
@media (max-width: 768px) {
    .hobby-instagram {
        padding: 60px 0;
    }

    .hobby-instagram-box {
        max-width: 100%;
        padding: 0 20px;
    }

    .hobby-instagram-link {
        padding: 24px 28px;
        gap: 20px;
        border-radius: 18px;
    }

    .hobby-instagram-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 30px;
    }

    .hobby-instagram-content h3 {
        font-size: 18px;
    }

    .hobby-instagram-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hobby-instagram-btn {
        font-size: 13px;
        padding: 6px 18px;
    }

    .hobby-instagram-btn i {
        font-size: 14px;
    }

    .hobby-instagram-link::after {
        display: none;
    }
}

/* ============================================= */
/* MOBILE LANDSCAPE - 576px                    */
/* ============================================= */
@media (max-width: 576px) {
    .hobby-instagram {
        padding: 50px 0;
    }

    .hobby-instagram-box {
        padding: 0 15px;
    }

    .hobby-instagram-link {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
        border-radius: 16px;
    }

    .hobby-instagram-link::before {
        display: none;
    }

    .hobby-instagram-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 32px;
    }

    .hobby-instagram-content {
        width: 100%;
    }

    .hobby-instagram-content h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .hobby-instagram-content p {
        font-size: 13px;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .hobby-instagram-btn {
        font-size: 13px;
        padding: 8px 20px;
        width: 100%;
        justify-content: center;
    }

    .hobby-instagram-link::after {
        display: none;
    }

    .hobby-instagram-link:hover {
        transform: translateY(-4px);
    }

    .hobby-instagram-link:active {
        transform: translateY(-2px) scale(0.98);
    }
}

/* ============================================= */
/* MOBILE PORTRAIT - 400px                     */
/* ============================================= */
@media (max-width: 400px) {
    .hobby-instagram {
        padding: 40px 0;
    }

    .hobby-instagram-box {
        padding: 0 12px;
    }

    .hobby-instagram-link {
        padding: 20px 16px;
        gap: 14px;
        border-radius: 14px;
        border-width: 1.5px;
    }

    .hobby-instagram-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 28px;
        box-shadow: 0 6px 20px rgba(225, 48, 108, 0.2);
    }

    .hobby-instagram-content h3 {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .hobby-instagram-content p {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .hobby-instagram-btn {
        font-size: 12px;
        padding: 6px 16px;
        gap: 6px;
    }

    .hobby-instagram-btn i {
        font-size: 12px;
    }

    .hobby-instagram-icon {
        animation: instagramPulse 3s ease-in-out infinite;
    }
}

/* ============================================= */
/* EXTRA SMALL - 320px                         */
/* ============================================= */
@media (max-width: 320px) {
    .hobby-instagram {
        padding: 30px 0;
    }

    .hobby-instagram-box {
        padding: 0 10px;
    }

    .hobby-instagram-link {
        padding: 16px 14px;
        gap: 12px;
        border-radius: 12px;
    }

    .hobby-instagram-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 24px;
        box-shadow: 0 4px 16px rgba(225, 48, 108, 0.15);
    }

    .hobby-instagram-content h3 {
        font-size: 14px;
    }

    .hobby-instagram-content p {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .hobby-instagram-btn {
        font-size: 11px;
        padding: 5px 14px;
    }

    .hobby-instagram-btn i {
        font-size: 11px;
    }
}

/* ============================================= */
/* DARK MODE SUPPORT (Optional)                */
/* ============================================= */
@media (prefers-color-scheme: dark) {
    .hobby-instagram {
        background: #1a1210;
    }

    .hobby-instagram-link {
        background: #2c1810;
        border-color: rgba(212, 165, 116, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .hobby-instagram-link:hover {
        border-color: #E1306C;
        box-shadow: 0 16px 48px rgba(225, 48, 108, 0.15);
    }

    .hobby-instagram-content h3 {
        color: #f5ede5;
    }

    .hobby-instagram-content p {
        color: #b8a89a;
    }

    .hobby-instagram-link::after {
        color: #8B4513;
    }

    .hobby-instagram-link:hover::after {
        color: #E1306C;
    }
}

/* ============================================= */
/* ACCESSIBILITY - REDUCED MOTION              */
/* ============================================= */
@media (prefers-reduced-motion: reduce) {
    .hobby-instagram-icon {
        animation: none;
    }

    .hobby-instagram-link,
    .hobby-instagram-icon,
    .hobby-instagram-btn,
    .hobby-instagram-link::after {
        transition: none !important;
    }

    .hobby-instagram-link:hover {
        transform: none !important;
    }

    .hobby-instagram-link:hover .hobby-instagram-icon {
        transform: none !important;
    }

    .hobby-instagram-link:hover .hobby-instagram-btn {
        transform: none !important;
    }

    .hobby-instagram-link:hover::after {
        transform: none !important;
    }
}

/* ============================================= */
/* HIGH CONTRAST - ACCESSIBILITY               */
/* ============================================= */
@media (prefers-contrast: high) {
    .hobby-instagram-link {
        border-width: 3px;
        border-color: #2c1810;
    }

    .hobby-instagram-link:hover {
        border-color: #E1306C;
    }

    .hobby-instagram-content h3 {
        color: #000;
    }

    .hobby-instagram-content p {
        color: #333;
    }

    .hobby-instagram-btn {
        background: #E1306C;
        color: #fff;
    }

    .hobby-instagram-icon {
        background: #E1306C;
    }
}



/* ============================================= */
/* VIEW SCHEDULE BUTTON - MATCH ENQUIRE NOW      */
/* ============================================= */

.hobby-btn-schedule {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 36px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    
    /* SAME AS ENQUIRE NOW BUTTON */
    background: linear-gradient(135deg, #8B4513, #D4A574) !important;
    color: #fff !important;
    box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4) !important;
}

.hobby-btn-schedule:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.5) !important;
    background: linear-gradient(135deg, #7a3b10, #c4956a) !important;
    color: #fff !important;
}

.hobby-btn-schedule i {
    color: #fff !important;
    transition: color 0.3s ease;
}

.hobby-btn-schedule:hover i {
    color: #fff !important;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .hobby-btn-schedule {
        padding: 12px 24px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ============================================= */
/* INSTAGRAM REEL SECTION                        */
/* ============================================= */

.hobby-instagram-reel {
    padding: 60px 0;
    background: #fcf6f0;
}

.hobby-reel-wrapper {
    max-width: 540px;
    margin: 0 auto;
}

/* Custom Reel Box */
.hobby-reel-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(44, 24, 16, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.06);
}

.hobby-reel-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 45px rgba(139, 69, 19, 0.12);
}

.hobby-reel-link {
    text-decoration: none;
    display: block;
}

.hobby-reel-thumbnail {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #1a1210;
    cursor: pointer;
}

.hobby-reel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hobby-reel-box:hover .hobby-reel-thumbnail img {
    transform: scale(1.05);
}

.hobby-reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.hobby-reel-box:hover .hobby-reel-play {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.hobby-reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    text-align: center;
}

.hobby-reel-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hobby-reel-content {
    padding: 20px 24px 24px;
}

.hobby-reel-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.hobby-reel-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.hobby-reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #405DE6, #E1306C);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hobby-reel-btn i {
    font-size: 16px;
}

.hobby-reel-box:hover .hobby-reel-btn {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    .hobby-instagram-reel {
        padding: 40px 0;
    }

    .hobby-reel-thumbnail {
        height: 220px;
    }

    .hobby-reel-play {
        font-size: 48px;
    }

    .hobby-reel-content {
        padding: 16px 18px 20px;
    }

    .hobby-reel-content h3 {
        font-size: 16px;
    }

    .hobby-reel-content p {
        font-size: 13px;
    }
}

/* ============================================= */
/* INSTAGRAM REELS GRID                         */
/* ============================================= */

.testimonials-reels {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid rgba(139, 69, 19, 0.08);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.reel-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.1);
    border-color: #D4A574;
}

.reel-link {
    text-decoration: none;
    display: block;
}

.reel-thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #1a1210;
}

.reel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.reel-card:hover .reel-thumbnail img {
    transform: scale(1.05);
}

.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.reel-card:hover .reel-play {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-align: center;
}

.reel-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.reel-content {
    padding: 16px 20px 20px;
}

.reel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.reel-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 6px;
}

.reel-stars {
    color: #F4B400;
    font-size: 13px;
    margin-bottom: 4px;
}

.reel-author {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 10px;
}

.reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #405DE6, #E1306C);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reel-card:hover .reel-btn {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

/* ============================================= */
/* RESPONSIVE                                   */
/* ============================================= */

@media (max-width: 992px) {
    .reels-grid {
        gap: 24px;
    }
    
    .reel-thumbnail {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header h3 {
        font-size: 24px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .reel-thumbnail {
        height: 200px;
    }

    .reel-play {
        font-size: 44px;
    }

    .reel-content {
        padding: 14px 16px 18px;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header h3 {
        font-size: 20px;
    }

    .testimonials-reels {
        margin-top: 40px;
        padding-top: 30px;
    }

    .reels-grid {
        gap: 16px;
        max-width: 100%;
    }

    .reel-thumbnail {
        height: 180px;
    }

    .reel-play {
        font-size: 38px;
    }

    .reel-content {
        padding: 12px 14px 16px;
    }

    .reel-content p {
        font-size: 13px;
    }

    .reel-btn {
        font-size: 11px;
        padding: 5px 14px;
    }
}