/* =============================================================
   CREAM CORNER — MENU PAGE (PREMIUM EDITION)
   Same brand palette as style.css, elevated with richer glass,
   gold-foil accents, deeper depth, and refined micro-interactions.
   ============================================================= */

:root {
    --cc-brown: #55473E;
    --cc-brown-dark: #2F241F;
    --cc-brown-deep: #211914;
    --cc-gold: #FFC600;
    --cc-gold-dark: #D99E00;
    --cc-gold-light: #FFE8A3;
    --cc-orange: #FF7E00;
    --cc-orange-dark: #E96500;
    --cc-cream: #FFF9F0;
    --cc-cream-dark: #F7EBDD;
    --cc-white: #FFFFFF;
    --cc-text: #3B302A;
    --cc-muted: #766A62;
    --cc-border: rgba(85, 71, 62, 0.12);
    --cc-shadow-sm: 0 8px 25px rgba(47, 36, 31, 0.08);
    --cc-shadow-md: 0 15px 45px rgba(47, 36, 31, 0.13);
    --cc-shadow-lg: 0 25px 70px rgba(47, 36, 31, 0.18);
    --cc-radius-sm: 12px;
    --cc-radius-md: 20px;
    --cc-radius-lg: 30px;
    --cc-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Premium glass tokens */
    --glass-bg: rgba(255, 255, 255, 0.16);
    --glass-border: rgba(255, 255, 255, 0.24);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(14px);

    /* Gold-foil gradient family — the signature premium accent */
    --foil-gradient: linear-gradient(120deg, #B8860B 0%, #FFE8A3 22%, #FFC600 45%, #FFF6D8 60%, #D99E00 78%, #FFC600 100%);
    --foil-gradient-soft: linear-gradient(135deg, rgba(255, 198, 0, 0.14), rgba(255, 126, 0, 0.08));
    --luxury-shadow: 0 25px 60px rgba(47, 36, 31, 0.22), 0 6px 16px rgba(217, 158, 0, 0.14);
    --hairline-gold: rgba(255, 198, 0, 0.35);
}

/* =============================================================
   PAGE HEADER — PREMIUM
   ============================================================= */

.page-header {
    /* UPDATED: Padding-top ko 70px se badha kar 110px kiya taaki content neeche aaye */
    padding: 140px 0 36px; 
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 198, 0, 0.14), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 126, 0, 0.10), transparent 45%),
        var(--cc-brown-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Fine gold hairline frame top/bottom — a quiet couture touch */
.page-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(70%, 640px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hairline-gold), transparent);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 9s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.16);
    border: 1px solid var(--hairline-gold);
    color: var(--cc-gold);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.page-header-badge i {
    color: var(--cc-gold);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.8s ease forwards;
}

.page-header h1 span {
    position: relative;
    background: var(--foil-gradient);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: foilShift 6s ease-in-out infinite;
}

@keyframes foilShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-header h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255, 198, 0, 0.32);
    border-radius: 4px;
    z-index: -1;
    animation: expandLine 1s ease forwards;
}

@keyframes expandLine {
    from { width: 0; left: 50%; right: 50%; }
    to { width: 100%; left: 0; right: 0; }
}

.page-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 10px;
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.page-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.page-divider i {
    color: var(--cc-gold);
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 6px rgba(255, 198, 0, 0.4));
}

@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 BAR — PREMIUM
   ============================================================= */

.workshop-search {
    max-width: 620px;
    /* UPDATED: Margin top ko -22px se badha kar 10px kiya, aur bottom margin add kiya */
    margin: -22px auto 48px; 
    padding: 0 20px;
    position: relative;
    z-index: 50;
}

.search-input {
    width: 100%;
    padding: 17px 22px 17px 56px;
    border: 1.5px solid var(--cc-border);
    border-radius: 999px;
    background: var(--cc-white);
    font-size: 15px;
    color: var(--cc-text);
    transition: var(--cc-transition);
    box-shadow: var(--cc-shadow-md);
}

.search-input:focus {
    outline: none;
    border-color: var(--cc-gold);
    box-shadow: 0 12px 45px rgba(255, 198, 0, 0.18), 0 0 0 4px rgba(255, 198, 0, 0.08);
}

.search-input-icon {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cc-orange);
    font-size: 18px;
    z-index: 2;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: var(--cc-white);
    border-radius: 16px;
    box-shadow: var(--cc-shadow-lg);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    border: 1px solid var(--cc-border);
}

.search-suggestions.active {
    display: block;
    animation: fadeUp 0.25s ease forwards;
}

.search-suggestion-item {
    display: block;
    padding: 13px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: var(--cc-text);
    border-bottom: 1px solid var(--cc-border);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: linear-gradient(90deg, rgba(255, 198, 0, 0.08), transparent);
    color: var(--cc-orange);
    padding-left: 26px;
}

.search-suggestion-item strong {
    color: var(--cc-orange);
    font-weight: 700;
}

.search-suggestion-item.no-match {
    color: var(--cc-muted);
    text-align: center;
    cursor: default;
}

.search-suggestion-item.no-match:hover {
    background: none;
    color: var(--cc-muted);
    padding-left: 20px;
}

.search-suggestions::-webkit-scrollbar {
    width: 4px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: var(--cc-gold);
    border-radius: 999px;
}

/* =============================================================
   MENU TABS — PREMIUM
   ============================================================= */

.menu-tabs-section {
    padding: 34px 0 16px;
    background: rgba(255, 249, 240, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--cc-border);
    box-shadow: 0 6px 20px rgba(47, 36, 31, 0.03);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-tab-item {
    margin: 0;
}

.menu-tab-btn {
    padding: 11px 24px;
    border: 1.5px solid var(--cc-border);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 249, 240, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--cc-text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--cc-transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.menu-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 198, 0, 0.14), transparent);
    transition: left 0.5s ease;
}

.menu-tab-btn:hover::before {
    left: 100%;
}

.menu-tab-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--cc-orange);
}

.menu-tab-btn:hover {
    background: rgba(255, 198, 0, 0.08);
    color: var(--cc-orange);
    border-color: var(--hairline-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 198, 0, 0.14);
}

.menu-tab-btn:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.menu-tab-btn.active {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(255, 126, 0, 0.38);
    transform: translateY(-3px);
    font-weight: 700;
}

.menu-tab-btn.active i {
    color: var(--cc-brown-dark);
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* =============================================================
   MENU CONTENT
   ============================================================= */

.menu-content-section {
    padding: 46px 0 76px;
    background: var(--cc-cream);
}

.menu-content-panel {
    display: none;
    animation: panelFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.menu-content-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =============================================================
   SECTION HEADER
   ============================================================= */

.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--cc-brown-dark);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
    border-radius: 2px;
    animation: expandWidth 0.8s ease forwards;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 64px; }
}

.section-header .subtitle {
    color: var(--cc-muted);
    font-size: 16px;
    margin-top: 16px;
}

.section-header .price-range {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 7px 24px;
    background: rgba(255, 198, 0, 0.12);
    color: var(--cc-orange);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 198, 0, 0.22);
}

.section-header .price-range i {
    font-size: 12px;
}

.empty-category-state {
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed var(--cc-border);
    border-radius: 20px;
    color: var(--cc-muted);
}

.empty-category-state i {
    margin-bottom: 14px;
    color: var(--cc-orange);
    font-size: 32px;
}

.empty-category-state h3 {
    margin-bottom: 8px;
    color: var(--cc-brown-dark);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.empty-category-state p {
    margin: 0;
    font-size: 14px;
}

/* =============================================================
   MENU GRID
   ============================================================= */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    align-items: stretch;
}

/* =============================================================
   MENU ITEM CARD — PREMIUM GLASS + GOLD-FOIL EDGE
   ============================================================= */

.menu-item-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07), 0 4px 14px rgba(85, 71, 62, 0.07);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardStagger 0.6s ease forwards;
}

/* Thin foil rim that lights up on hover — the signature premium touch */
.menu-item-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: var(--foil-gradient);
    background-size: 220% 220%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 4;
}

.menu-item-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--luxury-shadow);
}

.menu-item-card:hover::after {
    opacity: 1;
    animation: foilShift 4s ease-in-out infinite;
}

/* Shine sweep */
.menu-item-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 198, 0, 0.18), transparent);
    transition: left 0.8s;
    z-index: 3;
    pointer-events: none;
}

.menu-item-card:hover::before {
    left: 140%;
}

/* Stagger animation */
.menu-item-card:nth-child(1) { animation-delay: 0.05s; }
.menu-item-card:nth-child(2) { animation-delay: 0.10s; }
.menu-item-card:nth-child(3) { animation-delay: 0.15s; }
.menu-item-card:nth-child(4) { animation-delay: 0.20s; }
.menu-item-card:nth-child(5) { animation-delay: 0.25s; }
.menu-item-card:nth-child(6) { animation-delay: 0.30s; }
.menu-item-card:nth-child(7) { animation-delay: 0.35s; }
.menu-item-card:nth-child(8) { animation-delay: 0.40s; }
.menu-item-card:nth-child(9) { animation-delay: 0.45s; }
.menu-item-card:nth-child(10) { animation-delay: 0.50s; }
.menu-item-card:nth-child(11) { animation-delay: 0.55s; }
.menu-item-card:nth-child(12) { animation-delay: 0.60s; }

@keyframes cardStagger {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Image area */
.menu-item-image {
    position: relative;
    height: 290px;
    padding: 0; /* IMPORTANT */
    display: block;
    background: linear-gradient(180deg, #ffffff, var(--cc-cream-dark));
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(47, 36, 31, 0.06),
        transparent 45%
    );
    pointer-events: none;
    z-index: 2;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover !important;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.06);
}
/* Badge */
.menu-item-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    padding: 6px 17px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    animation: badgePulse 2.2s ease-in-out infinite;
    color: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.menu-item-badge.best-seller {
    background: linear-gradient(135deg, #F4B400, #F39C12);
    color: var(--cc-brown-dark);
    box-shadow: 0 5px 16px rgba(244, 180, 0, 0.4);
}

.menu-item-badge.trending {
    background: linear-gradient(135deg, #E74C3C, #F39C12);
    color: #fff;
    box-shadow: 0 5px 16px rgba(231, 76, 60, 0.4);
}

.menu-item-badge.premium {
    background: linear-gradient(135deg, var(--cc-brown), #8B6914);
    color: #fff;
    box-shadow: 0 5px 16px rgba(85, 71, 62, 0.4);
}

.menu-item-badge.new {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: #fff;
    box-shadow: 0 5px 16px rgba(46, 204, 113, 0.4);
}

.menu-item-badge.signature {
    background: linear-gradient(135deg, #6C3483, #AF7AC5);
    color: #fff;
    box-shadow: 0 5px 16px rgba(108, 52, 131, 0.4);
}

.menu-item-badge.royal {
    background: linear-gradient(135deg, #2C3E50, #8B4513);
    color: #fff;
    box-shadow: 0 5px 16px rgba(44, 62, 80, 0.4);
}

.menu-item-badge.popular {
    background: linear-gradient(135deg, #2980B9, #3498DB);
    color: #fff;
    box-shadow: 0 5px 16px rgba(52, 152, 219, 0.4);
}

.menu-item-badge.favorite {
    background: linear-gradient(135deg, #E74C3C, #8E44AD);
    color: #fff;
    box-shadow: 0 5px 16px rgba(142, 68, 173, 0.4);
}

/* Content */
.menu-item-content {
    padding: 16px 20px 16px;
    background: rgba(255, 255, 255, 0.97);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-content h3 {
    font-size: 17.5px;
    font-weight: 600;
    color: var(--cc-brown-dark);
    margin-bottom: 5px;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.menu-item-card:hover .menu-item-content h3 {
    color: var(--cc-orange);
}

.menu-item-content p {
    font-size: 13px;
    color: var(--cc-muted);
    line-height: 1.55;
    margin-bottom: 8px;
    flex: 0 1 auto;
}

/* Footer */
.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed var(--cc-border);
    margin-top: auto;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cc-orange);
    letter-spacing: 0.2px;
}

/* WhatsApp order button */
.btn-order-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    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;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
}

.btn-order-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.btn-order-whatsapp:hover::before {
    left: 100%;
}

.btn-order-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
}

.btn-order-whatsapp:active {
    transform: scale(0.95);
}

.btn-order-whatsapp i {
    font-size: 14px;
}

/* =============================================================
   WEDDING EXPERIENCE — LUXURY FRAMED CARD
   ============================================================= */

.wedding-experience {
    padding: 80px 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 198, 0, 0.08), transparent 45%),
        linear-gradient(135deg, var(--cc-cream) 0%, var(--cc-cream-dark) 100%);
}

.wedding-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 54px 44px;
    background: linear-gradient(160deg, rgba(47, 36, 31, 0.06), rgba(47, 36, 31, 0.03));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 22px;
    border: 1.5px solid rgba(255, 198, 0, 0.4);
    box-shadow: 0 25px 60px rgba(47, 36, 31, 0.16), 0 8px 24px rgba(217, 158, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatY 4.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Fine gold corner frame */
.wedding-box::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--hairline-gold);
    border-radius: 14px;
    pointer-events: none;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.wedding-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 198, 0, 0.6);
    box-shadow: 0 32px 75px rgba(47, 36, 31, 0.22), 0 10px 30px rgba(217, 158, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.wedding-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: rotateIcon 8s linear infinite;
    box-shadow: 0 14px 32px rgba(255, 126, 0, 0.3);
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wedding-icon i {
    font-size: 32px;
    color: var(--cc-brown-dark);
    animation: counterRotate 8s linear infinite;
}

@keyframes counterRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.wedding-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--cc-brown-dark);
    margin-bottom: 14px;
}

.wedding-box p {
    font-size: 15px;
    color: var(--cc-muted);
    line-height: 1.75;
}

.wedding-box .highlight {
    color: var(--cc-orange);
    font-weight: 700;
}

.wedding-box .min-order {
    display: inline-block;
    margin: 14px 0 20px;
    padding: 6px 24px;
    background: rgba(255, 198, 0, 0.13);
    color: var(--cc-orange);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 198, 0, 0.24);
}

.wedding-box .btn-primary {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    border: none;
    padding: 15px 42px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--cc-brown-dark);
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(255, 198, 0, 0.28);
}

.wedding-box .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.wedding-box .btn-primary:hover::before {
    left: 100%;
}

.wedding-box .btn-primary:hover {
    background: var(--cc-white);
    color: var(--cc-brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 198, 0, 0.4);
}

/* =============================================================
   EXPERTISE BADGES — PREMIUM
   ============================================================= */

.expertise-badges {
    padding: 68px 0;
    background: linear-gradient(135deg, var(--cc-brown) 0%, var(--cc-brown-dark) 100%);
    position: relative;
    overflow: hidden;
}

.expertise-badges::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 198, 0, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.expertise-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    padding: 15px 20px;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
    border: 1px solid rgba(255, 198, 0, 0.16);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInBadge 0.6s ease forwards;
}

.expertise-badge:nth-child(1) { animation-delay: 0.05s; }
.expertise-badge:nth-child(2) { animation-delay: 0.10s; }
.expertise-badge:nth-child(3) { animation-delay: 0.15s; }
.expertise-badge:nth-child(4) { animation-delay: 0.20s; }
.expertise-badge:nth-child(5) { animation-delay: 0.25s; }
.expertise-badge:nth-child(6) { animation-delay: 0.30s; }
.expertise-badge:nth-child(7) { animation-delay: 0.35s; }
.expertise-badge:nth-child(8) { animation-delay: 0.40s; }

@keyframes fadeInBadge {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.expertise-badge:hover {
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.16));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 198, 0, 0.2);
    border-color: rgba(255, 198, 0, 0.45);
}

.expertise-badge i {
    font-size: 22px;
    color: var(--cc-gold);
    min-width: 28px;
    transition: transform 0.3s ease;
}

.expertise-badge:hover i {
    transform: scale(1.22) rotate(-5deg);
}

.expertise-badge span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 22px;
    }
    .menu-item-image {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .page-header {
        padding: 95px 0 30px;
    }
    .page-header h1 {
        font-size: 34px;
    }
    .page-header p {
        font-size: 14px;
    }

    .menu-tabs-section {
        padding: 10px 0;
        overflow: hidden;
    }
    .menu-tabs {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 6px;
        padding: 4px 0 8px;
    }
    .menu-tabs::-webkit-scrollbar {
        display: none;
    }
    .menu-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 30px;
    }
    .menu-tab-btn i {
        font-size: 12px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        align-items: start;
    }
    .menu-item-card {
        height: auto !important;
        min-height: 320px;
        border-radius: 14px;
        overflow: hidden;
    }
    .menu-item-image {
        height: 280px;
        padding: 6px;
        background: #f5f0eb;
        flex-shrink: 0;
    }
    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .menu-item-badge {
        font-size: 12px;
        padding: 3px 9px;
        top: 8px;
        right: 8px;
    }
    .menu-item-content {
        padding: 12px 14px 14px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .menu-item-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .menu-item-content p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 6px;
        min-height: 28px;
        max-height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
    }
    .menu-item-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        border-top: 1px dashed var(--cc-border);
        margin-top: 8px;
    }
    .menu-item-price {
        font-size: 14px;
    }
    .btn-order-whatsapp {
        padding: 5px 14px;
        font-size: 11px;
    }

    .section-header h2 {
        font-size: 28px;
    }
    .wedding-box {
        padding: 34px 22px;
    }
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .expertise-badge {
        padding: 10px 14px;
    }
    .expertise-badge i {
        font-size: 18px;
        min-width: 22px;
    }
    .expertise-badge span {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 30px;
    }

    .menu-tabs {
        gap: 4px;
        padding: 3px 0 6px;
    }
    .menu-tab-btn {
        padding: 6px 12px;
        font-size: 11px;
        border-radius: 25px;
    }
    .menu-tab-btn i {
        font-size: 11px;
    }

    .menu-grid {
        gap: 12px;
        align-items: start;
    }
    .menu-item-card {
        min-height: 290px;
        border-radius: 12px;
    }
    .menu-item-image {
        height: 140px;
        padding: 5px;
    }
    .menu-item-content {
        padding: 10px 12px 12px;
    }
    .menu-item-content h3 {
        font-size: 13px;
        margin-bottom: 3px;
    }
    .menu-item-content p {
        font-size: 11px;
        line-height: 1.3;
        margin-bottom: 4px;
        min-height: 24px;
        max-height: 34px;
        -webkit-line-clamp: 2;
    }
    .menu-item-footer {
        padding-top: 6px;
    }
    .menu-item-price {
        font-size: 13px;
    }
    .btn-order-whatsapp {
        padding: 4px 12px;
        font-size: 10px;
    }

    .section-header h2 {
        font-size: 26px;
    }
    .wedding-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    body {
        overflow-x: hidden;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
        overflow-x: hidden;
    }

    .page-header {
        padding: 60px 0 25px;
    }
    .page-header h1 {
        font-size: 26px;
    }
    .page-header p {
        font-size: 13px;
    }

    .menu-tabs-section {
        padding: 8px 0;
        overflow: hidden;
    }
    .menu-tabs {
        gap: 3px;
        padding: 2px 0 4px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .menu-tabs::-webkit-scrollbar {
        display: none;
    }
    .menu-tab-btn {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 20px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    .menu-tab-btn i {
        font-size: 10px;
        margin-right: 3px;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 4px;
        width: 100%;
        overflow-x: hidden;
        align-items: start;
    }
    .menu-item-card {
        min-height: 270px;
        max-height: 350px;
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .menu-item-image {
        height: 130px;
        padding: 4px;
        background: #f5f0eb;
        flex-shrink: 0;
    }
    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .menu-item-content {
        padding: 8px 10px 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 75px;
    }
    .menu-item-content h3 {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--cc-brown-dark);
    }
    .menu-item-content p {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 6px;
        min-height: 20px;
        max-height: 30px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
        color: var(--cc-muted);
    }
    .menu-item-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 8px;
        border-top: 1px dashed var(--cc-border);
        margin-top: 6px;
        flex-wrap: wrap;
        gap: 4px;
    }
    .menu-item-price {
        font-size: 12px;
        font-weight: 700;
        color: var(--cc-orange);
    }
    .btn-order-whatsapp {
        padding: 3px 10px;
        font-size: 9px;
        gap: 3px;
        border-radius: 30px;
        min-width: 40px;
    }
    .btn-order-whatsapp i {
        font-size: 10px;
    }

    .section-header {
        margin-bottom: 30px;
    }
    .section-header h2 {
        font-size: 22px;
    }
    .section-header .subtitle {
        font-size: 13px;
    }
    .section-header .price-range {
        font-size: 12px;
        padding: 3px 14px;
        margin-top: 8px;
    }

    .wedding-box {
        padding: 28px 16px;
        margin: 0 8px;
    }
    .wedding-box h3 {
        font-size: 20px;
    }
    .wedding-box p {
        font-size: 14px;
    }
    .wedding-icon {
        width: 60px;
        height: 60px;
    }
    .wedding-icon i {
        font-size: 24px;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 4px;
    }
    .expertise-badge {
        padding: 8px 10px;
        border-radius: 10px;
    }
    .expertise-badge i {
        font-size: 15px;
        min-width: 18px;
    }
    .expertise-badge span {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .menu-grid {
        gap: 8px;
        padding: 0 2px;
    }
    .menu-item-card {
        min-height: 230px;
        max-height: 300px;
        border-radius: 10px;
    }
    .menu-item-image {
        height: 150px;
        padding: 3px;
    }
    .menu-item-content {
        padding: 6px 8px 8px;
        min-height: 60px;
    }
    .menu-item-content h3 {
        font-size: 11px;
    }
    .menu-item-content p {
        font-size: 9px;
        min-height: 16px;
        max-height: 24px;
        -webkit-line-clamp: 2;
    }
    .menu-item-price {
        font-size: 11px;
    }
    .btn-order-whatsapp {
        padding: 2px 8px;
        font-size: 8px;
        min-width: 35px;
    }
    .btn-order-whatsapp i {
        font-size: 8px;
    }
    .menu-tab-btn {
        padding: 4px 8px;
        font-size: 9px;
    }
    .menu-tab-btn i {
        font-size: 9px;
    }
}

/* =============================================================
   REDUCED MOTION (Accessibility)
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
    .page-header h1 span,
    .page-header h1 span::after,
    .section-header h2::after {
        animation: none !important;
    }
    .page-header .page-divider,
    .page-header p {
        animation: none !important;
        opacity: 1 !important;
    }
    .page-header::before {
        animation: none !important;
    }
    .menu-item-card,
    .menu-item-card::before,
    .menu-item-card::after,
    .menu-item-badge,
    .btn-order-whatsapp,
    .expertise-badge,
    .wedding-box,
    .wedding-icon,
    .wedding-icon i {
        animation: none !important;
        transition: none !important;
    }
    .menu-item-card:hover {
        transform: none !important;
    }
    .menu-item-card:hover .menu-item-image img {
        transform: none !important;
    }
    .expertise-badge:hover {
        transform: none !important;
    }
    .wedding-box:hover {
        transform: none !important;
    }
    .wedding-box .btn-primary:hover {
        transform: none !important;
    }
    .menu-tab-btn.active i {
        animation: none !important;
    }
}

/* =============================================================
   FOCUS STATES (Accessibility)
   ============================================================= */

.menu-tab-btn:focus-visible,
.btn-order-whatsapp:focus-visible,
.search-input:focus-visible,
.wedding-box .btn-primary:focus-visible {
    outline: 3px solid var(--cc-gold);
    outline-offset: 4px;
}

/* =============================================================
   DARK MODE SUPPORT
   ============================================================= */

@media (prefers-color-scheme: dark) {
    :root {
        --cc-cream: #2a201b;
        --cc-cream-dark: #1a1512;
        --cc-white: #1e1a17;
        --cc-text: #e8ddd5;
        --cc-muted: #b8a89a;
        --cc-border: rgba(255, 255, 255, 0.08);
        --glass-bg: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.08);
    }

    .page-header {
        background: linear-gradient(135deg, #1a1512 0%, #2a201b 100%);
    }

    .page-header h1 {
        color: #f5ede5;
    }

    .page-header p {
        color: #b8a89a;
    }

    .menu-item-card {
        background: rgba(30, 26, 23, 0.92);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .menu-item-card:hover {
        border-color: var(--cc-gold);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .menu-item-image {
        background: linear-gradient(180deg, #1a1512, #2a201b);
    }

    .menu-item-content {
        background: rgba(30, 26, 23, 0.95);
    }

    .menu-item-content h3 {
        color: #f5ede5;
    }

    .menu-item-content p {
        color: #b8a89a;
    }

    .menu-tabs-section {
        background: rgba(30, 26, 23, 0.92);
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .menu-tab-btn {
        background: linear-gradient(135deg, rgba(30, 26, 23, 0.95) 0%, rgba(20, 17, 15, 0.9) 100%);
        color: #b8a89a;
        border-color: rgba(255, 255, 255, 0.06);
    }

    .menu-tab-btn.active {
        background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
        color: var(--cc-brown-dark);
    }

    .search-input {
        background: #1e1a17;
        color: #f5ede5;
        border-color: rgba(255, 255, 255, 0.08);
    }

    .search-suggestions {
        background: #1e1a17;
        border-color: rgba(255, 255, 255, 0.08);
    }

    .search-suggestion-item {
        color: #f5ede5;
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .search-suggestion-item:hover {
        background: rgba(255, 198, 0, 0.08);
    }

    .wedding-box {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.06);
    }

    .wedding-box h3 {
        color: #f5ede5;
    }

    .wedding-box p {
        color: #b8a89a;
    }

    .section-header h2 {
        color: #f5ede5;
    }

    .section-header .subtitle {
        color: #b8a89a;
    }

    .expertise-badges {
        background: linear-gradient(135deg, #1a1512 0%, #2a201b 100%);
    }
}

/* =============================================================
   MENU ITEM BADGE - COMPLETE RESPONSIVE (ALL BREAKPOINTS)
   ============================================================= */

/* Desktop / Laptop (Default - 1200px & Above) */
.menu-item-badge {
    font-size: 11px;
    padding: 5px 14px;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    position: absolute;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
}

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
    .menu-item-badge {
        font-size: 10px;
        padding: 4px 12px;
        top: 10px;
        right: 10px;
    }
}

/* Tablet / Small Laptop (max-width: 991px) */
@media (max-width: 991px) {
    .menu-item-badge {
        font-size: 12px;
        padding: 3px 10px;
        top: 8px;
        right: 8px;
        letter-spacing: 0.3px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .menu-item-badge {
        font-size: 12px;
        padding: 3px 8px;
        top: 6px;
        right: 6px;
        border-radius: 30px;
        letter-spacing: 0.2px;
        max-width: 85px; /* Text ko card se bahar jaane se rokne ke liye */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .menu-item-badge {
        font-size: 7px;
        padding: 2px 6px;
        top: 5px;
        right: 5px;
        letter-spacing: 0px;
        max-width: 70px;
    }
}

/* Extra Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
    .menu-item-badge {
        font-size: 7px;
        padding: 2px 5px;
        top: 4px;
        right: 4px;
        max-width: 60px;
    }
}

/* Extra Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
    .menu-item-badge {
        font-size: 6px;
        padding: 2px 4px;
        top: 3px;
        right: 3px;
        max-width: 55px;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .menu-item-badge {
        animation: none !important;
        transition: none !important;
    }
}


/* =============================================
   FIX: MOBILE HORIZONTAL SCROLLBAR REMOVE
   ============================================= */

@media (max-width: 767px) {
    .container,
    .menu-content-section,
    .menu-content-wrapper,
    .menu-grid {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    .menu-item-card {
        overflow: hidden !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .menu-item-content {
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .menu-item-content p {
        overflow: hidden !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
    
    .menu-item-content h3 {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }
}

@media (max-width: 575px) {
    .menu-grid {
        overflow-x: hidden !important;
        padding: 0 4px !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .menu-item-card {
        min-height: auto !important;
        max-height: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* =============================================
   WORKSHOP PAGE CSS - CREAM CORNER
   Complete Responsive (Mobile, Tablet, Desktop)
   ============================================= */

/* =============================================
   1. PAGE HEADER
   ============================================= */

.workshop-header {
    padding: 150px 0 36px;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 198, 0, 0.14), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 126, 0, 0.10), transparent 45%),
        var(--cc-brown-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.workshop-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 9s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.workshop-header .page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.16);
    border: 1px solid rgba(255, 198, 0, 0.35);
    color: var(--cc-gold);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.workshop-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.8s ease forwards;
}

.workshop-header h1 span {
    position: relative;
    background: linear-gradient(120deg, #B8860B 0%, #FFE8A3 22%, #FFC600 45%, #FFF6D8 60%, #D99E00 78%, #FFC600 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: foilShift 6s ease-in-out infinite;
}

@keyframes foilShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.workshop-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 10px;
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.page-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.page-divider i {
    color: var(--cc-gold);
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 6px rgba(255, 198, 0, 0.4));
}

@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); }
}

/* =============================================
   2. STATS BANNER
   ============================================= */

.workshop-stats {
    padding: 30px 0;
    background: var(--cc-cream);
    border-bottom: 1px solid rgba(85, 71, 62, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 15px 10px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(47, 36, 31, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(85, 71, 62, 0.06);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(47, 36, 31, 0.10);
    border-color: rgba(255, 198, 0, 0.2);
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cc-orange);
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--cc-muted);
    margin-top: 5px;
    font-weight: 500;
}

/* =============================================
   3. MAIN WORKSHOP SECTION
   ============================================= */

.workshop-main-section {
    padding: 80px 0;
    background: var(--cc-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.section-header h2 span {
    color: var(--cc-orange);
}

.title-border {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
    border-radius: 10px;
    margin: 15px auto;
}

.section-header .subtitle {
    color: var(--cc-muted);
    font-size: 1.1rem;
    margin-top: 5px;
}

/* =============================================
   4. WORKSHOP GRID
   ============================================= */

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* =============================================
   5. WORKSHOP CARD - PREMIUM
   ============================================= */

.workshop-card-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(47, 36, 31, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(85, 71, 62, 0.06);
}

.workshop-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(47, 36, 31, 0.15);
    border-color: rgba(255, 198, 0, 0.3);
}

.workshop-card-premium.featured {
    border: 2px solid var(--cc-gold);
    box-shadow: 0 10px 40px rgba(255, 198, 0, 0.12);
}

.workshop-card-premium.featured:hover {
    box-shadow: 0 20px 60px rgba(255, 198, 0, 0.20);
}

/* =============================================
   6. WORKSHOP BADGE
   ============================================= */

.workshop-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.workshop-badge.featured {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
}

.workshop-badge.premium {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #ffffff;
}

.workshop-badge.kids {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: #ffffff;
}

/* =============================================
   7. WORKSHOP CARD IMAGE
   ============================================= */

.workshop-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    min-height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f0eb;
    display: block;
}

.workshop-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.workshop-card-premium:hover .workshop-card-image img {
    transform: scale(1.05);
}

.workshop-card-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =============================================
   8. WORKSHOP CARD CONTENT
   ============================================= */

.workshop-card-content {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-level {
    margin-bottom: 10px;
}

.level-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-badge.beginner {
    background: #E8F5E9;
    color: #2E7D32;
}

.level-badge.intermediate {
    background: #FFF3E0;
    color: #E65100;
}

.level-badge.beginner-to-advanced {
    background: linear-gradient(135deg, #E8F5E9, #FFF3E0);
    color: #4A3428;
}

.workshop-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cc-brown-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.workshop-desc {
    font-size: 0.9rem;
    color: var(--cc-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 0;
}

/* =============================================
   9. WORKSHOP FEATURES
   ============================================= */

.workshop-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--cc-text);
}

.feature-item i {
    color: var(--cc-gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* =============================================
   10. WORKSHOP SCHEDULE
   ============================================= */

.workshop-schedule {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(85, 71, 62, 0.08);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--cc-muted);
}

.schedule-item i {
    color: var(--cc-orange);
    font-size: 0.9rem;
}

/* =============================================
   11. WORKSHOP FOOTER
   ============================================= */

.workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(85, 71, 62, 0.08);
    margin-top: auto;
}

.workshop-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cc-orange);
    line-height: 1.2;
}

.price-label {
    font-size: 0.7rem;
    color: var(--cc-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workshop-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-whatsapp-enroll {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-enroll:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    color: var(--cc-brown);
    border: 2px solid var(--cc-brown);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--cc-brown);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =============================================
   12. WORKSHOP GALLERY
   ============================================= */

.workshop-gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.workshop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: var(--cc-brown-dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 25, 20, 0.85), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay span {
    padding: 6px 16px;
    background: rgba(255, 198, 0, 0.9);
    border-radius: 999px;
    color: var(--cc-brown-dark);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =============================================
   13. WHY LEARN SECTION
   ============================================= */

.why-learn-section {
    padding: 80px 0;
    background: var(--cc-cream);
}

.why-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.why-learn-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(85, 71, 62, 0.06);
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.05);
    transition: all 0.4s ease;
}

.why-learn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(47, 36, 31, 0.10);
    border-color: rgba(255, 198, 0, 0.2);
}

.why-learn-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.12), rgba(255, 126, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--cc-orange);
    transition: all 0.4s ease;
}

.why-learn-card:hover .why-learn-icon {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: #ffffff;
    transform: scale(1.1);
}

.why-learn-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.why-learn-card p {
    font-size: 0.9rem;
    color: var(--cc-muted);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   14. FAQ SECTION
   ============================================= */

.workshop-faq {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(85, 71, 62, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background: var(--cc-cream);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 198, 0, 0.3);
}

.faq-item.active {
    border-color: var(--cc-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--cc-brown-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--cc-orange);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--cc-gold);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =============================================
   15. WORKSHOP CTA
   ============================================= */

.workshop-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cc-brown-dark) 0%, var(--cc-brown) 100%);
    position: relative;
    overflow: hidden;
}

.workshop-cta::before,
.workshop-cta::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 198, 0, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.workshop-cta::before {
    top: -100px;
    left: -80px;
}

.workshop-cta::after {
    bottom: -100px;
    right: -80px;
}

.workshop-cta .cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workshop-cta .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: var(--cc-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.workshop-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 50px);
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.workshop-cta h2 span {
    color: var(--cc-gold);
}

.workshop-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.workshop-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.workshop-cta .btn-gold-cta {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark) !important;
    border: none !important;
    font-weight: 700;
    border-radius: 999px;
    padding: 14px 30px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 198, 0, 0.3);
}

.workshop-cta .btn-gold-cta:hover {
    background: #ffffff !important;
    color: var(--cc-brown-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.workshop-cta .btn-outline-white {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.workshop-cta .btn-outline-white:hover {
    background: #ffffff !important;
    color: var(--cc-brown-dark) !important;
    transform: translateY(-3px);
}

.workshop-cta .cta-contact {
    font-size: 0.95rem !important;
    margin-top: 20px;
    margin-bottom: 0;
}

.workshop-cta .cta-contact i {
    color: var(--cc-gold);
    margin-right: 5px;
}

.workshop-cta .cta-contact .sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   16. MODAL STYLES
   ============================================= */

.workshop-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.workshop-modal.active {
    display: flex;
}

.workshop-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.workshop-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
    z-index: 1;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.workshop-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--cc-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.workshop-modal-close:hover {
    color: var(--cc-brown-dark);
    transform: rotate(90deg);
}

.workshop-modal-body .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--cc-brown-dark);
    margin-bottom: 20px;
    padding-right: 30px;
}

.workshop-modal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cc-brown-dark);
    margin: 25px 0 10px;
}

.workshop-modal-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--cc-orange);
    margin: 20px 0 8px;
}

.workshop-modal-body p {
    color: var(--cc-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.workshop-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.workshop-modal-body ul li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--cc-text);
    font-size: 0.95rem;
}

.workshop-modal-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--cc-gold);
}

.modal-footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0 10px;
    border-top: 1px solid rgba(85, 71, 62, 0.08);
    margin-top: 20px;
}

.modal-footer-info span {
    font-size: 0.95rem;
    color: var(--cc-text);
}

.modal-footer-info strong {
    color: var(--cc-brown-dark);
}

.modal-enroll-btn {
    margin-top: 25px;
    text-align: center;
}

.modal-enroll-btn .btn-whatsapp-enroll {
    padding: 14px 35px;
    font-size: 1rem;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* =============================================
   LAPTOP (max-width: 1200px)
   ============================================= */

@media (max-width: 1200px) {
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .workshop-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-learn-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* =============================================
   TABLET (max-width: 991px)
   ============================================= */

@media (max-width: 991px) {
    .workshop-header {
        padding: 150px 0 30px;
    }

    .workshop-header h1 {
        font-size: 36px;
    }

    .workshop-stats {
        padding: 20px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .workshop-main-section {
        padding: 60px 0;
    }

    .workshop-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .workshop-card-image {
        height: 200px;
    }

    .workshop-features {
        grid-template-columns: 1fr 1fr;
        gap: 4px 10px;
    }

    .workshop-card-content {
        padding: 18px 18px 20px;
    }

    .workshop-gallery-section {
        padding: 60px 0;
    }

    .workshop-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-learn-section {
        padding: 60px 0;
    }

    .why-learn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .workshop-faq {
        padding: 60px 0;
    }

    .workshop-cta {
        padding: 60px 0;
    }

    .workshop-cta h2 {
        font-size: 36px;
    }

    .workshop-modal-content {
        padding: 30px 25px;
        max-width: 90%;
    }

    .workshop-modal-body .modal-title {
        font-size: 1.5rem;
    }
}

/* =============================================
   MOBILE (max-width: 767px)
   ============================================= */

@media (max-width: 767px) {
    .workshop-header {
        padding: 90px 0 25px;
    }

    .workshop-header h1 {
        font-size: 30px;
    }

    .workshop-header p {
        font-size: 14px;
    }

    .page-divider .line {
        width: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 12px 8px;
    }

    .stat-item .stat-number {
        font-size: 1.8rem;
    }

    .stat-item .stat-label {
        font-size: 0.8rem;
    }

    .workshop-main-section {
        padding: 50px 0;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .workshop-card-image {
        height: 220px;
    }

    .workshop-card-content h3 {
        font-size: 1.2rem;
    }

    .workshop-features {
        grid-template-columns: 1fr 1fr;
        gap: 4px 8px;
    }

    .feature-item {
        font-size: 0.75rem;
    }

    .workshop-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .workshop-buttons {
        justify-content: stretch;
    }

    .workshop-buttons .btn {
        flex: 1;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .workshop-gallery-section {
        padding: 50px 0;
    }

    .workshop-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-learn-section {
        padding: 50px 0;
    }

    .why-learn-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-learn-card {
        padding: 25px 20px;
    }

    .why-learn-card h4 {
        font-size: 1.1rem;
    }

    .workshop-faq {
        padding: 50px 0;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .workshop-cta {
        padding: 50px 0;
    }

    .workshop-cta h2 {
        font-size: 30px;
    }

    .workshop-cta p {
        font-size: 1rem;
    }

    .workshop-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .workshop-cta .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .workshop-cta .cta-contact {
        font-size: 0.85rem !important;
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .workshop-cta .cta-contact .sep {
        display: none;
    }

    .workshop-modal-content {
        padding: 25px 20px;
        max-width: 95%;
        max-height: 95vh;
    }

    .workshop-modal-close {
        top: 12px;
        right: 15px;
        font-size: 1.6rem;
    }

    .workshop-modal-body .modal-title {
        font-size: 1.3rem;
        padding-right: 20px;
    }

    .workshop-modal-body h3 {
        font-size: 1.1rem;
    }

    .workshop-modal-body ul li {
        font-size: 0.9rem;
        padding: 4px 0 4px 24px;
    }

    .modal-footer-info {
        gap: 12px;
        flex-direction: column;
    }

    .modal-enroll-btn .btn-whatsapp-enroll {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   SMALL MOBILE (max-width: 575px)
   ============================================= */

@media (max-width: 575px) {
    .workshop-header {
        padding: 80px 0 20px;
    }

    .workshop-header h1 {
        font-size: 26px;
    }

    .workshop-header .page-header-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 10px 6px;
        border-radius: 12px;
    }

    .stat-item .stat-number {
        font-size: 1.5rem;
    }

    .stat-item .stat-label {
        font-size: 0.7rem;
    }

    .workshop-grid {
        gap: 20px;
        max-width: 100%;
    }

    .workshop-card-image {
        height: 180px;
    }

    .workshop-badge {
        font-size: 0.6rem;
        padding: 4px 12px;
        top: 10px;
        right: 10px;
    }

    .workshop-card-content {
        padding: 15px 16px 18px;
    }

    .workshop-card-content h3 {
        font-size: 1.1rem;
    }

    .workshop-desc {
        font-size: 0.8rem;
    }

    .workshop-features {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .feature-item {
        font-size: 0.7rem;
    }

    .workshop-schedule {
        gap: 8px;
        padding-top: 10px;
    }

    .schedule-item {
        font-size: 0.7rem;
    }

    .price-amount {
        font-size: 1.4rem;
    }

    .workshop-buttons .btn {
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .btn-details {
        padding: 8px 12px;
    }

    .workshop-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item .gallery-overlay span {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .why-learn-card {
        padding: 20px 16px;
    }

    .why-learn-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .workshop-cta h2 {
        font-size: 26px;
    }

    .workshop-cta .cta-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .workshop-modal-content {
        padding: 20px 16px;
    }

    .workshop-modal-body .modal-title {
        font-size: 1.1rem;
    }

    .modal-footer-info span {
        font-size: 0.85rem;
    }
}

/* =============================================
   EXTRA SMALL MOBILE (max-width: 380px)
   ============================================= */

@media (max-width: 380px) {
    .workshop-header h1 {
        font-size: 22px;
    }

    .workshop-header p {
        font-size: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stat-item .stat-number {
        font-size: 1.3rem;
    }

    .stat-item .stat-label {
        font-size: 0.65rem;
    }

    .workshop-card-image {
        height: 160px;
    }

    .workshop-badge {
        font-size: 0.55rem;
        padding: 3px 10px;
    }

    .workshop-card-content h3 {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.2rem;
    }

    .workshop-gallery-grid {
        gap: 8px;
    }

    .workshop-cta h2 {
        font-size: 22px;
    }

    .workshop-cta p {
        font-size: 0.9rem;
    }
}

/* =============================================
   REDUCE MOTION (Accessibility)
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    .workshop-header::before {
        animation: none !important;
    }
    
    .workshop-header h1 {
        animation: none !important;
    }
    
    .workshop-header h1 span {
        animation: none !important;
    }
    
    .workshop-header p,
    .page-divider {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .workshop-card-premium,
    .workshop-card-premium .workshop-card-image img,
    .gallery-item img,
    .why-learn-card,
    .stat-item,
    .btn-whatsapp-enroll,
    .btn-details {
        transition: none !important;
    }
    
    .workshop-card-premium:hover,
    .gallery-item:hover,
    .why-learn-card:hover,
    .stat-item:hover {
        transform: none !important;
    }
    
    .workshop-modal-content {
        animation: none !important;
    }
}

/* =============================================
   FOCUS STATES (Accessibility)
   ============================================= */

.btn-whatsapp-enroll:focus-visible,
.btn-details:focus-visible,
.faq-question:focus-visible,
.workshop-modal-close:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}

/* =============================================
   DARK MODE SUPPORT
   ============================================= */

@media (prefers-color-scheme: dark) {
    .workshop-stats {
        background: #2a201b;
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .stat-item {
        background: #1e1a17;
        border-color: rgba(255, 255, 255, 0.06);
    }

    .workshop-main-section {
        background: #2a201b;
    }

    .workshop-card-premium {
        background: #1e1a17;
        border-color: rgba(255, 255, 255, 0.06);
    }

    .workshop-card-premium:hover {
        border-color: rgba(255, 198, 0, 0.2);
    }

    .workshop-card-content h3 {
        color: #f5ede5;
    }

    .workshop-desc {
        color: #b8a89a;
    }

    .feature-item {
        color: #d1c7c0;
    }

    .why-learn-section {
        background: #2a201b;
    }

    .why-learn-card {
        background: #1e1a17;
        border-color: rgba(255, 255, 255, 0.06);
    }

    .why-learn-card h4 {
        color: #f5ede5;
    }

    .why-learn-card p {
        color: #b8a89a;
    }

    .workshop-gallery-section {
        background: #1a1512;
    }

    .workshop-faq {
        background: #1a1512;
    }

    .faq-item {
        background: #1e1a17;
        border-color: rgba(255, 255, 255, 0.06);
    }

    .faq-question {
        color: #f5ede5;
    }

    .faq-answer p {
        color: #b8a89a;
    }

    .workshop-modal-content {
        background: #1e1a17;
    }

    .workshop-modal-body .modal-title {
        color: #f5ede5;
    }

    .workshop-modal-body p {
        color: #d1c7c0;
    }

    .workshop-modal-body ul li {
        color: #d1c7c0;
    }

    .workshop-modal-body h3 {
        color: #f5ede5;
    }

    .workshop-modal-close {
        color: #b8a89a;
    }

    .workshop-modal-close:hover {
        color: #f5ede5;
    }

    .btn-details {
        color: #d1c7c0;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-details:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #f5ede5;
    }
}

/* =========================================================
   SPECIALIZATION SECTION - CUSTOM CAKE PROMO
   ========================================================= */

.specialization-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cc-cream) 0%, var(--cc-cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.specialization-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.specialization-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.specialization-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left - Icon/Image */

.specialization-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(20px);
}

.specialization-icon-box {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(255, 126, 0, 0.3);
    position: relative;
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.specialization-icon-box i {
    font-size: 4.5rem;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.specialization-icon-box .icon-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cc-brown-dark);
    text-align: center;
    line-height: 1.3;
}

.specialization-icon-box .icon-label small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Decorative rings */
.specialization-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(255, 198, 0, 0.3);
    border-radius: 50%;
    animation: spinRing 20s linear infinite;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.specialization-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 198, 0, 0.15);
    border-radius: 50%;
    animation: spinRingReverse 25s linear infinite;
}

@keyframes spinRingReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Right - Text Content */
.specialization-text {
    padding: 10px 0;
}

.specialization-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.3);
    color: var(--cc-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.specialization-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.specialization-text h2 span {
    color: var(--cc-orange);
}

.specialization-text .highlight-text {
    font-size: 1.1rem;
    color: var(--cc-brown);
    font-weight: 500;
    margin-bottom: 15px;
}

.specialization-text .highlight-text strong {
    color: var(--cc-orange);
}

.specialization-text p {
    color: var(--cc-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features List */
.specialization-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.specialization-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(85, 71, 62, 0.06);
    transition: all 0.3s ease;
}

.specialization-feature:hover {
    background: rgba(255, 198, 0, 0.08);
    border-color: rgba(255, 198, 0, 0.2);
    transform: translateX(5px);
}

.specialization-feature i {
    color: var(--cc-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.specialization-feature span {
    color: var(--cc-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Buttons */
.specialization-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.specialization-cta .btn-gold {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark) !important;
    border: none;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 198, 0, 0.3);
}

.specialization-cta .btn-gold:hover {
    background: var(--cc-brown-dark) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(47, 36, 31, 0.3);
}

.specialization-cta .btn-gold i {
    transition: transform 0.3s ease;
}

.specialization-cta .btn-gold:hover i {
    transform: translateX(4px);
}

.specialization-cta .btn-outline-brown {
    background: transparent;
    border: 2px solid var(--cc-brown);
    color: var(--cc-brown) !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.specialization-cta .btn-outline-brown:hover {
    background: var(--cc-brown);
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE - SPECIALIZATION
   ========================================================= */

@media (max-width: 991px) {
    .specialization-section {
        padding: 60px 0;
    }
    
    .specialization-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .specialization-icon-box {
        width: 220px;
        height: 220px;
    }
    
    .specialization-icon-box i {
        font-size: 3.5rem;
    }
    
    .specialization-icon-wrapper::before {
        width: 260px;
        height: 260px;
    }
    
    .specialization-icon-wrapper::after {
        width: 290px;
        height: 290px;
    }
    
    .specialization-text {
        text-align: center;
    }
    
    .specialization-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .specialization-features {
        justify-content: center;
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .specialization-cta {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .specialization-section {
        padding: 50px 0;
    }
    
    .specialization-icon-box {
        width: 180px;
        height: 180px;
    }
    
    .specialization-icon-box i {
        font-size: 2.8rem;
    }
    
    .specialization-icon-box .icon-label {
        font-size: 1rem;
    }
    
    .specialization-icon-wrapper::before {
        width: 220px;
        height: 220px;
    }
    
    .specialization-icon-wrapper::after {
        width: 250px;
        height: 250px;
    }
    
    .specialization-text h2 {
        font-size: 32px;
    }
    
    .specialization-features {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100%;
    }
    
    .specialization-feature {
        padding: 8px 12px;
    }
    
    .specialization-feature span {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .specialization-section {
        padding: 40px 0;
    }
    
    .specialization-icon-box {
        width: 150px;
        height: 150px;
    }
    
    .specialization-icon-box i {
        font-size: 2.2rem;
    }
    
    .specialization-icon-box .icon-label {
        font-size: 0.85rem;
    }
    
    .specialization-icon-wrapper::before {
        width: 190px;
        height: 190px;
    }
    
    .specialization-icon-wrapper::after {
        width: 220px;
        height: 220px;
    }
    
    .specialization-text h2 {
        font-size: 28px;
    }
    
    .specialization-text .highlight-text {
        font-size: 1rem;
    }
    
    .specialization-text p {
        font-size: 0.95rem;
    }
    
    .specialization-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .specialization-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .specialization-icon-box {
        width: 130px;
        height: 130px;
    }
    
    .specialization-icon-box i {
        font-size: 1.8rem;
    }
    
    .specialization-icon-box .icon-label {
        font-size: 0.75rem;
    }
    
    .specialization-icon-wrapper::before {
        width: 170px;
        height: 170px;
    }
    
    .specialization-icon-wrapper::after {
        width: 200px;
        height: 200px;
    }
    
    .specialization-text h2 {
        font-size: 24px;
    }
}



/* =============================================
   FIX: Custom gold scrollbar hata kar normal/touch-friendly banao
   ============================================= */

/* Poore page ka scroll smooth aur native rakho */
html, body {
    -webkit-overflow-scrolling: touch;
}

/* Mobile pe custom gold scrollbar band karo taaki touch scroll na atke */
@media (max-width: 991px) {
    ::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
    }
    html, body {
        scrollbar-width: none !important;   /* Firefox */
        -ms-overflow-style: none !important; /* old Edge/IE */
    }
}