/*
 Theme Name:   Ticketbox Child
 Theme URI:    http://yipengchiangmailanternfestival.com
 Description:  Luxury Lantern Festival — dark gold theme สำหรับระบบจองแพ็คเกจ Yi Peng
 Author:       Yipeng
 Template:     ticketbox
 Version:      2.0.0
*/

/* ==========================================================================
   CSS VARIABLES — Lantern Festival Luxury Palette
   ========================================================================== */

:root {
    /* Core colors */
    --yp-black:          #090806;
    --yp-dark:           #0f0d06;
    --yp-card:           #1a160a;
    --yp-card-2:         #231c0d;

    /* Gold scale */
    --yp-gold:           #c9a84c;
    --yp-gold-light:     #e8c96e;
    --yp-gold-bright:    #f0d060;
    --yp-gold-pale:      rgba(201, 168, 76, 0.12);

    /* Warm accents */
    --yp-orange:         #e07820;
    --yp-amber:          #f5c030;
    --yp-ember:          #c84b10;

    /* Text */
    --yp-cream:          #f5e6c8;
    --yp-cream-muted:    rgba(245, 230, 200, 0.62);
    --yp-cream-subtle:   rgba(245, 230, 200, 0.35);

    /* Borders */
    --yp-border:         rgba(201, 168, 76, 0.18);
    --yp-border-hover:   rgba(201, 168, 76, 0.45);

    /* Gradients */
    --yp-gradient:       linear-gradient(135deg, #c9a84c 0%, #f0d060 100%);
    --yp-gradient-warm:  linear-gradient(135deg, #e07820 0%, #c9a84c 55%, #f0d060 100%);
    --yp-gradient-dark:  linear-gradient(135deg, #1a160a 0%, #231c0d 100%);

    /* Shadows */
    --yp-shadow-gold:    0 8px 28px rgba(201, 168, 76, 0.20);
    --yp-shadow-glow:    0 0 40px rgba(201, 168, 76, 0.10);
    --yp-shadow-dark:    0 8px 32px rgba(0, 0, 0, 0.55);

    /* Layout */
    --yp-radius:         12px;
    --yp-radius-sm:      8px;
    --yp-radius-xs:      5px;
    --yp-container:      1200px;
    --yp-transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   GLOBAL RESET & BODY
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
.woocommerce,
.woocommerce-page {
    font-family: 'Sarabun', 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--yp-black) !important;
    color: var(--yp-cream);
    font-size: 15px;
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', 'Sarabun', sans-serif;
    font-weight: 600;
    color: var(--yp-gold-light);
    line-height: 1.3;
}

p {
    color: var(--yp-cream-muted);
}

a {
    color: var(--yp-gold);
    transition: var(--yp-transition);
}

a:hover {
    color: var(--yp-gold-bright);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Page-level background — override all white containers from parent theme */
#dawnthemes-page,
#dawnthemes-page .main-container,
#body-wrap,
#wrap,
#page,
.site,
#content,
.main-content,
.content-container,
.site-content {
    background-color: var(--yp-black) !important;
}

/* ==========================================================================
   CONTAINER — 1200px max width
   ========================================================================== */

.container,
.dt-container,
.wpb_wrapper > .container {
    max-width: var(--yp-container) !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ── Front page: remove #main top/bottom padding (hero handles its own spacing) ── */
.home #main.site-main,
.home #main.wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ── Fix stacking context: parent theme sets #main { z-index:1 } which covers
   position:fixed header elements (cart icon, sticky nav). Reset it to auto
   so fixed elements naturally float above page content. ── */
#main.site-main,
#main.wrapper {
    z-index: auto !important;
}

#masthead,
.site-header {
    position: relative;
    z-index: 10 !important;
}

#dt-sticky-navigation-holder {
    z-index: 9999 !important;
}

/* WPBakery inner containers */
.vc_column-inner > .wpb_wrapper {
    max-width: 100%;
}

/* ==========================================================================
   FADE ANIMATIONS — Simple & elegant
   ========================================================================== */

@keyframes yp-fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes yp-fadeInSlow {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes yp-goldPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.15); }
    50%       { box-shadow: 0 0 40px rgba(201, 168, 76, 0.30); }
}

/* Override WPBakery animations → simple fade */
.wpb_animate_when_almost_visible,
.wpb_start_animation.animated {
    animation-name: yp-fadeIn !important;
    animation-duration: 0.7s !important;
    animation-timing-function: ease !important;
    animation-fill-mode: both !important;
}

/* Stagger WPBakery animated elements */
.wpb_column.wpb_animate_when_almost_visible:nth-child(1) { animation-delay: 0.0s !important; }
.wpb_column.wpb_animate_when_almost_visible:nth-child(2) { animation-delay: 0.1s !important; }
.wpb_column.wpb_animate_when_almost_visible:nth-child(3) { animation-delay: 0.2s !important; }
.wpb_column.wpb_animate_when_almost_visible:nth-child(4) { animation-delay: 0.3s !important; }

/* ==========================================================================
   HEADER — Dark glass with gold accents
   ========================================================================== */

#masthead,
.site-header {
    background: rgba(9, 8, 6, 0.97) !important;
    border-bottom: 1px solid var(--yp-border) !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Top info bar */
.site-header-info {
    background: #050401 !important;
    border-bottom: 1px solid var(--yp-border) !important;
    padding: 6px 0;
}

.site-header-info .site-info-content li,
.site-header-info .site-info-content li a,
.site-header-info .site-info-content li span {
    color: var(--yp-cream-muted) !important;
    font-size: 13px;
}

.site-header-info .fa {
    color: var(--yp-gold) !important;
    margin-right: 5px;
}

.site-header-top.top-header {
    background: transparent !important;
    padding: 12px 0;
}

/* Primary navigation */
#primary-navigation .nav-menu > li > a {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--yp-cream) !important;
    padding: 10px 16px;
    border-radius: var(--yp-radius-sm);
    transition: var(--yp-transition);
    letter-spacing: 0.3px;
}

#primary-navigation .nav-menu > li > a:hover,
#primary-navigation .nav-menu > li.current-menu-item > a,
#primary-navigation .nav-menu > li.current-menu-ancestor > a {
    color: var(--yp-gold) !important;
    background: var(--yp-gold-pale) !important;
}

/* Dropdown menu */
#primary-navigation .nav-menu .sub-menu,
.nav-menu .children {
    background: #0f0d06 !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius-sm) !important;
    box-shadow: var(--yp-shadow-dark) !important;
}

#primary-navigation .nav-menu .sub-menu li a,
.nav-menu .children li a {
    color: var(--yp-cream-muted) !important;
    font-size: 14px;
    padding: 10px 18px !important;
    border-bottom: 1px solid rgba(201,168,76,0.06) !important;
}

#primary-navigation .nav-menu .sub-menu li:last-child a,
.nav-menu .children li:last-child a {
    border-bottom: none !important;
}

#primary-navigation .nav-menu .sub-menu li a:hover,
.nav-menu .children li a:hover {
    color: var(--yp-gold) !important;
    background: var(--yp-gold-pale) !important;
}

/* Sticky navigation */
#dt-sticky-navigation-holder .sticky-header-content {
    background: rgba(9, 8, 6, 0.98) !important;
    border-bottom: 1px solid var(--yp-border) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(12px);
}

/* Cart icon visible — shows item count in header */

/* Mini cart dropdown — dark theme */
#ticketbox-header-minicart.header-minicart .widget_shopping_cart,
#ticketbox-header-minicart.header-minicart .widget_shopping_cart .widget_shopping_cart_content {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border) !important;
    border-top: 2px solid var(--yp-gold) !important;
}

#ticketbox-header-minicart.header-minicart .widget_shopping_cart .cart_list .mini_cart_item {
    border-bottom: 1px solid var(--yp-border) !important;
}

#ticketbox-header-minicart.header-minicart .widget_shopping_cart .cart_list .mini_cart_item a,
#ticketbox-header-minicart.header-minicart .widget_shopping_cart .cart_list .mini_cart_item span {
    color: var(--yp-cream-muted) !important;
}

#ticketbox-header-minicart.header-minicart .widget_shopping_cart .cart_list .mini_cart_item a:hover {
    color: var(--yp-gold) !important;
}

#ticketbox-header-minicart.header-minicart .widget_shopping_cart .widget_shopping_cart_content .buttons {
    background: var(--yp-card-2) !important;
    border-top: 1px solid var(--yp-border) !important;
}

#ticketbox-header-minicart.header-minicart .widget_shopping_cart .widget_shopping_cart_content .buttons .button {
    background: var(--yp-gold) !important;
    color: var(--yp-black) !important;
    border: none !important;
    font-family: 'Prompt', sans-serif !important;
    font-weight: 600 !important;
}

#ticketbox-header-minicart.header-minicart .widget_shopping_cart .widget_shopping_cart_content .buttons .button:hover {
    background: var(--yp-gold-light) !important;
}

/* ==========================================================================
   WPBAKERY ROW OVERRIDES
   ========================================================================== */

/* Default row background */
.vc_row,
.vc_row-fluid {
    background-color: var(--yp-black);
    position: relative;
}

/* Full-width rows (slider, hero sections) */
.vc_row[data-vc-full-width="true"],
.vc_row.vc_row-no-padding,
.vc_section[data-vc-full-width="true"] {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    left: auto !important;
}

/* Alternate section bg */
.vc_row.vc_row-has-fill.yp-section-dark {
    background-color: var(--yp-dark) !important;
}

.vc_row.vc_row-has-fill.yp-section-card {
    background-color: var(--yp-card) !important;
}

/* WPBakery text color overrides */
.wpb_content_element p,
.wpb_text_column p {
    color: var(--yp-cream-muted);
}

.wpb_content_element h1,
.wpb_content_element h2,
.wpb_content_element h3,
.wpb_content_element h4,
.vc_custom_heading,
.wpb_heading {
    color: var(--yp-gold-light) !important;
}

/* WPBakery separator */
.vc_separator .vc_sep_holder .vc_sep_line {
    border-color: var(--yp-border) !important;
}

/* WPBakery icon boxes */
.vc_icon_element-icon {
    color: var(--yp-gold) !important;
}

/* WPBakery single image */
.wpb_single_image img {
    border-radius: var(--yp-radius);
}

/* WPBakery button */
.vc_btn3.vc_btn3-color-juicy-pink,
.vc_btn3.vc_btn3-color-orange,
.vc_btn3 {
    background: var(--yp-gradient) !important;
    color: #0a0800 !important;
    border: none !important;
    border-radius: var(--yp-radius-sm) !important;
    font-family: 'Prompt', sans-serif !important;
    font-weight: 700 !important;
    transition: var(--yp-transition) !important;
    box-shadow: 0 4px 16px rgba(201,168,76,0.30) !important;
}

.vc_btn3:hover {
    background: linear-gradient(135deg, #f0d060, #c9a84c) !important;
    box-shadow: 0 6px 22px rgba(201,168,76,0.50) !important;
    transform: translateY(-2px);
}

/* WPBakery progress bar */
.vc_progress_bar .vc_bar {
    background: var(--yp-gradient) !important;
}

/* ==========================================================================
   SHOP PAGE — Luxury dark product cards
   ========================================================================== */

/* Toolbar */
.shop-loop-toolbar {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border);
    border-radius: var(--yp-radius);
    padding: 12px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce-result-count {
    color: var(--yp-cream-muted) !important;
    font-size: 14px;
    margin: 0 !important;
}

.woocommerce-ordering select {
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius-sm) !important;
    padding: 6px 14px !important;
    font-family: 'Sarabun', sans-serif;
    font-size: 14px;
    color: var(--yp-cream) !important;
    background-color: var(--yp-card) !important;
    cursor: pointer;
    transition: var(--yp-transition);
}

.woocommerce-ordering select:focus {
    border-color: var(--yp-gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
    outline: none !important;
}

/* Product grid layout */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
}

/* Product card */
.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius) !important;
    overflow: hidden;
    transition: var(--yp-transition) !important;
    position: relative;
    animation: yp-fadeIn 0.6s ease both;
}

.woocommerce ul.products li.product:nth-child(1) { animation-delay: 0.05s; }
.woocommerce ul.products li.product:nth-child(2) { animation-delay: 0.12s; }
.woocommerce ul.products li.product:nth-child(3) { animation-delay: 0.19s; }
.woocommerce ul.products li.product:nth-child(4) { animation-delay: 0.26s; }

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    border-color: var(--yp-gold) !important;
    box-shadow: var(--yp-shadow-gold), var(--yp-shadow-glow) !important;
}

/* Override parent theme woocommerce.css white card background */
.woocommerce ul.products li.product .product-content-wrapper {
    background: var(--yp-card) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 16px 20px 20px !important;
}

/* Product image */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    display: block;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Warm overlay on hover */
.woocommerce ul.products li.product a.woocommerce-loop-product__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(9, 6, 2, 0.72) 100%
    );
    opacity: 0;
    transition: var(--yp-transition);
}

.woocommerce ul.products li.product:hover a.woocommerce-loop-product__link::after {
    opacity: 1;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
    background: var(--yp-gradient-warm) !important;
    color: white !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    min-width: auto !important;
    min-height: auto !important;
    line-height: 1.5 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(224,120,32,0.50);
    z-index: 2;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-family: 'Prompt', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--yp-cream) !important;
    padding: 16px 18px 6px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
    background: transparent !important;
}

/* Stars */
.woocommerce ul.products li.product .star-rating {
    padding: 2px 18px 6px !important;
    margin: 0 !important;
    float: none !important;
}

.woocommerce ul.products li.product .star-rating::before,
.woocommerce ul.products li.product .star-rating span::before {
    color: var(--yp-amber) !important;
    font-size: 12px;
}

/* Price */
.woocommerce ul.products li.product .price {
    padding: 0 18px 8px !important;
    margin: 0 !important;
    display: block !important;
    color: var(--yp-gold-light) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    font-family: 'Prompt', sans-serif;
    background: transparent !important;
}

.woocommerce ul.products li.product .price del {
    color: var(--yp-cream-subtle) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    color: var(--yp-orange) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* Book now button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .add_to_cart_button {
    display: block !important;
    width: calc(100% - 36px) !important;
    margin: 8px 18px 18px !important;
    padding: 11px 20px !important;
    background: var(--yp-gradient) !important;
    color: #0a0800 !important;
    border: none !important;
    border-radius: var(--yp-radius-sm) !important;
    font-family: 'Prompt', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-transform: none !important;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--yp-transition) !important;
    box-shadow: 0 4px 16px rgba(201,168,76,0.28) !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: linear-gradient(135deg, #f0d060, #c9a84c) !important;
    box-shadow: 0 6px 22px rgba(201,168,76,0.50) !important;
    transform: translateY(-1px);
    opacity: 1 !important;
    color: #0a0800 !important;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */

.single-product div.product {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border);
    border-radius: var(--yp-radius);
    padding: 30px;
    box-shadow: var(--yp-shadow-dark);
}

.single-product div.product .woocommerce-product-gallery {
    border-radius: var(--yp-radius);
    overflow: hidden;
}

.single-product div.product .woocommerce-product-gallery img {
    border-radius: var(--yp-radius);
}

.single-product div.product .product_title {
    font-family: 'Prompt', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--yp-gold-light) !important;
    line-height: 1.3;
    margin-bottom: 12px !important;
}

/* Product price — luxe gold block */
.single-product div.product p.price,
.single-product div.product span.price {
    color: var(--yp-gold-light) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: 'Prompt', sans-serif;
    padding: 10px 16px;
    background: var(--yp-gold-pale);
    border-radius: var(--yp-radius-sm);
    border-left: 3px solid var(--yp-gold);
    margin-bottom: 20px !important;
    display: block;
    line-height: 1.5;
}

.single-product div.product p.price del,
.single-product div.product span.price del {
    font-size: 14px !important;
    color: var(--yp-cream-subtle) !important;
}

.single-product div.product p.price ins,
.single-product div.product span.price ins {
    text-decoration: none !important;
    color: var(--yp-orange) !important;
    font-size: 18px !important;
}

/* Short description */
.woocommerce-product-details__short-description {
    color: var(--yp-cream-muted) !important;
    font-size: 15px;
    line-height: 1.8;
    padding: 16px 0;
    border-top: 1px solid var(--yp-border);
    border-bottom: 1px solid var(--yp-border);
    margin-bottom: 20px !important;
}

/* Book now — single product */
.single-product div.product .single_add_to_cart_button,
.single-product .cart .button {
    background: var(--yp-gradient) !important;
    color: #0a0800 !important;
    border: none !important;
    border-radius: var(--yp-radius-sm) !important;
    font-family: 'Prompt', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px 36px !important;
    transition: var(--yp-transition) !important;
    box-shadow: 0 6px 22px rgba(201,168,76,0.35) !important;
    letter-spacing: 0.3px;
    text-transform: none !important;
}

.single-product div.product .single_add_to_cart_button:hover,
.single-product .cart .button:hover {
    background: linear-gradient(135deg, #f0d060, #c9a84c) !important;
    box-shadow: 0 8px 28px rgba(201,168,76,0.55) !important;
    transform: translateY(-2px);
    opacity: 1 !important;
    color: #0a0800 !important;
}

/* Quantity — single border on wrapper only, input has no border */
.woocommerce .quantity {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius-sm) !important;
}

.woocommerce .quantity .qty-box-action .qty-increase i,
.woocommerce .quantity .qty-box-action .qty-decrease i {
    color: var(--yp-cream-muted) !important;
}

.woocommerce .quantity .qty {
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 14px;
    font-size: 16px;
    font-family: 'Sarabun', sans-serif;
    color: var(--yp-cream) !important;
    background: transparent !important;
    width: 80px;
    text-align: center;
    transition: var(--yp-transition);
    box-shadow: none !important;
}

.woocommerce .quantity .qty:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid var(--yp-border) !important;
    padding: 0;
    margin-bottom: 24px;
    background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    margin-right: 4px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: 'Prompt', sans-serif !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    color: var(--yp-cream-muted) !important;
    padding: 10px 20px !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -1px;
    transition: var(--yp-transition) !important;
    background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--yp-gold) !important;
    border-bottom-color: var(--yp-gold) !important;
    background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 0 !important;
    border: none !important;
    color: var(--yp-cream-muted);
    background: transparent !important;
}

/* Related products */
.related.products > h2,
.upsells.products > h2 {
    color: var(--yp-gold-light) !important;
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--yp-border);
}

/* ==========================================================================
   CHECKOUT — No cart, direct booking flow
   ========================================================================== */

/* Hide cart-related elements */
.woocommerce-cart .cart-collaterals .cross-sells,
.woocommerce-cart .wc-proceed-to-checkout .wc-forward,
.added_to_cart.wc-forward {
    /* Cart page is bypassed — redirect handled in functions.php */
}

/* Checkout page */
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border);
    border-radius: var(--yp-radius);
    padding: 28px;
    box-shadow: var(--yp-shadow-dark);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: 'Prompt', sans-serif;
    font-size: 20px;
    color: var(--yp-gold-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--yp-border);
}

/* Form fields — dark luxury inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius-sm) !important;
    padding: 10px 14px !important;
    font-family: 'Sarabun', sans-serif !important;
    font-size: 15px !important;
    color: var(--yp-cream) !important;
    background: #1a1409 !important;
    transition: var(--yp-transition) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--yp-gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
    outline: none !important;
    background: #1e190c !important;
}

.woocommerce form .form-row label {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--yp-cream-muted);
    margin-bottom: 5px;
}

/* Payment section */
.woocommerce #payment {
    background: var(--yp-card-2) !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius) !important;
}

.woocommerce #payment ul.payment_methods {
    border-bottom: 1px solid var(--yp-border) !important;
}

.woocommerce #payment ul.payment_methods li {
    background: transparent !important;
}

.woocommerce #payment ul.payment_methods li label {
    color: var(--yp-cream) !important;
}

.woocommerce #payment .payment_box {
    background: rgba(201,168,76,0.05) !important;
    color: var(--yp-cream-muted) !important;
}

/* Place order button */
#place_order,
.woocommerce #payment #place_order {
    background: var(--yp-gradient) !important;
    color: #0a0800 !important;
    border: none !important;
    border-radius: var(--yp-radius-sm) !important;
    font-family: 'Prompt', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 16px 40px !important;
    width: 100% !important;
    cursor: pointer;
    transition: var(--yp-transition) !important;
    box-shadow: 0 6px 22px rgba(201,168,76,0.35) !important;
    letter-spacing: 0.5px;
    text-transform: none !important;
}

#place_order:hover,
.woocommerce #payment #place_order:hover {
    background: linear-gradient(135deg, #f0d060, #c9a84c) !important;
    box-shadow: 0 8px 30px rgba(201,168,76,0.55) !important;
    transform: translateY(-2px);
    opacity: 1 !important;
    color: #0a0800 !important;
}

/* ==========================================================================
   GENERAL WOOCOMMERCE BUTTONS
   ========================================================================== */

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--yp-gradient) !important;
    color: #0a0800 !important;
    border: none !important;
    border-radius: var(--yp-radius-sm) !important;
    font-family: 'Prompt', sans-serif !important;
    font-weight: 700 !important;
    transition: var(--yp-transition) !important;
    text-transform: none !important;
    box-shadow: 0 4px 14px rgba(201,168,76,0.25) !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(135deg, #f0d060, #c9a84c) !important;
    opacity: 1 !important;
    transform: translateY(-1px);
    color: #0a0800 !important;
}

/* ==========================================================================
   ORDER TABLE
   ========================================================================== */

/* ── Global WooCommerce table border reset ── */
.woocommerce table.shop_table,
.woocommerce table.cart,
.woocommerce-checkout-review-order-table,
.woocommerce table {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius) !important;
    overflow: hidden;
}

.woocommerce table.cart thead tr,
.woocommerce table.shop_table thead tr {
    background: var(--yp-card-2) !important;
}

.woocommerce table.cart thead tr > th,
.woocommerce table.cart th,
.woocommerce table.cart td,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce td,
.woocommerce th {
    border-color: var(--yp-border) !important;
    border-top-color: var(--yp-border) !important;
    border-bottom-color: var(--yp-border) !important;
    border-left-color: var(--yp-border) !important;
    border-right-color: var(--yp-border) !important;
    color: var(--yp-cream-muted) !important;
    background: transparent !important;
}

.woocommerce table.shop_table {
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius) !important;
    overflow: hidden;
    background: var(--yp-card) !important;
}

.woocommerce table.shop_table thead tr th {
    background: var(--yp-card-2) !important;
    color: var(--yp-gold-light) !important;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 18px !important;
    border: none !important;
    border-bottom: 1px solid var(--yp-border) !important;
}

.woocommerce table.shop_table tbody tr td {
    padding: 16px 18px !important;
    border-bottom: 1px solid var(--yp-border) !important;
    vertical-align: middle;
    color: var(--yp-cream-muted);
    background: transparent !important;
}

.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none !important;
}

.woocommerce table.shop_table tfoot tr td,
.woocommerce table.shop_table tfoot tr th {
    background: var(--yp-card-2) !important;
    color: var(--yp-cream-muted);
    border-top: 1px solid var(--yp-border) !important;
    border-bottom: none !important;
    padding: 12px 18px !important;
}

.woocommerce table.shop_table tfoot tr.order-total td strong,
.woocommerce table.shop_table tfoot tr.order-total th {
    color: var(--yp-gold-light) !important;
    font-size: 18px;
    font-weight: 700;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.woocommerce .woocommerce-breadcrumb,
.dt-breadcrumb-wrap {
    background: #0a0804 !important;
    border-bottom: 1px solid var(--yp-border);
    padding: 14px 0 !important;
    color: var(--yp-cream-muted) !important;
    font-size: 13px;
    margin: 0 0 28px !important;
}

.woocommerce .woocommerce-breadcrumb a,
.dt-breadcrumb-wrap a {
    color: var(--yp-gold) !important;
    text-decoration: none;
    transition: var(--yp-transition);
}

.woocommerce .woocommerce-breadcrumb a:hover,
.dt-breadcrumb-wrap a:hover {
    color: var(--yp-gold-bright) !important;
}

/* ==========================================================================
   SIDEBAR WIDGETS
   ========================================================================== */

.widget {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius);
    padding: 22px;
    margin-bottom: 24px !important;
    box-shadow: none;
}

.widget .widget-title,
.widget h3.widget-title {
    font-family: 'Prompt', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--yp-gold-light) !important;
    margin-bottom: 16px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid var(--yp-border) !important;
    position: relative;
}

.widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 36px;
    height: 1px;
    background: var(--yp-gold);
}

.widget ul li a {
    color: var(--yp-cream-muted) !important;
    font-size: 14px;
    transition: var(--yp-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.widget ul li a:hover {
    color: var(--yp-gold) !important;
    padding-left: 6px;
}

/* Price filter widget */
.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle {
    background: var(--yp-gold) !important;
    border-color: var(--yp-gold) !important;
}

.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-range {
    background: var(--yp-gradient) !important;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.woocommerce-pagination ul.page-numbers,
.woocommerce nav.woocommerce-pagination ul {
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
    list-style: none !important;
    padding: 30px 0 10px !important;
    margin: 0 !important;
    flex-wrap: wrap;
}

.woocommerce-pagination ul.page-numbers li,
.woocommerce nav.woocommerce-pagination ul li {
    display: inline-block !important;
    margin: 0 !important;
}

.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--yp-radius-sm) !important;
    border: 1px solid var(--yp-border) !important;
    color: var(--yp-cream-muted) !important;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: var(--yp-transition);
    text-decoration: none;
    background: var(--yp-card) !important;
}

.woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--yp-gold) !important;
    border-color: var(--yp-gold) !important;
    color: #0a0800 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(201,168,76,0.30);
}

.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--yp-gradient) !important;
    border-color: var(--yp-gold) !important;
    color: #0a0800 !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(201,168,76,0.30);
}

/* ==========================================================================
   WC NOTICES
   ========================================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: var(--yp-radius-sm) !important;
    border-top: none !important;
    border-left: 4px solid var(--yp-gold) !important;
    padding: 14px 20px !important;
    font-family: 'Sarabun', sans-serif;
    font-size: 15px;
    background: var(--yp-gold-pale) !important;
    color: var(--yp-cream) !important;
    margin-bottom: 20px !important;
}

.woocommerce-message {
    border-left-color: #4caf50 !important;
    background: rgba(76,175,80,0.07) !important;
}

.woocommerce-error {
    border-left-color: #ef5350 !important;
    background: rgba(239,83,80,0.07) !important;
}

.woocommerce-message::before { color: #4caf50 !important; }
.woocommerce-info::before    { color: var(--yp-gold) !important; }

/* ==========================================================================
   FOOTER — Deep dark with gold accents
   ========================================================================== */

#footer.site-footer {
    background: #050401 !important;
    border-top: 1px solid var(--yp-border);
    color: var(--yp-cream-muted);
    margin-top: 60px;
}

#footer .footer-widget-area {
    padding: 55px 0 35px;
}

#footer .widget-title,
#footer h3.widget-title {
    color: var(--yp-gold-light) !important;
    border-bottom-color: var(--yp-border) !important;
    font-family: 'Prompt', sans-serif !important;
    font-size: 17px;
}

#footer .widget-title::after {
    background: var(--yp-gold) !important;
}

#footer .widget,
#footer aside.widget {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
}

#footer .widget p {
    color: var(--yp-cream-muted);
    font-size: 14px;
    line-height: 1.8;
}

#footer .widget ul li a {
    color: var(--yp-cream-muted) !important;
    font-size: 14px;
}

#footer .widget ul li a:hover {
    color: var(--yp-gold) !important;
}

/* Footer social icons */
#footer .social-profiles a,
#footer .widget .social-links a {
    color: var(--yp-cream-muted) !important;
    border: 1px solid var(--yp-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--yp-transition);
    font-size: 14px;
    margin-right: 6px;
}

#footer .social-profiles a:hover,
#footer .widget .social-links a:hover {
    color: #0a0800 !important;
    background: var(--yp-gold);
    border-color: var(--yp-gold);
}

/* Copyright bar */
.footer-copyright,
.footer-copyright-area,
#footer .footer-copyright {
    background: rgba(0, 0, 0, 0.40) !important;
    border-top: 1px solid rgba(201,168,76,0.10);
    padding: 16px 0;
    text-align: center;
    color: var(--yp-cream-subtle);
    font-size: 13px;
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */

#scroll-to-top.back-to-top {
    background: var(--yp-gradient) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(201,168,76,0.40) !important;
    transition: var(--yp-transition) !important;
    bottom: 28px !important;
    right: 28px !important;
}

#scroll-to-top.back-to-top:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 26px rgba(201,168,76,0.60) !important;
}

#scroll-to-top.back-to-top .fa {
    color: #0a0800 !important;
    font-size: 16px !important;
}

/* ==========================================================================
   PAGE HEADING — Dark gold (override white default)
   ========================================================================== */

.page-heading {
    background-color: #0d0b05 !important;
    background-image: url('/wp-content/uploads/CHIANG-MAI-CAD-KHOMLOY-SKY-LANTERN-2025-1.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-top: 1px solid var(--yp-border) !important;
    border-bottom: 1px solid var(--yp-border) !important;
    min-height: 280px !important;
    padding: 0 !important;
    position: relative;
}

/* Dark overlay on top of the bg image */
.page-heading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9, 8, 6, 0.38) 0%,
        rgba(9, 8, 6, 0.55) 100%
    );
    z-index: 0;
}

/* Keep content above overlay */
.page-heading .container {
    position: relative;
    z-index: 1;
}

/* Gold left-glow accent line */
.page-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yp-gold), transparent);
    opacity: 0.4;
}

/* Page title inside heading */
.page-heading .breadcrumbs-title {
    font-family: 'Prompt', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--yp-gold-light) !important;
    margin: 0 !important;
    line-height: 1.3;
}

/* Keep content above overlay */
.page-heading .container {
    position: relative;
    z-index: 1;
}

.page-heading .breadcrumbs a {
    color: var(--yp-gold) !important;
    text-decoration: none;
    transition: var(--yp-transition);
}

.page-heading .breadcrumbs a:hover {
    color: var(--yp-gold-bright) !important;
}

.page-heading .breadcrumbs .delimiter,
.page-heading .breadcrumbs .fa-angle-right {
    color: var(--yp-border-hover) !important;
    margin: 0 6px;
    font-size: 11px;
}

.page-heading .breadcrumbs .current {
    color: var(--yp-cream-muted) !important;
}

/* Home icon */
.page-heading .breadcrumbs .fa-home {
    color: var(--yp-gold) !important;
    font-size: 14px;
}

/* ==========================================================================
   GTRANSLATE — Dark dropdown with flags (dwf widget style)
   The plugin injects its own <style> tag — override with !important
   ========================================================================== */

/* ── Outer wrapper ── */
.gtranslate_wrapper,
.gt_switcher_wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ── The switcher button (shows current language) ── */
.gtranslate_wrapper .gt_switcher,
[class*="gt_container"] .gt_switcher {
    overflow: visible !important;
}

.gtranslate_wrapper .gt_switcher .gt_selected,
[class*="gt_container"] .gt_switcher .gt_selected {
    background: var(--yp-card) !important;
    border-radius: var(--yp-radius-sm) !important;
}

.gtranslate_wrapper .gt_switcher .gt_selected a,
[class*="gt_container"] .gt_switcher .gt_selected a {
    background: var(--yp-card) !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius-sm) !important;
    color: var(--yp-cream-muted) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.gtranslate_wrapper .gt_switcher .gt_selected a:hover,
[class*="gt_container"] .gt_switcher .gt_selected a:hover {
    background: var(--yp-gold-pale) !important;
    color: var(--yp-gold) !important;
}

/* ── The dropdown options panel ── */
.gtranslate_wrapper .gt_switcher .gt_option,
[class*="gt_container"] .gt_switcher .gt_option {
    background-color: var(--yp-card) !important;
    border-left: 1px solid var(--yp-border) !important;
    border-right: 1px solid var(--yp-border) !important;
    border-bottom: 1px solid var(--yp-border) !important;
    border-top: 1px solid var(--yp-border) !important;
    border-radius: 0 0 var(--yp-radius-sm) var(--yp-radius-sm) !important;
}

.gtranslate_wrapper .gt_switcher .gt_option a,
[class*="gt_container"] .gt_switcher .gt_option a {
    color: var(--yp-cream-muted) !important;
    background: transparent !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.gtranslate_wrapper .gt_switcher .gt_option a:hover,
[class*="gt_container"] .gt_switcher .gt_option a:hover {
    background: var(--yp-gold-pale) !important;
    color: var(--yp-gold) !important;
}

/* ── Flag images ── */
.gtranslate_wrapper .gt_switcher a img,
[class*="gt_container"] .gt_switcher a img {
    opacity: 1 !important;
    border-radius: 2px;
}

/* ── Also handle fd.js / flags_dropdown style (glink elements) ── */
.gtranslate_wrapper a.glink,
[class*="gt_container"] a.glink {
    color: var(--yp-cream-muted) !important;
    background: transparent !important;
    text-decoration: none !important;
}
.gtranslate_wrapper a.glink:hover,
[class*="gt_container"] a.glink:hover {
    color: var(--yp-gold) !important;
}

/* Hide native select element */
.gtranslate_wrapper .gt_selector,
[class*="gt_container"] .gt_selector {
    display: none !important;
}

/* ==========================================================================
   LOGO — White logo on dark header
   ========================================================================== */

.site-logo img.logo {
    max-height: 54px !important;
    width: auto !important;
    /* Logo is white/transparent — no filter needed on dark bg */
    transition: opacity 0.3s ease;
}

.site-logo img.logo:hover {
    opacity: 0.85;
}

/* Sticky header logo — slightly smaller */
#dt-sticky-navigation-holder .site-logo img.logo {
    max-height: 44px !important;
}

/* ==========================================================================
   HOMEPAGE — Shared utilities
   ========================================================================== */

.yp-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.yp-label {
    font-family: 'Prompt', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yp-gold) !important;
    margin-bottom: 10px;
    display: block;
}

.yp-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.yp-section-header h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--yp-gold-light);
    margin: 0 0 14px;
    line-height: 1.25;
}

.yp-section-header__sub {
    color: var(--yp-cream-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Buttons */
.yp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 13px 28px;
    border-radius: 7px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.yp-btn--gold {
    background: var(--yp-gradient);
    color: #0a0800 !important;
    box-shadow: 0 4px 18px rgba(201,168,76,0.32);
}

.yp-btn--gold:hover {
    background: linear-gradient(135deg, #f0d060, #c9a84c);
    box-shadow: 0 7px 26px rgba(201,168,76,0.55);
    transform: translateY(-2px);
    color: #0a0800 !important;
}

.yp-btn--outline {
    background: transparent;
    color: var(--yp-cream) !important;
    border: 1.5px solid rgba(245,230,200,0.35);
}

.yp-btn--outline:hover {
    border-color: var(--yp-gold);
    color: var(--yp-gold) !important;
    background: rgba(201,168,76,0.08);
}

.yp-btn--sm {
    font-size: 13px;
    padding: 9px 18px;
}

.yp-btn--lg {
    font-size: 17px;
    padding: 17px 44px;
    border-radius: 8px;
}

/* ==========================================================================
   HERO SLIDER — Full screen
   ========================================================================== */

.yp-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yp-hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.yp-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.yp-hero__slide--active {
    opacity: 1;
}

/* Dark + warm gradient overlay */
.yp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(9, 8, 6, 0.30) 0%,
        rgba(9, 8, 6, 0.55) 50%,
        rgba(9, 8, 6, 0.80) 100%
    );
}

/* Content */
.yp-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
    animation: yp-fadeIn 1.0s ease both;
    animation-delay: 0.3s;
}

.yp-hero__eyebrow {
    font-family: 'Prompt', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yp-gold) !important;
    margin-bottom: 16px;
    opacity: 0.9;
}

.yp-hero__title {
    font-family: 'Prompt', sans-serif;
    font-size: clamp(36px, 7vw, 76px);
    font-weight: 700;
    color: var(--yp-cream) !important;
    line-height: 1.1;
    margin: 0 0 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.yp-hero__subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(245,230,200,0.82) !important;
    line-height: 1.7;
    margin-bottom: 36px;
}

.yp-hero__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.yp-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.yp-hero__scroll span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(201,168,76,0.5);
    border-radius: 12px;
    position: relative;
}

.yp-hero__scroll span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--yp-gold);
    border-radius: 2px;
    animation: yp-scrollDot 1.8s ease infinite;
}

@keyframes yp-scrollDot {
    0%   { top: 5px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Slide dots */
.yp-hero__dots {
    position: absolute;
    bottom: 32px;
    right: 36px;
    z-index: 2;
    display: flex;
    gap: 8px;
    align-items: center;
}

.yp-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245,230,200,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.yp-hero__dot--active {
    background: var(--yp-gold);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.yp-stats {
    background: var(--yp-card);
    border-top: 1px solid var(--yp-border);
    border-bottom: 1px solid var(--yp-border);
    padding: 28px 0;
}

.yp-stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.yp-stats__item {
    text-align: center;
    padding: 10px 40px;
    flex: 1 1 180px;
    animation: yp-fadeIn 0.6s ease both;
}

.yp-stats__divider {
    width: 1px;
    height: 40px;
    background: var(--yp-border);
    flex-shrink: 0;
}

.yp-stats__number {
    display: block;
    font-family: 'Prompt', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--yp-gold-light);
    line-height: 1.1;
    margin-bottom: 4px;
}

.yp-stats__label {
    display: block;
    font-size: 12px;
    color: var(--yp-cream-muted);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.yp-about {
    padding: 90px 0;
    background: var(--yp-black);
}

.yp-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.yp-about__image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.yp-about__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--yp-border);
}

.yp-about__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--yp-gradient);
    color: #0a0800;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    text-align: center;
}

.yp-about__image-badge span {
    display: block;
    font-size: 20px;
    line-height: 1;
}

.yp-about__image-badge small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.75;
}

.yp-about__text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--yp-gold-light);
    margin: 0 0 20px;
    line-height: 1.25;
}

.yp-about__text h2 em {
    font-style: normal;
    color: var(--yp-orange);
}

.yp-about__text p {
    color: var(--yp-cream-muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.yp-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0 32px;
}

.yp-about__feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--yp-cream-muted);
}

.yp-about__feature .fa {
    color: var(--yp-gold);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   PACKAGES SECTION
   ========================================================================== */

.yp-packages {
    padding: 90px 0;
    background: var(--yp-dark);
}

.yp-packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.yp-pkg-card {
    background: var(--yp-card);
    border: 1px solid var(--yp-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: yp-fadeIn 0.65s ease both;
}

.yp-pkg-card:hover {
    transform: translateY(-6px);
    border-color: var(--yp-gold);
    box-shadow: var(--yp-shadow-gold), 0 0 40px rgba(201,168,76,0.08);
}

.yp-pkg-card__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 240px;
}

.yp-pkg-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.yp-pkg-card:hover .yp-pkg-card__img-wrap img {
    transform: scale(1.05);
}

.yp-pkg-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--yp-card-2);
}

.yp-pkg-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(9,8,6,0.65) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.yp-pkg-card:hover .yp-pkg-card__overlay {
    opacity: 1;
}

.yp-pkg-card__body {
    padding: 22px 22px 20px;
}

.yp-pkg-card__title {
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.35;
}

.yp-pkg-card__title a {
    color: var(--yp-cream) !important;
    text-decoration: none;
}

.yp-pkg-card__title a:hover {
    color: var(--yp-gold-light) !important;
}

.yp-pkg-card__desc {
    font-size: 14px;
    color: var(--yp-cream-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.yp-pkg-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--yp-border);
}

.yp-pkg-card__price {
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--yp-gold-light);
}

.yp-pkg-card__price .woocommerce-Price-amount {
    color: var(--yp-gold-light);
}

.yp-no-products {
    text-align: center;
    color: var(--yp-cream-muted);
    font-size: 16px;
    padding: 40px 0;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.yp-gallery {
    padding-top: 90px;
    padding-bottom: 90px;
    background: var(--yp-black);
}

.yp-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 4px;
    margin-top: 48px;
}

.yp-gallery__item {
    position: relative;
    overflow: hidden;
}

.yp-gallery__item--tall {
    grid-row: span 2;
}

.yp-gallery__item--wide {
    grid-column: span 2;
}

.yp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.yp-gallery__item:hover img {
    transform: scale(1.06);
}

.yp-gallery__hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.20), rgba(224,120,32,0.12));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.yp-gallery__item:hover .yp-gallery__hover {
    opacity: 1;
}

/* ==========================================================================
   WHY BOOK WITH US
   ========================================================================== */

.yp-why {
    padding: 90px 0;
    background: var(--yp-dark);
}

.yp-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yp-why__card {
    background: var(--yp-card);
    border: 1px solid var(--yp-border);
    border-radius: 14px;
    padding: 32px 26px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: yp-fadeIn 0.65s ease both;
}

.yp-why__card:hover {
    border-color: var(--yp-gold);
    transform: translateY(-4px);
    box-shadow: var(--yp-shadow-gold);
}

.yp-why__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--yp-gold-pale);
    border: 1px solid var(--yp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}

.yp-why__card:hover .yp-why__icon {
    background: var(--yp-gradient);
    border-color: var(--yp-gold);
}

.yp-why__icon .fa {
    font-size: 22px;
    color: var(--yp-gold);
    transition: color 0.35s ease;
}

.yp-why__card:hover .yp-why__icon .fa {
    color: #0a0800;
}

.yp-why__card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--yp-gold-light);
    margin: 0 0 10px;
}

.yp-why__card p {
    font-size: 14px;
    color: var(--yp-cream-muted);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   SEAT PLAN SECTION
   ========================================================================== */

.yp-seatplan {
    padding: 90px 0;
    background: var(--yp-black);
}

.yp-seatplan__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.yp-seatplan__text h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--yp-gold-light);
    margin: 0 0 18px;
    line-height: 1.3;
}

.yp-seatplan__text p {
    color: var(--yp-cream-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.yp-seatplan__image img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--yp-border);
    box-shadow: var(--yp-shadow-dark);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.yp-cta {
    position: relative;
    padding: 110px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.yp-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(9, 8, 6, 0.78) 0%,
        rgba(20, 10, 2, 0.72) 100%
    );
}

.yp-cta__inner {
    position: relative;
    z-index: 1;
}

.yp-cta h2 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 700;
    color: var(--yp-cream) !important;
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.yp-cta p {
    font-size: 17px;
    color: rgba(245,230,200,0.78) !important;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.yp-contact-page {
    padding: 60px 0 90px;
    background: var(--yp-black);
}

/* Info cards */
.yp-contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.yp-contact-info__card {
    background: var(--yp-card);
    border: 1px solid var(--yp-border);
    border-radius: var(--yp-radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--yp-transition);
    animation: yp-fadeIn 0.6s ease both;
}

.yp-contact-info__card:hover {
    border-color: var(--yp-gold);
    transform: translateY(-3px);
    box-shadow: var(--yp-shadow-gold);
}

.yp-contact-info__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--yp-gold-pale);
    border: 1px solid var(--yp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: var(--yp-transition);
}

.yp-contact-info__card:hover .yp-contact-info__icon {
    background: var(--yp-gradient);
    border-color: var(--yp-gold);
}

.yp-contact-info__icon .fa {
    font-size: 20px;
    color: var(--yp-gold);
    transition: color 0.3s ease;
}

.yp-contact-info__card:hover .yp-contact-info__icon .fa {
    color: #0a0800;
}

.yp-contact-info__card h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--yp-gold-light);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.yp-contact-info__card p,
.yp-contact-info__card a {
    font-size: 14px;
    color: var(--yp-cream-muted);
    line-height: 1.65;
    margin: 0;
}

.yp-contact-info__card a:hover {
    color: var(--yp-gold);
}

/* Two-column layout */
.yp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Form wrap */
.yp-contact-form-wrap {
    background: var(--yp-card);
    border: 1px solid var(--yp-border);
    border-radius: var(--yp-radius);
    padding: 40px;
}

.yp-contact-form-wrap h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--yp-gold-light);
    margin: 6px 0 10px;
}

.yp-contact-form-wrap__sub {
    color: var(--yp-cream-muted);
    font-size: 15px;
    margin-bottom: 32px !important;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--yp-border);
}

/* CF7 overrides */
.wpcf7 p {
    margin-bottom: 20px !important;
    color: var(--yp-cream-muted);
}

.wpcf7 label {
    font-family: 'Prompt', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--yp-cream-muted);
    display: block;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100% !important;
    background: #1a1409 !important;
    border: 1px solid var(--yp-border) !important;
    border-radius: var(--yp-radius-sm) !important;
    color: var(--yp-cream) !important;
    font-family: 'Sarabun', sans-serif !important;
    font-size: 15px !important;
    padding: 11px 15px !important;
    transition: var(--yp-transition) !important;
    outline: none !important;
    box-shadow: none !important;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: var(--yp-gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
    background: #1e1a0d !important;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
    background: var(--yp-gradient) !important;
    color: #0a0800 !important;
    border: none !important;
    border-radius: var(--yp-radius-sm) !important;
    font-family: 'Prompt', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 13px 36px !important;
    cursor: pointer;
    transition: var(--yp-transition) !important;
    box-shadow: 0 4px 16px rgba(201,168,76,0.28) !important;
    letter-spacing: 0.3px;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
    background: linear-gradient(135deg, #f0d060, #c9a84c) !important;
    box-shadow: 0 6px 22px rgba(201,168,76,0.50) !important;
    transform: translateY(-2px);
}

/* CF7 response messages */
.wpcf7 form .wpcf7-response-output {
    border-radius: var(--yp-radius-sm) !important;
    border: none !important;
    border-left: 4px solid var(--yp-gold) !important;
    background: var(--yp-gold-pale) !important;
    color: var(--yp-cream) !important;
    padding: 12px 18px !important;
    font-size: 14px;
    margin: 16px 0 0 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-left-color: #4caf50 !important;
    background: rgba(76,175,80,0.07) !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    border-left-color: #ef5350 !important;
    background: rgba(239,83,80,0.07) !important;
}

.wpcf7-not-valid-tip {
    color: #ef5350 !important;
    font-size: 12px !important;
    margin-top: 4px;
}

/* Plain HTML form fallback */
.yp-plain-form .yp-form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.yp-form-group {
    margin-bottom: 20px;
}

.yp-form-group label {
    font-family: 'Prompt', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--yp-cream-muted);
    display: block;
    margin-bottom: 7px;
}

.yp-form-group input,
.yp-form-group textarea {
    width: 100%;
    background: #1a1409;
    border: 1px solid var(--yp-border);
    border-radius: var(--yp-radius-sm);
    color: var(--yp-cream);
    font-family: 'Sarabun', sans-serif;
    font-size: 15px;
    padding: 11px 15px;
    transition: var(--yp-transition);
    outline: none;
}

.yp-form-group input:focus,
.yp-form-group textarea:focus {
    border-color: var(--yp-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.yp-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Sidebar */
.yp-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yp-contact-sidebar__block {
    background: var(--yp-card);
    border: 1px solid var(--yp-border);
    border-radius: var(--yp-radius);
    padding: 26px 22px;
}

.yp-contact-sidebar__block .yp-label {
    margin-bottom: 14px;
}

/* Social links */
.yp-contact-social {
    display: flex;
    gap: 10px;
}

.yp-contact-social__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--yp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yp-cream-muted) !important;
    font-size: 16px;
    transition: var(--yp-transition);
}

.yp-contact-social__link:hover {
    background: var(--yp-gold);
    border-color: var(--yp-gold);
    color: #0a0800 !important;
    transform: translateY(-2px);
}

/* Quick links */
.yp-contact-sidebar__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.yp-contact-sidebar__links li {
    border-bottom: 1px solid var(--yp-border);
}

.yp-contact-sidebar__links li:last-child {
    border-bottom: none;
}

.yp-contact-sidebar__links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    color: var(--yp-cream-muted) !important;
    font-size: 14px;
    transition: var(--yp-transition);
}

.yp-contact-sidebar__links a:hover {
    color: var(--yp-gold) !important;
    padding-left: 4px;
}

.yp-contact-sidebar__links .fa {
    color: var(--yp-gold);
    font-size: 12px;
}

/* CTA block */
.yp-contact-sidebar__block--cta {
    text-align: center;
    background: var(--yp-card-2);
}

.yp-contact-sidebar__block--cta .fa {
    font-size: 28px;
    color: var(--yp-gold);
    margin-bottom: 12px;
    display: block;
}

.yp-contact-sidebar__block--cta h4 {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--yp-gold-light);
    margin: 0 0 8px;
}

.yp-contact-sidebar__block--cta p {
    font-size: 13px;
    color: var(--yp-cream-muted);
    margin-bottom: 16px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .yp-contact-info { grid-template-columns: repeat(2, 1fr); }
    .yp-contact-grid { grid-template-columns: 1fr; }
    .yp-contact-sidebar { flex-direction: row; flex-wrap: wrap; }
    .yp-contact-sidebar__block { flex: 1 1 calc(50% - 8px); }
}

@media (max-width: 576px) {
    .yp-contact-info { grid-template-columns: repeat(2, 1fr); }
    .yp-contact-form-wrap { padding: 24px; }
    .yp-plain-form .yp-form-row--2col { grid-template-columns: 1fr; }
    .yp-contact-sidebar { flex-direction: column; }
    .yp-contact-sidebar__block { flex: 1 1 100%; }
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */

.yp-gallery-page {
    padding: 48px 0 80px;
    background: var(--yp-black);
    min-height: 60vh;
}

/* Filter tabs */
.yp-gfilter {
    margin-bottom: 40px;
}

.yp-gfilter .yp-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.yp-gfilter__btn {
    font-family: 'Prompt', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 9px 22px;
    border-radius: 30px;
    border: 1px solid var(--yp-border);
    background: transparent;
    color: var(--yp-cream-muted);
    cursor: pointer;
    transition: var(--yp-transition);
}

.yp-gfilter__btn:hover {
    border-color: var(--yp-gold);
    color: var(--yp-gold);
}

.yp-gfilter__btn--active {
    background: var(--yp-gradient);
    border-color: transparent;
    color: #0a0800 !important;
    box-shadow: 0 4px 14px rgba(201,168,76,0.30);
}

/* Photo grid */
.yp-gpage__grid {
    columns: 4;
    column-gap: 10px;
}

.yp-gpage__item {
    break-inside: avoid;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: var(--yp-radius-sm);
    position: relative;
    transition: var(--yp-transition);
}

.yp-gpage__item.yp-hidden {
    display: none;
}

.yp-gpage__item.yp-fade-in {
    animation: yp-fadeIn 0.45s ease both;
}

.yp-gpage__link {
    display: block;
    position: relative;
    overflow: hidden;
}

.yp-gpage__link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.yp-gpage__item:hover .yp-gpage__link img {
    transform: scale(1.05);
}

.yp-gpage__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,8,6,0.55), rgba(201,168,76,0.18));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yp-gpage__item:hover .yp-gpage__overlay {
    opacity: 1;
}

.yp-gpage__overlay .fa {
    font-size: 26px;
    color: var(--yp-gold-light);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.yp-gpage__item:hover .yp-gpage__overlay .fa {
    transform: scale(1);
}

/* ── Lightbox ───────────────────────────────────── */

.yp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(6, 5, 2, 0.96);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.yp-lightbox.yp-lightbox--open {
    display: flex;
}

.yp-lightbox__inner {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yp-lightbox__inner img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--yp-radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    animation: yp-fadeInSlow 0.3s ease;
}

.yp-lightbox__close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: transparent;
    border: 1px solid var(--yp-border);
    color: var(--yp-cream-muted);
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--yp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
}

.yp-lightbox__close:hover {
    background: var(--yp-gold);
    border-color: var(--yp-gold);
    color: #0a0800;
}

.yp-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--yp-border);
    color: var(--yp-gold-light);
    font-size: 36px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--yp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
}

.yp-lightbox__prev { left: 20px; }
.yp-lightbox__next { right: 20px; }

.yp-lightbox__nav:hover {
    background: var(--yp-gold);
    border-color: var(--yp-gold);
    color: #0a0800;
}

.yp-lightbox__counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Prompt', sans-serif;
    font-size: 13px;
    color: var(--yp-cream-muted);
    letter-spacing: 1px;
}

/* Responsive gallery grid */
@media (max-width: 992px) {
    .yp-gpage__grid { columns: 3; }
}

@media (max-width: 640px) {
    .yp-gpage__grid { columns: 2; }
    .yp-lightbox__nav { width: 40px; height: 40px; font-size: 26px; }
    .yp-lightbox__prev { left: 10px; }
    .yp-lightbox__next { right: 10px; }
}

@media (max-width: 380px) {
    .yp-gpage__grid { columns: 1; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1240px) {
    .container,
    .dt-container,
    .yp-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 992px) {
    /* WooCommerce */
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
        gap: 18px !important;
    }

    /* Packages */
    .yp-packages__grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    /* About */
    .yp-about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .yp-about__image img {
        height: 320px;
    }

    /* Why */
    .yp-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Seat plan */
    .yp-seatplan__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Gallery */
    .yp-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px 220px;
    }

    .yp-gallery__item--tall,
    .yp-gallery__item--wide {
        grid-row: auto;
        grid-column: auto;
    }

    /* Stats */
    .yp-stats__divider { display: none; }
    .yp-stats__item { flex: 1 1 140px; padding: 10px 20px; }
}

@media (max-width: 768px) {
    .container,
    .dt-container,
    .yp-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .single-product div.product {
        padding: 20px !important;
    }

    /* Hero */
    .yp-hero__title {
        font-size: clamp(32px, 8vw, 52px);
    }

    .yp-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    /* Sections padding */
    .yp-about,
    .yp-packages,
    .yp-gallery,
    .yp-why,
    .yp-seatplan {
        padding: 60px 0;
    }

    .yp-cta {
        padding: 70px 0;
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    /* WooCommerce grid */
    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .woocommerce ul.products li.product img {
        height: 160px !important;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .woocommerce ul.products li.product h2 {
        font-size: 13px !important;
        padding: 10px 12px 4px !important;
        min-height: auto;
    }

    .woocommerce ul.products li.product .price {
        font-size: 15px !important;
        padding: 0 12px 6px !important;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.button {
        width: calc(100% - 24px) !important;
        margin: 6px 12px 12px !important;
        font-size: 12px !important;
        padding: 9px 12px !important;
    }

    .single-product div.product .product_title {
        font-size: 20px !important;
    }

    #footer .footer-widget-area {
        padding: 36px 0 20px;
    }

    /* Why cards — 1 col on small */
    .yp-why__grid {
        grid-template-columns: 1fr;
    }

    /* Packages */
    .yp-packages__grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .yp-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }

    /* Stats */
    .yp-stats__item { flex: 1 1 100%; }
    .yp-stats__grid { gap: 16px; }
}

@media (max-width: 380px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .yp-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 180px);
    }
}
