/*
Theme Name:   Hello Elementor Child
Theme URI:    https://goldenmagnetonline.local
Description:  Custom WooCommerce child theme for Golden Fridge Magnets
Author:       Antigravity
Author URI:   https://goldenmagnetonline.local
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-elementor-child
Update URI:   false
*/

/* Enqueue parent styles inside functions.php instead of using @import */

/* ── WooCommerce Empty Cart Styling ────────────────────────── */
.wc-empty-cart-message, 
.woocommerce-info {
    padding: 60px 24px;
    text-align: center;
    background: #FAF4EA !important;
    border: 1px dashed rgba(16,57,72,.15);
    border-radius: 18px;
    max-width: 800px;
    margin: 40px auto 30px !important;
    color: #103948;
}
.cart-empty {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    color: #103948;
    margin-bottom: 24px;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}
.return-to-shop {
    margin-top: 20px;
    text-align: center;
}
.return-to-shop a.button {
    background: #1C6B7D !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    transition: transform .25s, background .25s !important;
    display: inline-block !important;
    border: none !important;
    box-shadow: 0 12px 26px -12px rgba(194,105,124,.7) !important;
    text-decoration: none !important;
}
.return-to-shop a.button:hover {
    transform: translateY(-2px);
    background: #15515F !important;
    box-shadow: 0 14px 30px -10px rgba(194,105,124,.8) !important;
}

/* ── WooCommerce Loop / Default Product Grid Overrides ─────── */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 26px !important;
    padding: 20px 0 !important;
    margin: 0 auto !important;
    max-width: 1240px;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}
.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    background: #fff !important;
    border: 1px solid #efe7da !important;
    border-radius: 20px !important;
    padding: 16px !important;
    box-shadow: 0 30px 60px -40px rgba(16,57,72,.2) !important;
    transition: transform .35s, box-shadow .35s !important;
    margin: 0 !important;
    width: auto !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px -30px rgba(16,57,72,.35) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-decoration: none !important;
}
.woocommerce ul.products li.product img {
    border-radius: 12px !important;
    margin: 0 0 8px !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Jost', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #103948 !important;
    padding: 0 !important;
    margin: 4px 0 !important;
}
.woocommerce ul.products li.product .price {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    color: #1C6B7D !important;
    margin-bottom: 12px !important;
}
.woocommerce ul.products li.product .button {
    background: #1C6B7D !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px !important;
    font-size: 12px !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: auto !important;
    transition: background .25s !important;
    border: none !important;
    text-decoration: none !important;
}
.woocommerce ul.products li.product .button:hover {
    background: #15515F !important;
}

/* ── 3-Column How It Works Section ────────────────────────── */
.fmc-how-section {
    background: #E9EFEC;
    padding: 56px 28px 72px;
    margin-top: 0;
}

.fmc-how-section-head {
    max-width: 1240px;
    margin: 0 auto 36px;
    text-align: center;
}

.fmc-how-eyebrow {
    color: #1C6B7D;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fmc-how-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.08;
    color: #103948;
    margin: 0;
}

.fmc-how-three-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.72fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.fmc-how-col-card {
    background: #fff;
    border: 1px solid #efe7da;
    border-radius: 22px;
    padding: 28px 24px 24px;
    box-shadow: 0 20px 45px -35px rgba(16,57,72,.25);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 0;
    height: auto;
}

.fmc-how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 0 0 auto;
}

.fmc-how-phone-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 4px;
    min-width: 0;
}

.fmc-how-phone {
    width: 100%;
    max-width: 300px;
    background: #103948;
    border-radius: 42px;
    padding: 12px;
    box-shadow: 0 40px 70px -30px rgba(16,57,72,.6);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.fmc-how-phone-screen {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    padding: 26px 22px 24px;
}

.fmc-how-step-badge {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1C6B7D;
    color: #fff;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}
.fmc-video-container {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
    margin-top: 20px;
    border: 1px solid #efe7da;
    box-shadow: 0 8px 24px -10px rgba(16,57,72,.3);
    width: 100%;
    flex-shrink: 0;
}
.fmc-how-design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.fmc-how-design-swatch {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #E9EFEC;
    position: relative;
}
.fmc-how-design-swatch.is-selected {
    outline: 2px solid #1C6B7D;
    outline-offset: 1px;
}
.fmc-how-design-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fmc-how-design-swatch__fallback {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #CDE0E8, #A9C7D6);
}
.fmc-home-event-qr {
    display: block;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    width: 230px;
    text-align: center;
    box-shadow: 0 40px 60px -30px rgba(0, 0, 0, .5);
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease;
}
.fmc-home-event-qr:hover {
    transform: translateY(-3px);
}
.fmc-home-event-qr__label {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #1C6B7D;
    font-weight: 600;
    margin-bottom: 12px;
}
.fmc-home-event-qr__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fmc-home-event-qr__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.fmc-home-event-qr__fallback {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#103948 0% 25%, #fff 0% 50%) 50% / 14px 14px;
}
.fmc-home-event-qr__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 57, 72, .12);
    overflow: hidden;
}
.fmc-home-event-qr__logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}
.fmc-home-event-qr__logo--heart {
    font-size: 22px;
    color: #1C6B7D;
    line-height: 1;
}
.fmc-home-event-qr__caption {
    margin-top: 12px;
    font-size: 12px;
    color: #6E7180;
}
.fmc-video-overlay-play {
    position: absolute;
    inset: 0;
    background: rgba(16,57,72,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
}
.fmc-video-overlay-play .play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #1C6B7D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-left: 2px;
    box-shadow: 0 4px 12px rgba(16,57,72,.15);
}
.fmc-video-overlay-play .video-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #103948;
    background: rgba(255,255,255,0.85);
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.fmc-video-container.is-playing .fmc-video-overlay-play {
    display: none;
}
.fmc-video-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}
.fmc-spotlight-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.fmc-spotlight-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 12px -6px rgba(16,57,72,.35);
}
.fmc-spotlight-thumb.is-active {
    border-color: #1C6B7D;
    outline: 2px solid rgba(28,107,125,.25);
}
.fmc-spotlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fmc-bundle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fmc-bundle-btn {
    min-width: 52px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1.5px solid #A9C9CA;
    background: #fff;
    color: #103948;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}
.fmc-bundle-btn.is-active,
.fmc-bundle-btn:hover {
    background: #1C6B7D;
    border-color: #1C6B7D;
    color: #fff;
}
.fmc-picture-bundle-picker {
    margin-bottom: 12px;
}
.fmc-picture-bundle-picker .fmc-bundle-grid {
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .fmc-how-three-cols {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr) minmax(0, 1fr);
        gap: 22px;
    }
}

@media (max-width: 980px) {
    .fmc-how-section {
        padding: 48px 20px 56px;
    }

    .fmc-how-three-cols {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .fmc-how-phone-col {
        order: -1;
        padding-top: 0;
    }

    .fmc-how-phone {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ── Printable Flyer / Venue Sign (reference poster design) ── */
.fmc-events-poster-section {
    overflow: visible !important;
    background: linear-gradient(180deg, #E9EFEC 0%, #FAF4EA 55%, #F5F0E6 100%);
    padding: 48px 28px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.fmc-events-poster-intro {
    text-align: center;
    max-width: 700px;
}

.fmc-events-poster-intro h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.1;
    margin: 0 0 12px;
    color: #103948;
}

.fmc-events-poster-intro p {
    font-size: 16px;
    line-height: 1.65;
    color: #55596A;
    margin: 0;
}

.fmc-poster-preview-block {
    width: min(960px, 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.fmc-poster-workspace {
    display: flex;
    align-items: start;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.fmc-poster-preview-stage {
    flex: 0 0 85%;
    max-width: 85%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
    padding-left: 14px;
}

.fmc-poster-dimensions {
    flex: 0 0 15%;
    width: 100%;
    max-width: 15%;
    padding: 14px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(16, 57, 72, 0.1);
    box-shadow: 0 12px 28px -20px rgba(16, 57, 72, 0.35);
}

.fmc-dim-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1C6B7D;
    margin-bottom: 14px;
}

.fmc-dim-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.fmc-dim-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fmc-dim-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6E7180;
}

.fmc-dim-value {
    font-size: 22px;
    font-weight: 700;
    color: #103948;
    line-height: 1.15;
}

.fmc-dim-sub {
    font-size: 12px;
    color: #1C6B7D;
    font-weight: 500;
}

.fmc-dim-size-name {
    font-size: 13px;
    font-weight: 600;
    color: #103948;
    line-height: 1.4;
    margin-bottom: 4px;
}

.fmc-dim-aspect {
    font-size: 12px;
    color: #6E7180;
    line-height: 1.45;
}

.fmc-poster-source {
    position: fixed;
    left: -9999px;
    top: 0;
    width: auto;
    pointer-events: none;
    z-index: -9999;
    overflow: visible;
}

.fmc-poster-source.is-capturing {
    left: 0;
    top: 0;
}

.fmc-poster-capture-shell {
    display: inline-block;
    padding: 16px 56px 20px 16px;
    background: #FAF4EA;
    line-height: 0;
    overflow: visible;
    box-sizing: content-box;
}

.fmc-poster-capture-shell.has-frame {
    padding: 10px 34px 14px 10px;
}

.fmc-poster-capture-shell.has-frame .fmc-flyer-poster-wrap {
    padding: 0;
}

.fmc-poster-source .fmc-flyer-poster-wrap {
    padding: 0;
    overflow: visible;
}

.fmc-print-sheet {
    position: fixed;
    left: -10000px;
    top: 0;
    pointer-events: none;
    visibility: hidden;
}

.fmc-poster-design-divider {
    width: min(640px, 100%);
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 4px;
}

.fmc-poster-design-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 162, 76, 0.55), transparent);
}

.fmc-poster-design-divider-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1C6B7D;
    white-space: nowrap;
}

.fmc-flyer-poster-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 8px 12px 0;
}

.fmc-flyer-outer-gold {
    padding: 0.55em;
    border-radius: 8px;
    background: linear-gradient(145deg, #F0DDA0 0%, #C6A24C 22%, #9A7B3C 48%, #C6A24C 72%, #E8D5A8 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.45) inset,
        0 28px 60px -24px rgba(16, 57, 72, 0.48);
}

.fmc-poster-capture-shell.has-frame .fmc-flyer-outer-gold {
    padding: 0;
    border: 26px solid transparent;
    border-image: var(--fmc-frame-border-url) 26 round;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
}

.fmc-print-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1C6B7D;
    color: #fff;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 12px 24px -10px rgba(28, 107, 125, 0.5);
    font-family: 'Jost', sans-serif;
}

.fmc-print-btn:hover {
    background: #15515F;
}

/* ── Poster canvas print preview ── */
.fmc-poster-preview-meta {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fmc-poster-preview-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #103948;
}

.fmc-poster-preview-dims {
    font-size: 13px;
    color: #6E7180;
}

.fmc-poster-canvas-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 200px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
}

#fmc-poster-preview-canvas {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    background: #FAF4EA;
    box-shadow: 0 24px 50px -28px rgba(16, 57, 72, 0.45);
}

@media (max-width: 768px) {
    .fmc-poster-preview-block {
        width: 100%;
        padding: 0 4px;
    }

    .fmc-poster-workspace {
        display: block;
        gap: 16px;
    }

    .fmc-poster-dimensions {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-bottom: 14px;
    }

    .fmc-dim-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .fmc-poster-preview-stage {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding-left: 0;
    }

    .fmc-poster-canvas-frame {
        width: 100% !important;
        margin: 0 auto;
    }

    .fmc-print-row {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .fmc-print-select {
        width: 100%;
    }

}

.fmc-poster-canvas-loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: rgba(250, 244, 234, 0.82);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #103948;
    z-index: 2;
}

.fmc-poster-canvas-loading.is-active {
    display: flex;
}

.fmc-poster-canvas-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(28, 107, 125, 0.2);
    border-top-color: #1C6B7D;
    border-radius: 50%;
    animation: fmc-spin 0.8s linear infinite;
}

@keyframes fmc-spin {
    to { transform: rotate(360deg); }
}

.fmc-flyer-capturing.fmc-flyer-outer-gold {
    display: inline-block;
    width: auto !important;
    max-width: none !important;
    overflow: visible !important;
}

.fmc-flyer-capturing .fmc-flyer-sign-container,
.fmc-flyer-sign-container--capturing {
    width: 580px !important;
    max-width: 580px !important;
    --flyer-base: 10px !important;
    font-size: 10px !important;
    margin: 0 !important;
    overflow: visible !important;
}

.fmc-flyer-capturing .fmc-flyer-poster-wrap,
.fmc-flyer-capturing .fmc-poster-capture-shell {
    overflow: visible !important;
}

.fmc-flyer-poster-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 12px;
    overflow: visible;
}

.fmc-flyer-sign-container {
    --flyer-base: clamp(7px, 1.65vw, 10px);
    width: min(580px, calc(100vw - 48px));
    font-size: var(--flyer-base);
    border-radius: 4px;
    background:
        radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.95), transparent 55%),
        radial-gradient(circle at 18% 12%, rgba(255, 214, 120, 0.28), transparent 42%),
        radial-gradient(circle at 84% 22%, rgba(255, 182, 193, 0.2), transparent 36%),
        radial-gradient(circle at 50% 88%, rgba(255, 230, 180, 0.22), transparent 40%),
        linear-gradient(160deg, #FFF9F0 0%, #FFF4F6 48%, #FFF8EE 100%);
    border: 0.95em solid #C6A24C;
    padding: 1.35em;
    box-shadow:
        inset 0 0 0 0.18em #E8D5A8,
        inset 0 0 0 0.42em rgba(198, 162, 76, 0.5),
        inset 0 0 3.5em rgba(255, 214, 120, 0.14);
    font-family: 'Jost', sans-serif;
    color: #103948;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
}

.fmc-poster-capture-shell.has-frame .fmc-flyer-sign-container {
    border: 0.2em solid rgba(201, 170, 96, 0.7);
    border-radius: 2px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.55),
        inset 0 0 1.2em rgba(198, 162, 76, 0.12);
}

.fmc-poster-capture-shell.has-frame .fmc-flyer-gold-frame,
.fmc-poster-capture-shell.has-frame .fmc-flyer-ornate-frame {
    display: none;
}

.fmc-flyer-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 0.4%, transparent 0.5%),
        radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.85) 0 0.35%, transparent 0.45%),
        radial-gradient(circle at 72% 62%, rgba(255, 230, 180, 0.7) 0 0.3%, transparent 0.4%),
        radial-gradient(circle at 28% 72%, rgba(255, 255, 255, 0.8) 0 0.35%, transparent 0.45%),
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.5) 0 0.5%, transparent 0.6%);
    opacity: 0.75;
}

.fmc-flyer-gold-frame {
    position: absolute;
    inset: 0.4em;
    border: 0.3em solid rgba(198, 162, 76, 0.55);
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.55),
        inset 0 0 1.8em rgba(198, 162, 76, 0.15);
}

.fmc-flyer-ornate-frame {
    position: absolute;
    inset: 1.4em;
    border: 0.15em solid rgba(198, 162, 76, 0.35);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}

.fmc-flyer-deco {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 0.2em 0.4em rgba(16, 57, 72, 0.12));
}

.fmc-flyer-deco-heart {
    color: #E0455E;
    font-size: 1.8em;
    text-shadow: 0 0.1em 0.2em rgba(224, 69, 94, 0.35), 0 0.2em 0.4em rgba(16, 57, 72, 0.1);
}
.fmc-flyer-deco-note { color: #C6A24C; font-size: 2em; }
.fmc-flyer-deco-1 { top: 4.2em; left: 1.8em; transform: rotate(-12deg); }
.fmc-flyer-deco-2 { top: 12em; right: 1.6em; font-size: 1.4em; }
.fmc-flyer-deco-3 { top: 21em; left: 2.4em; }
.fmc-flyer-deco-4 { bottom: 8.8em; right: 2.2em; }
.fmc-flyer-deco-5 { bottom: 14em; left: 2em; font-size: 1.2em; opacity: 0.7; }
.fmc-flyer-deco-6 { top: 16em; right: 3em; font-size: 1.1em; opacity: 0.65; }

.fmc-flyer-corner-flowers {
    position: absolute;
    width: 5.6em;
    height: 5.6em;
    opacity: 0.55;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
}

.fmc-flyer-corner-top-left {
    top: 0.8em;
    left: 0.8em;
    background-image:
        radial-gradient(circle at 30% 30%, #f6d889 0 18%, transparent 19%),
        radial-gradient(circle at 70% 30%, #f6d889 0 16%, transparent 17%),
        radial-gradient(circle at 50% 68%, #f0c86d 0 22%, transparent 23%);
}

.fmc-flyer-corner-top-right {
    top: 0.8em;
    right: 0.8em;
    transform: scaleX(-1);
    background-image:
        radial-gradient(circle at 30% 30%, #f6d889 0 18%, transparent 19%),
        radial-gradient(circle at 70% 30%, #f6d889 0 16%, transparent 17%),
        radial-gradient(circle at 50% 68%, #f0c86d 0 22%, transparent 23%);
}

.fmc-print-controls {
    width: min(860px, 100%);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fmc-print-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #103948;
    margin-bottom: 10px;
}

.fmc-print-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.fmc-print-select {
    width: min(820px, 100%);
    min-width: 0;
    border: 1px solid #A9C9CA;
    border-radius: 999px;
    padding: 14px 18px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #103948;
    background: #fff;
}

.fmc-print-hint {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6E7180;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.fmc-flyer-inner {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(196, 162, 76, 0.28);
    border-radius: 3px;
    padding: 2em 1.4em 1.6em;
    background: rgba(255, 255, 255, 0.28);
}

.fmc-flyer-topline {
    font-size: 1em;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 0.8em;
}

.fmc-flyer-topline-heart { color: #E0455E; margin: 0 0.4em; }

.fmc-flyer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.05em;
    line-height: 1.04;
    color: #1B4332;
    margin: 0 0 0.2em;
    letter-spacing: 0.03em;
    -webkit-text-stroke: 0.4px rgba(198, 162, 76, 0.45);
    text-shadow:
        0 1px 0 rgba(198, 162, 76, 0.65),
        0 2px 0 rgba(154, 123, 60, 0.25),
        0 4px 16px rgba(16, 57, 72, 0.14);
}

.fmc-flyer-event-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.55em;
    font-weight: 600;
    color: #103948;
    margin: 0.35em 0 0;
    line-height: 1.2;
}

.fmc-flyer-poster-names {
    font-size: 1.15em;
    color: #55596A;
    margin: 0.35em 0 0;
    line-height: 1.45;
    font-weight: 500;
}

.fmc-flyer-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.55em;
    color: #1B4332;
    margin-bottom: 1.35em;
    line-height: 1.3;
}

.fmc-flyer-subtitle .cursive-text {
    font-family: 'Great Vibes', 'Caveat', cursive;
    font-size: 1.7em;
    font-weight: 400;
    color: #1B4332;
}

.fmc-flyer-subtitle-note {
    color: #C6A24C;
    font-size: 1.1em;
    margin-left: 0.4em;
}

.fmc-flyer-banner {
    background: linear-gradient(180deg, #1C4D47 0%, #103948 100%);
    color: #fff;
    font-size: 0.88em;
    font-weight: 700;
    letter-spacing: 0.09em;
    padding: 1em 1.1em;
    border-radius: 0.55em;
    margin-bottom: 1.55em;
    border: 0.2em solid #C6A24C;
    box-shadow:
        0 0.6em 1.6em -0.8em rgba(16, 57, 72, 0.45),
        0 0 1.2em rgba(255, 214, 120, 0.15);
    line-height: 1.35;
}

.fmc-flyer-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 0.8em;
    align-items: center;
    margin-bottom: 1.8em;
}

.fmc-flyer-features {
    display: flex;
    flex-direction: column;
    gap: 1em;
    text-align: left;
}

.fmc-flyer-feat-item {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.fmc-flyer-feat-icon-wrap {
    width: 2.8em;
    height: 2.8em;
    border-radius: 50%;
    background: linear-gradient(145deg, #F0DDA0 0%, #C6A24C 45%, #9A7B3C 100%);
    border: 0.1em solid #E8D5A8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 0.2em 0.6em rgba(154, 123, 60, 0.35),
        inset 0 0.1em 0.2em rgba(255, 255, 255, 0.45);
}

.fmc-flyer-feat-glyph {
    font-size: 1.2em;
    line-height: 1;
    filter: grayscale(0.2);
}

.fmc-flyer-feat-icon-wrap--heart .fmc-flyer-feat-glyph {
    color: #E0455E;
    font-size: 1.35em;
}

.fmc-flyer-feat-text {
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1B4332;
    line-height: 1.2;
}

.fmc-flyer-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 0;
    padding: 0 0.2em;
}

.fmc-flyer-qr-glow {
    position: absolute;
    width: 14em;
    height: 14em;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 90, 0.62), rgba(255, 214, 90, 0.12) 62%, transparent 72%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 0;
}

.fmc-flyer-qr-box {
    position: relative;
    width: 11em;
    height: 11em;
    background: #fff;
    border: 0.2em solid #C6A24C;
    border-radius: 1.2em;
    padding: 0.8em;
    box-shadow: 0 1em 2.4em -1.2em rgba(16, 57, 72, 0.35);
    z-index: 1;
}

.fmc-flyer-qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.fmc-flyer-qr-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.6em;
    height: 2.6em;
    background: #fff;
    border-radius: 0.6em;
    border: 0.1em solid #1C6B7D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #1C6B7D;
}

.fmc-flyer-scanme-wrap {
    position: absolute;
    bottom: -0.6em;
    right: -2.4em;
    transform: rotate(6deg);
    z-index: 2;
    width: 8em;
}

.fmc-flyer-scanme-arrow {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -0.4em;
}

.fmc-flyer-scanme-text {
    font-family: 'Caveat', cursive;
    font-size: 1.8em;
    color: #1C6B7D;
    font-weight: 600;
    line-height: 1;
    text-align: right;
    padding-right: 0.2em;
}

.fmc-flyer-quote-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fmc-flyer-quote-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
    position: relative;
}

.fmc-flyer-quote-heart {
    color: #E0455E;
    font-size: 2.8em;
    line-height: 1;
    filter: drop-shadow(0 0.15em 0.3em rgba(224, 69, 94, 0.25));
}

.fmc-flyer-quote-heart--small {
    position: absolute;
    top: -0.2em;
    right: -0.6em;
    font-size: 1em;
    color: #C6A24C;
}

.fmc-flyer-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.85em;
    color: #1B4332;
    line-height: 1.35;
    font-weight: 500;
    max-width: 9em;
}

.fmc-flyer-showcase {
    margin: 1.4em 0 1.6em;
    padding: 1em 0.8em 0.8em;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(198, 162, 76, 0.25);
    border-radius: 0.6em;
}

.fmc-flyer-showcase-label {
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #1B4332;
    margin-bottom: 1em;
    text-transform: uppercase;
}

.fmc-flyer-showcase-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6em;
}

.fmc-flyer-showcase-card {
    background: #fff;
    border-radius: 0.6em;
    overflow: hidden;
    border: 1px solid rgba(16, 57, 72, 0.08);
    box-shadow: 0 0.6em 1.4em -1em rgba(16, 57, 72, 0.35);
    display: flex;
    flex-direction: column;
}

.fmc-flyer-showcase-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: #E9E2D6;
    flex-shrink: 0;
}

.fmc-flyer-showcase-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fmc-flyer-showcase-player {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4em 0.5em 0;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fmc-flyer-showcase-meta {
    padding-right: 1em;
    min-height: 2.2em;
}

.fmc-flyer-showcase-title {
    font-size: 0.7em;
    font-weight: 700;
    color: #103948;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fmc-flyer-showcase-artist {
    font-size: 0.55em;
    color: #6E7180;
    margin-top: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fmc-flyer-showcase-heart {
    position: absolute;
    right: 0.4em;
    top: 0.4em;
    color: #E0455E;
    font-size: 0.8em;
    line-height: 1;
}

.fmc-flyer-showcase-controls-bar {
    background: linear-gradient(180deg, #2a2a2a 0%, #141414 100%);
    margin: 0.35em -0.5em 0;
    padding: 0.38em 0.2em;
    border-radius: 0 0 0.4em 0.4em;
}

.fmc-flyer-showcase-controls {
    font-size: 0.55em;
    color: #fff;
    text-align: center;
    letter-spacing: 0.02em;
    opacity: 0.95;
    display: block;
}

.fmc-flyer-action-pill {
    background: linear-gradient(180deg, #1C4D47 0%, #103948 100%);
    color: #fff;
    border-radius: 999px;
    padding: 0.85em 1.7em;
    font-size: 0.92em;
    font-weight: 700;
    letter-spacing: 0.07em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65em;
    margin-top: 0.5em;
    margin-bottom: 0.65em;
    border: 0.18em solid #C6A24C;
    box-shadow:
        0 0.6em 1.4em -0.8em rgba(16, 57, 72, 0.4),
        0 0 1em rgba(255, 214, 120, 0.12);
    max-width: 100%;
    line-height: 1.2;
}

.fmc-flyer-action-icon {
    font-size: 1.2em;
    line-height: 1;
}

.fmc-flyer-hint-text {
    font-size: 0.85em;
    color: #1B4332;
    letter-spacing: 0.02em;
    margin-bottom: 1.6em;
    opacity: 0.85;
}

@media (max-width: 520px) {
    .fmc-flyer-sign-container {
        --flyer-base: clamp(6.5px, 2.1vw, 8px);
        border-width: 0.85em;
        padding: 1em;
    }

    .fmc-flyer-body {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
        gap: 0.5em;
    }

    .fmc-flyer-scanme-wrap {
        right: -1.6em;
        width: 6.5em;
    }

    .fmc-flyer-scanme-text {
        font-size: 1.5em;
    }

    .fmc-flyer-quote-text {
        font-size: 0.75em;
    }

    .fmc-flyer-feat-icon-wrap {
        width: 2.4em;
        height: 2.4em;
    }

    .fmc-flyer-feat-text {
        font-size: 0.7em;
    }
}

@media (max-width: 380px) {
    .fmc-flyer-title {
        font-size: 2.5em;
    }

    .fmc-flyer-subtitle {
        font-size: 1.25em;
    }

    .fmc-flyer-banner {
        font-size: 0.8em;
        letter-spacing: 0.05em;
    }
}
.fmc-flyer-gallery {
    background: #fff;
    border: 1px solid rgba(16,57,72,.08);
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 18px;
}
.fmc-flyer-gal-header {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #103948;
    margin-bottom: 8px;
}
.fmc-flyer-gal-header .live-dot-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1C6B7D;
}
.fmc-flyer-gal-header .dot-blink {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E0455E;
    display: inline-block;
    animation: pulsedot 1.4s infinite;
}
.fmc-flyer-gal-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}
.fmc-flyer-gal-thumb {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    background: #E9EFEC;
    border: 0.5px solid rgba(16,57,72,.06);
}
.fmc-flyer-gal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fmc-flyer-gal-footer {
    font-size: 8px;
    color: #6E7180;
    font-weight: 500;
    margin-top: 6px;
    text-align: center;
}
.fmc-flyer-divider {
    height: 1.5px;
    background: rgba(16,57,72,.08);
    margin: 16px 0;
}
.fmc-flyer-how {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr;
    gap: 12px;
    text-align: left;
}
.fmc-flyer-section-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #1C6B7D;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.fmc-flyer-how-steps-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fmc-flyer-step {
    display: flex;
    gap: 6px;
    font-size: 8.5px;
    color: #6E7180;
    line-height: 1.3;
}
.fmc-flyer-step .num {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #1C6B7D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.fmc-flyer-phone-col {
    display: flex;
    justify-content: center;
    align-items: center;
}
.fmc-flyer-mini-phone {
    width: 82px;
    background: #103948;
    border-radius: 12px;
    padding: 3px;
    box-shadow: 0 8px 18px rgba(16,57,72,.35);
}
.fmc-flyer-phone-bezel {
    background: #fff;
    border-radius: 10px;
    padding: 6px 4px;
}
.fmc-flyer-phone-content {
    text-align: center;
}
.fmc-flyer-phone-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2px;
    color: #103948;
}
.fmc-flyer-phone-heart {
    font-size: 5px;
    color: #1C6B7D;
    margin-bottom: 4px;
}
.fmc-flyer-phone-lbl {
    font-size: 3.5px;
    color: #7A7E8C;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-weight: 500;
}
.fmc-flyer-phone-btn {
    background: #1C6B7D;
    color: #fff;
    font-size: 3.8px;
    padding: 2.5px;
    border-radius: 2px;
    font-weight: 700;
    margin-bottom: 4px;
}
.fmc-flyer-phone-btn.dark {
    background: #103948;
}
.fmc-flyer-phone-mic {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E9EFEC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5px;
    margin: 0 auto 4px;
}
.fmc-flyer-phone-colors {
    display: flex;
    justify-content: center;
    gap: 2.5px;
    margin-bottom: 4px;
}
.fmc-flyer-phone-colors span {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    display: block;
}
.fmc-flyer-product-col {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.fmc-flyer-magnet-card {
    background: #fff;
    border-radius: 8px;
    padding: 3px;
    border: 0.5px solid #efe7da;
    box-shadow: 0 8px 16px -8px rgba(16,57,72,.3);
}
.fmc-flyer-magnet-img-wrap {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 1;
}
.fmc-flyer-magnet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fmc-flyer-magnet-player-overlay {
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(2px);
    border-radius: 4px;
    padding: 3px 4px;
}
.fmc-flyer-magnet-player-overlay .song-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5px;
    font-weight: 700;
    line-height: 1.1;
    color: #103948;
}
.fmc-flyer-magnet-player-overlay .song-artist {
    font-size: 3.2px;
    color: #6E7180;
    margin-top: 0.5px;
}
.fmc-flyer-magnet-player-overlay .song-wave {
    display: flex;
    gap: 0.5px;
    align-items: flex-end;
    height: 5px;
    margin: 2.5px 0;
}
.fmc-flyer-magnet-player-overlay .song-wave span {
    flex: 1;
    background: #103948;
    height: 4px;
    border-radius: 0.2px;
}
.fmc-flyer-magnet-player-overlay .song-controls {
    font-size: 3.8px;
    color: #103948;
    text-align: center;
}
.fmc-flyer-delivery-tag {
    background: #103948;
    color: #fff;
    font-size: 4.5px;
    font-weight: 700;
    padding: 3px;
    border-radius: 2px;
    text-align: center;
    margin-top: 6px;
    letter-spacing: .02em;
}

/* ── Print: output canvas bitmap at exact physical size ── */
@media print {
    body * {
        visibility: hidden !important;
    }

    #fmc-print-sheet,
    #fmc-print-sheet * {
        visibility: visible !important;
    }
    
    #fmc-print-sheet {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        width: var(--fmc-print-w, 22in) !important;
        height: var(--fmc-print-h, 28in) !important;
        overflow: hidden !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    #fmc-print-image {
        display: block !important;
        width: var(--fmc-print-w, 22in) !important;
        height: var(--fmc-print-h, 28in) !important;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: fill !important;
    }

    .fmc-poster-preview-block,
    .fmc-poster-design-divider,
    .fmc-poster-source,
    .no-print {
        display: none !important;
    }
    
    @page {
        size: var(--fmc-print-page, 22in 28in);
        margin: 0;
    }
}

/* =========================================================
   Modern checkout — cleaner form, order review card,
   inline design previews
   ========================================================= */
.woocommerce-checkout .woocommerce {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 16px 60px;
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 32px;
    align-items: start;
}

.woocommerce-checkout form.checkout .col2-set {
    grid-column: 1;
    width: 100%;
    float: none;
}

.woocommerce-checkout form.checkout .col2-set .col-1,
.woocommerce-checkout form.checkout .col2-set .col-2 {
    float: none;
    width: 100%;
    background: #fff;
    border: 1px solid #efe7da;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 18px 40px -30px rgba(16, 57, 72, 0.35);
    margin-bottom: 22px;
    box-sizing: border-box;
}

.woocommerce-checkout form.checkout h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #103948;
    margin: 0 0 16px;
}

.woocommerce-checkout form.checkout #order_review_heading,
.woocommerce-checkout form.checkout #order_review {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    float: none;
}

.woocommerce-checkout form.checkout #order_review_heading {
    align-self: start;
    margin: 0 0 -8px;
    padding: 0 4px;
}

.woocommerce-checkout form.checkout #order_review {
    background: #FAF4EA;
    border: 1px solid #efe7da;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 22px 48px -30px rgba(16, 57, 72, 0.4);
    position: sticky;
    top: 90px;
    margin-top: 40px;
    box-sizing: border-box;
}

.woocommerce-checkout form.checkout .form-row input.input-text,
.woocommerce-checkout form.checkout .form-row textarea,
.woocommerce-checkout form.checkout .form-row select,
.woocommerce-checkout form.checkout .form-row .select2-selection {
    border: 1.5px solid rgba(16, 57, 72, 0.16);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14.5px;
    color: #103948;
    background: #fff;
    min-height: 46px;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.woocommerce-checkout form.checkout .form-row input.input-text:focus,
.woocommerce-checkout form.checkout .form-row textarea:focus,
.woocommerce-checkout form.checkout .form-row select:focus {
    border-color: #1C6B7D;
    box-shadow: 0 0 0 3px rgba(28, 107, 125, 0.14);
    outline: none;
}

.woocommerce-checkout form.checkout .form-row label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1C6B7D;
    margin-bottom: 5px;
}

.woocommerce-checkout table.shop_table {
    border: none;
    border-radius: 12px;
    background: transparent;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
    border-color: rgba(16, 57, 72, 0.08);
    font-size: 14px;
    color: #103948;
    vertical-align: top;
}

.woocommerce-checkout table.shop_table dl.variation {
    margin: 8px 0 0;
    font-size: 12.5px;
    color: #55596A;
}

.woocommerce-checkout table.shop_table dl.variation dt {
    font-weight: 600;
    color: #1C6B7D;
}

.woocommerce-checkout table.shop_table dl.variation img {
    max-width: 140px;
    border-radius: 10px;
    border: 1px solid #e2d5c2;
    box-shadow: 0 10px 22px -14px rgba(16, 57, 72, 0.45);
}

.woocommerce-checkout #payment {
    background: #fff;
    border: 1px solid #efe7da;
    border-radius: 14px;
}

.woocommerce-checkout #payment div.payment_box {
    background: #F1F5F3;
    color: #374151;
    border-radius: 10px;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #F1F5F3;
}

.woocommerce-checkout #place_order {
    width: 100%;
    background: #1C6B7D;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px -14px rgba(28, 107, 125, 0.6);
    transition: background .15s ease, transform .15s ease;
}

.woocommerce-checkout #place_order:hover {
    background: #15515F;
}

.woocommerce-checkout #place_order:active {
    transform: translateY(1px);
}

@media (max-width: 920px) {
    .woocommerce-checkout form.checkout {
        display: block;
    }

    .woocommerce-checkout form.checkout #order_review {
        position: static;
        margin-top: 16px;
    }
}

/* Cart page: rendered design thumbnails */
.woocommerce-cart table.cart td.product-thumbnail img {
    border-radius: 10px;
    border: 1px solid #e2d5c2;
}

/* =========================================================
   GMB Poster Builder (Konva) — event poster pages
   ========================================================= */
.gmb-page {
    background: linear-gradient(180deg, #E9EFEC 0%, #FAF4EA 55%, #F5F0E6 100%);
    padding: 40px 16px 80px;
}

.gmb-builder {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.gmb-header {
    text-align: center;
    max-width: 720px;
}

.gmb-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    color: #103948;
    margin: 0 0 10px;
}

.gmb-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #55596A;
    margin: 0;
}

.gmb-stage-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 16px;
}

.gmb-stage-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(24px, 3.2vw, 34px);
    color: #103948;
    margin: 0 0 8px;
}

.gmb-stage-header p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #55596A;
    margin: 0;
}

.gmb-poster-workspace {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 8px;
    border-top: 1px solid rgba(16, 57, 72, 0.08);
    margin-top: 8px;
}

.gmb-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 20px;
    background: #fff;
    border: 1px solid rgba(16, 57, 72, 0.1);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 14px 30px -22px rgba(16, 57, 72, 0.4);
    width: 100%;
    box-sizing: border-box;
}

.gmb-tool-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.gmb-tool-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1C6B7D;
}

.gmb-select {
    border: 1.5px solid rgba(16, 57, 72, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #103948;
    background: #fff;
    min-width: 220px;
}

.gmb-num {
    width: 74px;
    border: 1.5px solid rgba(16, 57, 72, 0.15);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
    color: #103948;
}

.gmb-custom-size {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #55596A;
}

.gmb-custom-size[hidden] {
    display: none;
}

.gmb-btn {
    cursor: pointer;
    border: none;
    background: #1C6B7D;
    color: #fff;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px -12px rgba(28, 107, 125, 0.55);
    transition: background 0.15s ease, transform 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gmb-btn:hover {
    background: #15515F;
}

.gmb-btn:active {
    transform: translateY(1px);
}

.gmb-btn--ghost {
    background: #fff;
    color: #103948;
    border: 1.5px solid rgba(16, 57, 72, 0.2);
    box-shadow: none;
}

.gmb-btn--ghost:hover {
    background: #F1F5F3;
}

.gmb-btn--dark {
    background: #103948;
}

.gmb-btn--dark:hover {
    background: #0B2A36;
}

.gmb-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    font-size: 13px;
    color: #55596A;
}

.gmb-meta #gmb-meta-size {
    font-weight: 700;
    color: #103948;
}

.gmb-meta #gmb-meta-status {
    color: #1C6B7D;
    font-weight: 600;
}

.gmb-stage-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gmb-stage {
    line-height: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(16, 57, 72, 0.5);
}

.gmb-loading {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #103948;
    background: rgba(250, 244, 234, 0.85);
    z-index: 5;
}

.gmb-loading.is-active {
    display: flex;
}

.gmb-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(28, 107, 125, 0.2);
    border-top-color: #1C6B7D;
    border-radius: 50%;
    animation: fmc-spin 0.8s linear infinite;
}

.gmb-edit-overlay {
    position: absolute;
    z-index: 100000;
    border: 2px dashed #1C6B7D;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    color: #103948;
    padding: 6px 8px;
    resize: none;
    outline: none;
    box-shadow: 0 12px 30px -14px rgba(16, 57, 72, 0.55);
    line-height: 1.2;
}

@media (max-width: 640px) {
    .gmb-page {
        padding: 24px 12px 56px;
    }

    .gmb-toolbar {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .gmb-select {
        min-width: 0;
        width: 100%;
    }

    .gmb-tool-group {
        width: 100%;
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
    }

    .gmb-tool-group .gmb-btn {
        width: 100%;
        justify-content: center;
    }

    .gmb-custom-size {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gmb-meta {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .gmb-stage-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .gmb-stage {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .gmb-header h1 {
        font-size: 26px;
    }

    .gmb-header p {
        font-size: 14px;
    }
}

/* Business card magnet page + canvas (3.5×2″) */
.gbc-page-shell.gmb-page {
    padding: 40px 16px 80px;
}

.gbc-page-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.gbc-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.gbc-hero .fmc-eyebrow {
    color: #1C6B7D;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gbc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 42px);
    color: #103948;
    margin: 0 0 10px;
}

.gbc-hero-sub {
    font-size: 15px;
    line-height: 1.65;
    color: #55596A;
    margin: 0;
}

.gbc-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 22px;
}

.gbc-hero-actions .btnp {
    background: #1C6B7D;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gbc-hero-actions .btnp--ghost {
    background: #fff;
    color: #103948;
    border: 1.5px solid rgba(16, 57, 72, 0.2);
}

.gbc-hero--center {
    padding: 40px 0;
}

.gbc-workspace-shell {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(16, 57, 72, 0.08);
}

.gbc-workspace-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4px;
}

.gbc-workspace-head h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(22px, 3vw, 30px);
    color: #103948;
    margin: 0 0 8px;
}

.gbc-workspace-head p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #55596A;
    margin: 0;
}

.gbc-page .gbc-stage-wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px 4px;
    box-sizing: border-box;
}

.gbc-page .gbc-stage-wrap .gmb-stage {
    margin: 0 auto;
    max-width: 100%;
    border-radius: 2px;
    box-shadow:
        0 22px 48px -30px rgba(16, 57, 72, 0.5),
        0 0 0 1px rgba(198, 162, 76, 0.25);
    background: transparent;
    line-height: 0;
}

.gbc-page .gmb-toolbar {
    width: 100%;
    max-width: 760px;
    box-sizing: border-box;
}

.gbc-page .gmb-meta {
    width: 100%;
    max-width: 760px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.gbc-size-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #EAF2F3;
    color: #103948;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .gbc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gbc-hero-actions .btnp {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .gbc-workspace-shell {
        padding: 18px 14px;
    }
}

@media (max-width: 640px) {
    .gbc-page-shell.gmb-page {
        padding: 28px 12px 56px;
    }

    .gbc-hero h1 {
        font-size: clamp(26px, 7vw, 34px);
    }

    .gbc-page .gbc-stage-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
}

/* =========================================================
   Poster Template (SVG + CSS + JS only)
   ========================================================= */
.gm-poster-template-main,
.gm-poster-page {
    margin: 0;
    padding: 0;
}

.gm-poster-missing {
    margin: 0;
    padding: 2rem;
    text-align: center;
    color: #12384f;
    font-family: "Montserrat", sans-serif;
}

.gm-poster-page {
    --gm-cream-0: #f7f1e5;
    --gm-cream-1: #efe4d0;
    --gm-cream-2: #e2d2b9;
    --gm-gold-1: #ffe6a7;
    --gm-gold-2: #d0a04d;
    --gm-gold-3: #8b5d1c;
    --gm-deep: #0f3b50;
    --gm-deep-2: #0a2434;
    --gm-red: #d9324f;
    --gm-red-soft: #ff95a5;
    --gm-surface-shadow: 0 26px 65px -32px rgba(21, 21, 15, 0.54);

    position: relative;
    isolation: isolate;
    min-height: 100dvh;
    padding: clamp(26px, 4.4vw, 72px) clamp(12px, 3vw, 54px);
    background:
        radial-gradient(120% 72% at 50% 4%, rgba(255, 243, 210, 0.74) 0%, rgba(255, 243, 210, 0) 66%),
        radial-gradient(90% 50% at 8% 34%, rgba(236, 206, 143, 0.2) 0%, rgba(236, 206, 143, 0) 74%),
        radial-gradient(90% 50% at 92% 40%, rgba(239, 208, 146, 0.19) 0%, rgba(239, 208, 146, 0) 72%),
        linear-gradient(160deg, #f4ede1 0%, #efe4d3 33%, #e6d7c0 69%, #ecdcc4 100%);
    overflow: hidden;
}

.gm-poster-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
}

.gm-poster-page::after {
    content: "";
    position: absolute;
    inset: -20% -12%;
    pointer-events: none;
    background:
        radial-gradient(50% 22% at 48% 13%, rgba(255, 239, 181, 0.34) 0%, rgba(255, 239, 181, 0) 74%),
        radial-gradient(40% 24% at 18% 70%, rgba(255, 221, 155, 0.14) 0%, rgba(255, 221, 155, 0) 72%),
        radial-gradient(44% 24% at 82% 72%, rgba(255, 221, 155, 0.14) 0%, rgba(255, 221, 155, 0) 72%);
    filter: blur(2px);
    opacity: 0.96;
}

.gm-poster-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    margin-inline: auto;
    display: flex;
    justify-content: center;
}

.gm-poster {
    position: relative;
    width: min(100%, 840px);
    aspect-ratio: 2 / 3;
    container-name: gm-poster;
    container-type: inline-size;
    filter: drop-shadow(0 24px 42px rgba(34, 25, 7, 0.28));
    will-change: transform;
}

.gm-poster__frame-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.gm-poster__frame-layer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.gm-poster__surface {
    position: absolute;
    z-index: 4;
    inset: 8.52% 9.22% 8.7% 9.22%;
    border-radius: 0.4cqw;
    border: 1px solid rgba(203, 168, 103, 0.78);
    box-shadow: var(--gm-surface-shadow), inset 0 0 0 1px rgba(255, 251, 235, 0.68), inset 0 0 0 6px rgba(221, 200, 161, 0.2);
    background:
        radial-gradient(84% 38% at 50% 4%, rgba(255, 240, 192, 0.62) 0%, rgba(255, 240, 192, 0) 72%),
        radial-gradient(54% 28% at 50% 45%, rgba(254, 243, 204, 0.44) 0%, rgba(254, 243, 204, 0) 70%),
        linear-gradient(180deg, rgba(250, 243, 225, 0.94) 0%, rgba(244, 233, 204, 0.95) 46%, rgba(241, 229, 195, 0.94) 100%);
    padding: clamp(14px, 3.8cqw, 34px) clamp(14px, 3.9cqw, 36px) clamp(12px, 2.9cqw, 28px);
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto;
    row-gap: clamp(7px, 1.35cqw, 16px);
    align-content: start;
    overflow: hidden;
}

.gm-poster__sparkle-layer {
    position: absolute;
    inset: 8.5% 9.2%;
    z-index: 5;
    pointer-events: none;
}

.gm-poster__sparkle {
    position: absolute;
    width: clamp(5px, 1.25cqw, 15px);
    aspect-ratio: 1 / 1;
    opacity: 0;
    transform: scale(var(--twinkle-scale, 1));
    animation: gmTwinkle var(--twinkle-duration, 2.4s) ease-in-out infinite;
    animation-delay: var(--twinkle-delay, 0s);
}

.gm-poster__sparkle::before,
.gm-poster__sparkle::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 233, 164, 0.92) 48%, rgba(201, 142, 53, 0.84) 100%);
    filter: drop-shadow(0 0 6px rgba(255, 228, 145, 0.9));
}

.gm-poster__sparkle::before {
    width: 100%;
    height: 20%;
}

.gm-poster__sparkle::after {
    width: 20%;
    height: 100%;
}

.gm-poster__sparkle--1 { top: 5%; left: 8%; }
.gm-poster__sparkle--2 { top: 6%; right: 8%; }
.gm-poster__sparkle--3 { top: 17%; left: 16%; }
.gm-poster__sparkle--4 { top: 19%; right: 14%; }
.gm-poster__sparkle--5 { top: 28%; left: 10%; }
.gm-poster__sparkle--6 { top: 31%; right: 7%; }
.gm-poster__sparkle--7 { top: 40%; left: 6%; }
.gm-poster__sparkle--8 { top: 44%; right: 12%; }
.gm-poster__sparkle--9 { top: 56%; left: 14%; }
.gm-poster__sparkle--10 { top: 58%; right: 8%; }
.gm-poster__sparkle--11 { top: 66%; left: 8%; }
.gm-poster__sparkle--12 { top: 68%; right: 10%; }
.gm-poster__sparkle--13 { top: 78%; left: 18%; }
.gm-poster__sparkle--14 { top: 80%; right: 18%; }
.gm-poster__sparkle--15 { top: 88%; left: 8%; }
.gm-poster__sparkle--16 { top: 89%; right: 9%; }
.gm-poster__sparkle--17 { top: 51%; left: 49%; }
.gm-poster__sparkle--18 { top: 36%; left: 53%; }

.gm-poster__heart-layer {
    position: absolute;
    inset: 8.4% 9.2%;
    z-index: 6;
    pointer-events: none;
}

.gm-poster__heart {
    position: absolute;
    width: clamp(20px, 4.7cqw, 52px);
    aspect-ratio: 1 / 1;
    opacity: 0.94;
}

.gm-poster__heart--1 { top: 18.8%; left: 7.8%; }
.gm-poster__heart--2 { top: 37%; left: 4.1%; width: clamp(14px, 3.2cqw, 34px); }
.gm-poster__heart--3 { top: 46%; right: 8.2%; width: clamp(16px, 3.9cqw, 38px); }
.gm-poster__heart--4 { top: 25%; right: 6.8%; }
.gm-poster__heart--5 { top: 57%; right: 6.4%; width: clamp(18px, 3.7cqw, 40px); }

.gm-poster__header {
    text-align: center;
}

.gm-poster__kicker {
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.44rem, 1.42cqw, 0.96rem);
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #123d52;
    position: relative;
    line-height: 1.25;
    text-wrap: balance;
}

.gm-poster__kicker::before,
.gm-poster__kicker::after {
    content: "❤";
    color: var(--gm-red);
    font-size: 1.12em;
    position: absolute;
    top: 50%;
    transform: translateY(-48%);
    text-shadow: 0 0 6px rgba(255, 185, 199, 0.84);
}

.gm-poster__kicker::before { left: -1.28em; }
.gm-poster__kicker::after { right: -1.28em; }

.gm-poster__title {
    margin: clamp(3px, 1.1cqw, 10px) auto 0;
    max-width: 100%;
    text-wrap: balance;
    font-family: "Cinzel", serif;
    font-size: clamp(1.24rem, 7.18cqw, 4.3rem);
    line-height: 0.92;
    letter-spacing: 0.018em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #37798b 0%, #2d687c 32%, #10394f 70%, #0d2f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 1px 0 rgba(233, 221, 183, 0.95),
        0 2px 0 rgba(14, 57, 77, 0.28),
        0 8px 16px rgba(20, 30, 41, 0.24);
}

.gm-poster__subtitle {
    margin: clamp(3px, 1.1cqw, 10px) auto 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(0.62rem, 2.48cqw, 1.96rem);
    line-height: 1.06;
    color: #0f2f43;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.36em;
    position: relative;
}

.gm-poster__subtitle-cursive {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.14em;
    color: #143951;
}

.gm-poster__subtitle-sparkle {
    width: 0.95em;
    height: 0.95em;
    margin-left: 0.16em;
    transform: translateY(-0.1em);
}

.gm-poster__event-name,
.gm-poster__poster-names {
    margin: clamp(3px, 0.9cqw, 8px) 0 0;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 600;
    color: #1a4f66;
}

.gm-poster__event-name {
    font-size: clamp(0.46rem, 1.52cqw, 0.95rem);
}

.gm-poster__poster-names {
    font-size: clamp(0.44rem, 1.4cqw, 0.84rem);
    letter-spacing: 0.08em;
    line-height: 1.25;
}

.gm-poster__banner {
    margin: 0;
    padding: clamp(8px, 1.7cqw, 16px) clamp(12px, 2.2cqw, 22px);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(0.56rem, 2.12cqw, 1.34rem);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.23;
    letter-spacing: 0.04em;
    color: #f2f8fc;
    border-radius: clamp(8px, 1.3cqw, 16px);
    border: 2px solid rgba(200, 164, 92, 0.82);
    background:
        linear-gradient(180deg, rgba(20, 93, 114, 0.96) 0%, rgba(11, 65, 86, 0.98) 56%, rgba(8, 52, 71, 0.98) 100%);
    box-shadow:
        0 8px 18px -8px rgba(15, 40, 54, 0.6),
        inset 0 0 0 1px rgba(255, 241, 206, 0.22),
        inset 0 1px 7px rgba(120, 212, 230, 0.2);
}

.gm-poster__main-grid {
    display: grid;
    grid-template-columns: 1.08fr 1.2fr 1fr;
    gap: clamp(8px, 1.4cqw, 16px);
    align-items: center;
}

.gm-poster__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(8px, 1.45cqw, 15px);
}

.gm-poster__feature-item {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2cqw, 11px);
}

.gm-poster__feature-icon {
    width: clamp(22px, 4.8cqw, 46px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(120% 120% at 30% 20%, #fff8df 0%, #f7e0a8 44%, #e0b667 86%);
    box-shadow:
        0 0 0 1px rgba(187, 140, 58, 0.7),
        0 7px 13px -8px rgba(18, 40, 52, 0.7),
        0 0 18px rgba(255, 231, 172, 0.74);
    color: #0f4e62;
    flex: 0 0 auto;
}

.gm-poster__icon-lucide,
.gm-poster__icon-fallback {
    width: clamp(13px, 2.36cqw, 24px);
    height: clamp(13px, 2.36cqw, 24px);
}

.gm-poster__icon-fallback {
    display: block;
}

.gm-poster--lucide-ready .gm-poster__icon-fallback {
    display: none;
}

.gm-poster:not(.gm-poster--lucide-ready) .gm-poster__icon-lucide {
    display: none;
}

.gm-poster__feature-text {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.5rem, 1.8cqw, 1.1rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #102b3c;
    white-space: normal;
}

.gm-poster__qr-column {
    display: grid;
    justify-items: center;
    gap: clamp(4px, 1.02cqw, 10px);
}

.gm-poster__qr-shell {
    position: relative;
    width: 100%;
    max-width: clamp(124px, 24.8cqw, 236px);
    padding: clamp(6px, 1.28cqw, 14px);
    border-radius: clamp(10px, 1.75cqw, 18px);
    background:
        linear-gradient(160deg, rgba(255, 246, 220, 0.95), rgba(248, 229, 185, 0.92));
    border: 2px solid rgba(205, 166, 91, 0.9);
    box-shadow:
        0 12px 24px -14px rgba(18, 40, 54, 0.65),
        inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.gm-poster__qr-glow {
    position: absolute;
    inset: -12%;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(255, 236, 170, 0.63) 0%, rgba(255, 236, 170, 0) 72%);
    filter: blur(4px);
}

.gm-poster__qr {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: clamp(8px, 1.2cqw, 14px);
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(15, 34, 49, 0.22);
}

.gm-poster__qr svg,
.gm-poster__qr canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.gm-poster__qr-fallback {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.48rem, 1.45cqw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #12384f;
}

.gm-poster__scan-label {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(0.76rem, 2.35cqw, 1.74rem);
    color: #12445c;
    transform: rotate(-9deg) translateX(0.24em);
    text-shadow: 0 1px 0 rgba(255, 243, 208, 0.9), 0 3px 10px rgba(11, 32, 46, 0.18);
}

.gm-poster__quote-wrap {
    display: grid;
    align-content: center;
}

.gm-poster__quote {
    position: relative;
    padding: clamp(8px, 1.2cqw, 13px);
    border-radius: clamp(7px, 1.05cqw, 14px);
    background:
        linear-gradient(180deg, rgba(255, 247, 221, 0.76), rgba(251, 237, 197, 0.6));
    box-shadow: inset 0 0 0 1px rgba(215, 179, 106, 0.5);
}

.gm-poster__quote p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: #1a2f40;
    font-size: clamp(0.54rem, 1.96cqw, 1.12rem);
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
}

.gm-poster__quote-sparkle {
    width: clamp(10px, 2.1cqw, 20px);
    height: clamp(10px, 2.1cqw, 20px);
    position: absolute;
    top: clamp(-6px, -1cqw, -2px);
    right: clamp(-6px, -1cqw, -2px);
}

.gm-poster__showcase-title {
    margin: 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: clamp(0.57rem, 1.8cqw, 1.2rem);
    color: #163f55;
    font-weight: 600;
}

.gm-poster__carousel-wrap {
    min-width: 0;
}

.gm-poster__carousel.swiper {
    width: 100%;
    overflow: visible;
}

.gm-poster__carousel .swiper-wrapper {
    align-items: stretch;
}

.gm-card {
    height: auto;
    border-radius: clamp(8px, 1.15cqw, 14px);
    overflow: hidden;
    background: #14171d;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 10px 18px -12px rgba(0, 0, 0, 0.62),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    display: grid;
}

.gm-card__media {
    aspect-ratio: 0.96 / 0.73;
    overflow: hidden;
}

.gm-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.gm-card__overlay {
    position: relative;
    margin-top: -1px;
    padding: clamp(4px, 0.9cqw, 8px);
    background:
        linear-gradient(180deg, rgba(10, 12, 18, 0.95), rgba(3, 4, 8, 0.96));
    color: #fff;
    display: grid;
    gap: clamp(2px, 0.4cqw, 4px);
}

.gm-card__meta {
    min-height: clamp(18px, 3.8cqw, 36px);
}

.gm-card__title,
.gm-card__artist {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gm-card__title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.42rem, 1.16cqw, 0.72rem);
    line-height: 1.24;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.gm-card__artist {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.38rem, 1.02cqw, 0.62rem);
    line-height: 1.2;
    color: rgba(227, 233, 240, 0.82);
    letter-spacing: 0.01em;
}

.gm-card__controls {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.32rem, 0.86cqw, 0.52rem);
    letter-spacing: 0.08em;
    color: rgba(237, 244, 250, 0.84);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gm-poster__cta {
    justify-self: center;
    width: min(100%, clamp(210px, 72%, 560px));
    border: 0;
    border-radius: 999px;
    padding: clamp(7px, 1.35cqw, 15px) clamp(15px, 2.7cqw, 32px);
    background:
        linear-gradient(180deg, rgba(28, 116, 139, 0.98) 0%, rgba(10, 76, 101, 0.98) 58%, rgba(7, 59, 81, 0.98) 100%);
    box-shadow:
        0 13px 22px -14px rgba(15, 45, 61, 0.85),
        0 0 0 2px rgba(214, 176, 101, 0.86),
        inset 0 0 0 1px rgba(255, 240, 202, 0.32),
        inset 0 3px 10px rgba(138, 213, 229, 0.22);
    color: #f4fafc;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.4cqw, 14px);
    cursor: pointer;
    transition: transform 220ms ease, filter 220ms ease;
    will-change: transform;
}

.gm-poster__cta:hover {
    transform: translateY(-1px) scale(1.008);
    filter: brightness(1.04);
}

.gm-poster__cta:active {
    transform: translateY(1px) scale(0.997);
}

.gm-poster__cta-icon {
    width: clamp(15px, 2.5cqw, 26px);
    height: clamp(15px, 2.5cqw, 26px);
    display: grid;
    place-items: center;
}

.gm-poster__cta-text {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.58rem, 2.04cqw, 1.38rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.15;
}

.gm-poster__hint {
    margin: 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #243747;
    font-size: clamp(0.47rem, 1.46cqw, 0.96rem);
    line-height: 1.24;
    letter-spacing: 0.015em;
}

.gm-poster [contenteditable="true"] {
    outline: none;
}

.gm-poster [contenteditable="true"]:focus-visible {
    outline: 2px dashed rgba(17, 90, 114, 0.65);
    outline-offset: 2px;
    border-radius: 3px;
}

@keyframes gmTwinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(calc(var(--twinkle-scale, 1) * 0.72));
    }
    50% {
        opacity: 0.94;
        transform: scale(var(--twinkle-scale, 1));
    }
}

@container gm-poster (max-width: 780px) {
    .gm-poster__surface {
        inset: 8.64% 9.1% 8.8% 9.1%;
        row-gap: clamp(7px, 1.15cqw, 12px);
    }

    .gm-poster__main-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: clamp(7px, 1.05cqw, 10px);
    }

    .gm-card__controls {
        letter-spacing: 0.05em;
    }
}

@container gm-poster (max-width: 620px) {
    .gm-poster__surface {
        inset: 8.85% 9.1% 8.95% 9.1%;
    }

    .gm-poster__kicker {
        letter-spacing: 0.28em;
    }

    .gm-poster__main-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .gm-poster__features {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(6px, 1cqw, 9px);
    }

    .gm-poster__feature-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .gm-poster__feature-text {
        font-size: clamp(0.45rem, 1.2cqw, 0.54rem);
    }

    .gm-poster__quote-wrap {
        width: 100%;
    }

    .gm-poster__quote p {
        font-size: clamp(0.54rem, 1.45cqw, 0.66rem);
    }

    .gm-poster__cta {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .gm-poster-page {
        padding: 20px 12px 32px;
    }
}

