/* TIP Hypnosis Website - Final Stylesheet */

:root {
    --harvest-gold: #C9952A;
    --deep-purple: #4A2259;
    --rich-black: #111111;
    --pure-white: #FAF7F2;
    --light-gold: #EDE3D0;
    --accent-purple: #6E3A7A;
    --soft-cream: #F5F0E8;
    --warm-gray: #2A2A2A;
    /* Dark mode surfaces */
    --dark-bg: #0E0A18;
    --dark-surface: #16112A;
    --dark-card: #1F1936;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Aptos', 'Calibri', 'Helvetica Neue', sans-serif;
    color: var(--pure-white);
    font-size: 1.05rem;
    line-height: 1.65;
    overflow-x: hidden;
    background-color: var(--dark-bg);
}

/* ========== FOCUS & ACCESSIBILITY ========== */
:focus-visible {
    outline: 2px solid var(--harvest-gold);
    outline-offset: 3px;
}

::selection {
    background: var(--harvest-gold);
    color: var(--rich-black);
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background: transparent;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 2rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo-section > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 75px;
}

.logo-section:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 12px rgba(201, 149, 42, 0.3));
}

.logo-section img {
    height: 75px;
    width: auto;
    border-radius: 6px;
    border: 2px solid rgba(201, 149, 42, 0.5);
    box-shadow: 0 2px 12px rgba(201, 149, 42, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    animation: logoPulse 4s ease-in-out infinite;
}

.logo-section:hover img {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(201, 149, 42, 0.5);
    border-color: var(--harvest-gold);
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(201, 149, 42, 0.25); }
    50% { box-shadow: 0 2px 20px rgba(201, 149, 42, 0.45); }
}

.site-title {
    color: var(--harvest-gold);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    animation: titleRadiance 4s ease-in-out infinite;
}

@keyframes titleRadiance {
    0%, 100% {
        text-shadow:
            0 0 6px rgba(201, 149, 42, 0.4),
            0 0 12px rgba(201, 149, 42, 0.2);
    }
    50% {
        text-shadow:
            0 0 10px rgba(201, 149, 42, 0.7),
            0 0 25px rgba(201, 149, 42, 0.4),
            0 0 45px rgba(201, 149, 42, 0.2);
    }
}

.subtitle {
    font-size: 1rem;
    color: var(--light-gold);
    font-style: italic;
    margin-top: 0.3rem;
    letter-spacing: 1.5px;
    animation: subtitleFade 4s ease-in-out infinite;
}

@keyframes subtitleFade {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.contact-info {
    text-align: right;
    color: var(--pure-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.phone {
    font-size: 2rem;
    font-weight: 600;
    color: var(--harvest-gold);
    letter-spacing: 1px;
}

.phone a {
    color: var(--harvest-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone a:hover {
    text-decoration: underline;
}

.hours {
    font-size: 0.95rem;
    color: var(--light-gold);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--harvest-gold);
    color: var(--harvest-gold);
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    font-family: inherit;
    transition: background 0.3s ease, color 0.3s ease;
}

.menu-toggle:hover {
    background: var(--harvest-gold);
    color: var(--rich-black);
}

nav {
    margin-top: 1rem;
    border-top: 1px solid rgba(201, 149, 42, 0.4);
    padding: 1rem 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

nav a:hover {
    color: var(--harvest-gold);
}

nav a.active {
    color: var(--harvest-gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--harvest-gold);
    transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

nav a.nav-tiptv {
    background: linear-gradient(to right, #8be0b0, #7ab4dc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7));
}

nav a.nav-tiptv:hover,
nav a.nav-tiptv.active {
    background: linear-gradient(to right, #a8ecc5, #9dcbe8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.8));
}

/* Award Banner — sits at the top of the floating header */
.award-banner {
    background: rgba(201, 149, 42, 0.85);
    text-align: center;
    padding: 0.6rem 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--rich-black);
    font-size: 1.05rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ========== MAIN CONTENT ========== */
main {
    min-height: 60vh;
}


section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.6rem;
    color: var(--harvest-gold);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.35rem;
    color: var(--harvest-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

/* ========== PAGE BANNER ========== */
.page-banner {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.page-banner-container {
    position: relative;
    overflow: hidden;
    height: 380px;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--warm-gray) 100%);
}

.page-banner-container .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 275px;
}

.page-banner-container .banner-overlay h2 {
    color: var(--harvest-gold);
    font-size: 3rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-weight: 700;
}

/* ========== HERO SECTION - HOME PAGE ========== */
.hero {
    position: relative;
    min-height: 85vh;
    max-width: 100%;
    width: 100%;
    background: url('../images/Homepage_Background_Image.webp') center center / cover no-repeat;
    background-color: var(--warm-gray);
    padding: 390px 2rem 5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

/* Darken just the header zone so floating text stays readable */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 310px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.triangle-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-centerpiece {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.award-trophy {
    width: 240px;
    height: auto;
    opacity: 0.85;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.6));
    animation: awardPulse 3s ease-in-out infinite;
}

@keyframes awardPulse {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(218, 165, 32, 0.5)); opacity: 0.85; }
    50% { filter: drop-shadow(0 0 45px rgba(218, 165, 32, 0.8)); opacity: 0.95; }
}

/* TIP Boxes - Glassmorphism cards */
.tip-box {
    background: rgba(10, 6, 20, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 149, 42, 0.3);
    border-top: 2px solid var(--harvest-gold);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 380px;
    position: relative;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 149, 42, 0.08) inset;
}

.tip-box:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 149, 42, 0.6);
    border-top-color: var(--harvest-gold);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 149, 42, 0.1);
}

.tip-box.left {
    animation-delay: 0.3s;
}

.tip-box.right {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
    }
}

.tip-box h3 {
    color: var(--harvest-gold);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 149, 42, 0.25);
}

.tip-box p, .tip-box ul {
    color: var(--pure-white);
    font-size: 1.05rem;
    line-height: 1.8;
}

.tip-box ul {
    list-style: none;
    padding-left: 0;
}

.tip-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 149, 42, 0.12);
}

.tip-box li:last-child {
    border-bottom: none;
}

.tip-box li::before {
    content: '\2713 ';
    color: var(--harvest-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.hero-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* ========== MEDIA LOGOS SECTION ========== */
.media-section {
    background: var(--warm-gray);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.media-section h2 {
    color: var(--harvest-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.media-logos img {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.media-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ========== ABOUT / MEET FOUNDER ========== */
.about-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-image {
    position: sticky;
    top: 200px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 4px solid var(--harvest-gold);
}

.quote-callout {
    background: var(--deep-purple);
    color: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.35rem;
    font-style: italic;
    text-align: center;
    box-shadow: 0 5px 20px rgba(91, 44, 111, 0.3);
    border-left: 5px solid var(--harvest-gold);
}

.quote-callout p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.bio-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--pure-white);
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.bio-text h3 {
    color: var(--harvest-gold);
    font-size: 1.9rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bio-text ul {
    list-style: none;
    padding-left: 1.5rem;
}

.bio-text li {
    margin-bottom: 0.5rem;
}

.bio-text li::before {
    content: '\2022 ';
    color: var(--harvest-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Core Truths */
.core-truths {
    background: var(--light-gold);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 5px solid var(--deep-purple);
}

.core-truths h3 {
    color: var(--harvest-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.core-truths ol {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.core-truths li {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Media Appearances Gallery */
.media-appearances {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--warm-gray);
    border-radius: 15px;
}

.media-appearances h3 {
    color: var(--harvest-gold);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.media-gallery-item {
    text-align: center;
}

.media-gallery-item img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    border: 3px solid var(--harvest-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.media-gallery-item img:hover {
    transform: scale(1.03);
}

.media-gallery-item p {
    color: var(--light-gold);
    margin-top: 1rem;
    font-size: 1.15rem;
    font-style: italic;
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.credential-box {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--deep-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 34, 89, 0.15);
}

.credential-box h3 {
    color: var(--harvest-gold);
    font-size: 1.55rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.credential-box ul {
    list-style: none;
}

.credential-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.credential-box li::before {
    content: '\25C6';
    color: var(--harvest-gold);
    position: absolute;
    left: 0;
}

/* Services page banner - show more of the person/face */
.services-page-banner {
    height: 550px;
    object-position: center 15%;
}

/* ========== SERVICES PAGE ========== */
.services-banner {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-intro {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-category {
    background: var(--dark-surface);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.service-category h3 {
    color: var(--harvest-gold);
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.service-item {
    margin-bottom: 1.5rem;
}

.service-item h4 {
    color: var(--harvest-gold);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-item p {
    color: var(--pure-white);
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-choose {
    background: var(--deep-purple);
    color: var(--pure-white);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.why-choose h3 {
    font-size: 2rem;
    color: var(--harvest-gold);
    margin-bottom: 2rem;
    font-weight: 700;
}

.why-choose p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* ========== EVENTS PAGE ========== */
.events-list {
    background: var(--light-gold);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.event-item {
    background: var(--dark-surface);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--deep-purple);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(74, 34, 89, 0.15);
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-item h3 {
    color: var(--harvest-gold);
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Events Photo Gallery */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.events-gallery-item {
    text-align: center;
}

.events-gallery-item img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    border: 3px solid var(--harvest-gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.events-gallery-item img:hover {
    transform: scale(1.03);
}

.events-gallery-item p {
    margin-top: 0.75rem;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--harvest-gold);
}

/* Media Booking */
.media-booking {
    background: var(--warm-gray);
    color: var(--pure-white);
    padding: 3rem;
    border-radius: 15px;
}

.media-booking h3 {
    color: var(--harvest-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.media-booking p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.media-booking strong {
    color: var(--harvest-gold);
}

.media-booking a {
    color: var(--pure-white);
    text-decoration: none;
}

.media-booking a:hover {
    color: var(--harvest-gold);
}

.media-booking .note {
    font-style: italic;
    color: var(--light-gold);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--harvest-gold);
}

/* ========== CONTACT PAGE ========== */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-quote {
    background: var(--deep-purple);
    color: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    font-size: 1.35rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
    border-left: 5px solid var(--harvest-gold);
}

.contact-steps {
    background: var(--light-gold);
    padding: 3rem;
    border-radius: 15px;
}

.contact-steps h3 {
    color: var(--harvest-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.step {
    background: var(--dark-surface);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--harvest-gold);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(201, 149, 42, 0.15);
}

.step:last-child {
    margin-bottom: 0;
}

.step .phone-link {
    color: var(--harvest-gold);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.step .phone-link:hover {
    text-decoration: underline;
}

.step h4 {
    color: var(--harvest-gold);
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step p {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ========== MEDIA PAGE ========== */
/* Press Bio */
.press-bio {
    background: var(--light-gold);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.press-bio h3 {
    color: var(--harvest-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.press-bio-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.press-bio-image img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--harvest-gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.press-bio-text {
    color: var(--rich-black);
}

.press-bio-text h4 {
    color: var(--harvest-gold);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.press-bio-text h4:first-child {
    margin-top: 0;
}

.press-bio-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.press-bio-text ul {
    list-style: none;
    padding-left: 0;
}

.press-bio-text li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.press-bio-text li::before {
    content: '\25C6';
    color: var(--harvest-gold);
    position: absolute;
    left: 0;
}

/* Media Contact Info */
.media-contact-info {
    background: var(--deep-purple);
    color: var(--pure-white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.media-contact-info h3 {
    color: var(--harvest-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.media-contact-info p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.media-contact-info strong {
    color: var(--harvest-gold);
}

/* Media Credentials Grid */
.media-credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.media-credential-card {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    padding: 1.75rem;
    border-radius: 12px;
    border-left: 4px solid var(--deep-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.media-credential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(74, 34, 89, 0.15);
}

.media-credential-icon {
    color: var(--harvest-gold);
    margin-bottom: 0.75rem;
}

.media-credential-card h4 {
    color: var(--harvest-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.media-credential-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--pure-white);
}

/* PDF Download Section */
.pdf-download-section {
    margin: 3rem 0;
}

.pdf-download-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pdf-download-header h3 {
    color: var(--harvest-gold);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pdf-download-header p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--pure-white);
}

.pdf-download-header a {
    color: var(--harvest-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pdf-download-header a:hover {
    color: var(--harvest-gold);
    text-decoration: underline;
}

.pdf-download-card {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--deep-purple) 100%);
    border-radius: 15px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: 2px solid var(--harvest-gold);
    box-shadow: 0 10px 40px rgba(74, 34, 89, 0.25);
}

.pdf-download-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    background: rgba(201, 149, 42, 0.08);
    border: 2px solid rgba(201, 149, 42, 0.4);
    border-radius: 15px;
    padding: 1.5rem 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.pdf-download-link:hover {
    background: rgba(201, 149, 42, 0.18);
    border-color: var(--harvest-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(201, 149, 42, 0.3);
}

.pdf-icon-wrapper {
    position: relative;
    width: 72px;
    height: 90px;
    flex-shrink: 0;
}

.pdf-icon-svg {
    width: 72px;
    height: 90px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pdf-download-link:hover .pdf-icon-svg {
    transform: scale(1.05);
}

.pdf-download-arrow {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    background: var(--harvest-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    animation: downloadBounce 2s ease-in-out infinite;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.pdf-download-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pdf-download-title {
    color: var(--harvest-gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pdf-download-subtitle {
    color: var(--light-gold);
    font-size: 1.05rem;
    font-style: italic;
}

.pdf-download-instructions {
    background: rgba(250, 247, 242, 0.06);
    border: 1px solid rgba(201, 149, 42, 0.25);
    border-radius: 10px;
    padding: 1.75rem 2rem;
    width: 100%;
    max-width: 550px;
}

.pdf-download-instructions p {
    color: var(--harvest-gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.pdf-download-instructions ol {
    padding-left: 1.5rem;
    color: var(--pure-white);
}

.pdf-download-instructions li {
    padding: 0.35rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.pdf-download-instructions a {
    color: var(--harvest-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pdf-download-instructions a:hover {
    text-decoration: underline;
}

/* Media Resources Section */
.media-resources-section {
    background: var(--light-gold);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.media-resources-section h3 {
    color: var(--harvest-gold);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.media-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.media-resource-item {
    background: var(--dark-surface);
    padding: 1.75rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.media-resource-item:hover {
    border-color: var(--harvest-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 149, 42, 0.15);
}

.media-resource-icon {
    color: var(--harvest-gold);
    margin-bottom: 0.75rem;
}

.media-resource-item h4 {
    color: var(--harvest-gold);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.media-resource-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pure-white);
}

.media-resource-item a {
    color: var(--harvest-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.media-resource-item a:hover {
    color: var(--harvest-gold);
    text-decoration: underline;
}

/* Booking Form (retained for potential future use) */
.booking-form-section {
    background: var(--light-gold);
    padding: 3rem;
    border-radius: 15px;
}

.booking-form-section h3 {
    color: var(--harvest-gold);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--harvest-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--harvest-gold);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.05rem;
    background: var(--dark-surface);
    color: var(--pure-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--harvest-gold);
    box-shadow: 0 0 0 3px rgba(74, 34, 89, 0.15);
}

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

.form-group select {
    cursor: pointer;
    appearance: auto;
}

/* ========== WHITE PAPER SECTION ========== */
.white-paper-section {
    background: linear-gradient(160deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    padding: 4rem 2rem;
    max-width: 100%;
    width: 100%;
}

.white-paper-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.white-paper-text {
    flex: 1;
    min-width: 0;
}

.white-paper-label {
    color: var(--harvest-gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.white-paper-title {
    color: var(--harvest-gold);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.white-paper-subtitle {
    color: var(--harvest-gold);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.white-paper-author {
    color: var(--harvest-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.white-paper-description {
    color: var(--pure-white);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.white-paper-cta {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
}

.white-paper-image-link {
    flex-shrink: 0;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
}

.white-paper-image-link:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 34, 89, 0.25);
}

.white-paper-image {
    width: 300px;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 3px solid var(--harvest-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ========== BUTTONS ========== */
.cta-button {
    display: inline-block;
    background: var(--harvest-gold);
    color: var(--pure-white);
    padding: 1.25rem 3rem;
    font-size: 1.35rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--deep-purple);
    color: var(--harvest-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(91, 44, 111, 0.4);
}

.center {
    text-align: center;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--deep-purple) 100%);
    color: var(--pure-white);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 2px solid var(--harvest-gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.footer-info a {
    color: var(--harvest-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-info strong {
    color: var(--harvest-gold);
}

.disclaimer {
    font-size: 1rem;
    color: var(--light-gold);
    font-style: italic;
    line-height: 1.7;
    max-width: 900px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 149, 42, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    .media-gallery {
        grid-template-columns: 1fr;
    }

    .press-bio-content {
        grid-template-columns: 1fr;
    }

    .press-bio-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .media-credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .media-resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .white-paper-container {
        gap: 2.5rem;
    }

    .white-paper-image {
        width: 250px;
    }

    .white-paper-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 310px 1.5rem 4rem;
    }

    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .menu-toggle {
        display: block;
        margin: 0.5rem auto 0;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .award-trophy {
        width: 150px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .tip-box {
        max-width: 100%;
        transform: rotate(0deg) !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .events-gallery {
        grid-template-columns: 1fr;
    }

    .award-banner {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .page-banner {
        height: 180px;
    }

    .services-page-banner {
        height: 250px;
    }

    .page-banner-container .banner-overlay h2 {
        font-size: 2rem;
    }

    .site-title {
        font-size: 1.3rem;
    }

    .media-logos {
        gap: 1.5rem;
    }

    .media-logos img {
        height: 40px;
    }

    .media-booking,
    .events-list,
    .contact-steps,
    .why-choose,
    .press-bio,
    .booking-form-section,
    .media-contact-info,
    .media-resources-section,
    .pdf-download-card {
        padding: 2rem 1.5rem;
    }

    .media-credentials-grid {
        grid-template-columns: 1fr;
    }

    .media-resources-grid {
        grid-template-columns: 1fr;
    }

    .pdf-download-link {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }

    .pdf-download-header h3 {
        font-size: 1.8rem;
    }

    .white-paper-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .white-paper-image {
        width: 240px;
    }

    .white-paper-title {
        font-size: 2rem;
    }

    .white-paper-section {
        padding: 3rem 1.5rem;
    }

    .quote-callout {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .contact-quote {
        font-size: 1.1rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .award-trophy {
        width: 90px;
    }

    .hero {
        padding: 255px 1rem 3rem;
        min-height: 85vh;
    }

    section {
        padding: 2rem 1rem;
    }

    .site-title {
        font-size: 1.1rem;
    }

    .logo-section img {
        height: 45px;
    }

    .logo-section > div {
        height: 45px;
    }

    .tip-box {
        padding: 1.5rem;
    }

    .tip-box h3 {
        font-size: 1.5rem;
    }

    .tip-box p, .tip-box ul {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .credential-box {
        padding: 1.5rem;
    }

    .media-appearances {
        padding: 2rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .events-gallery {
        grid-template-columns: 1fr;
    }

    .media-booking,
    .events-list,
    .contact-steps,
    .why-choose,
    .press-bio,
    .booking-form-section,
    .media-contact-info,
    .media-resources-section,
    .pdf-download-card {
        padding: 1.5rem 1rem;
    }

    .media-appearances {
        padding: 1.5rem 1rem;
    }

    .pdf-download-title {
        font-size: 1.25rem;
    }

    .pdf-icon-wrapper {
        width: 56px;
        height: 70px;
    }

    .pdf-icon-svg {
        width: 56px;
        height: 70px;
    }

    .pdf-download-arrow {
        width: 26px;
        height: 26px;
    }

    .pdf-download-arrow svg {
        width: 16px;
        height: 16px;
    }

    .pdf-download-instructions {
        padding: 1.25rem 1rem;
    }

    .media-credential-card {
        padding: 1.25rem;
    }

    .white-paper-image {
        width: 200px;
    }

    .white-paper-title {
        font-size: 1.65rem;
    }

    .white-paper-subtitle {
        font-size: 1.1rem;
    }

    .white-paper-description {
        font-size: 1rem;
    }

    .white-paper-section {
        padding: 2.5rem 1rem;
    }

    .white-paper-cta {
        padding: 0.85rem 2rem;
        font-size: 1.05rem;
    }

    .contact-quote {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }

    .page-banner {
        height: 140px;
    }

    .services-page-banner {
        height: 200px;
    }

    .page-banner-container .banner-overlay h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .award-banner {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        padding: 0.5rem;
    }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--deep-purple);
    color: var(--harvest-gold);
    border: 2px solid var(--harvest-gold);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.back-to-top.visible {
    opacity: 0.85;
    visibility: visible;
}

.back-to-top:hover {
    opacity: 1;
    background: var(--harvest-gold);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 149, 42, 0.4);
}

@media (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
}

/* ========== STORE PAGE ========== */

/* Free Downloads Section */
.free-downloads-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 4rem;
}

.free-downloads-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.free-downloads-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--harvest-gold);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.free-downloads-header p {
    font-size: 1.1rem;
    color: var(--pure-white);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.free-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Free Download Card */
.free-download-card {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
}

.free-download-card::before {
    content: 'FREE';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--harvest-gold);
    color: var(--pure-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(201, 149, 42, 0.35);
}

.free-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(74, 34, 89, 0.15);
}

.free-download-card .product-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-download-card .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.free-download-card:hover .product-card-image img {
    transform: scale(1.05);
}

.free-download-card .product-card-body {
    padding: 1.5rem;
}

.free-download-card .product-card-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.free-download-card .product-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--harvest-gold);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.free-download-card .product-card-description {
    font-size: 0.9rem;
    color: var(--pure-white);
    opacity: 0.75;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: var(--deep-purple);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.download-btn:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 34, 89, 0.35);
}

.download-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .free-downloads-section {
        padding: 2.5rem 1.5rem;
    }

    .free-downloads-header h2 {
        font-size: 1.6rem;
    }

    .free-downloads-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .free-downloads-section {
        padding: 2rem 1rem;
    }

    .free-downloads-header h2 {
        font-size: 1.4rem;
    }
}

/* Store Banner */
.store-banner {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--warm-gray) 100%);
    padding: 275px 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.store-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 149, 42, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.store-banner-content {
    position: relative;
    z-index: 1;
}

.store-banner h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--harvest-gold);
    letter-spacing: 4px;
    margin-bottom: 0.75rem;
}

.store-banner p {
    font-size: 1.2rem;
    color: var(--pure-white);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Category Filters */
.store-filters {
    background: var(--dark-surface);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gold);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.65rem 1.8rem;
    border: 2px solid var(--harvest-gold);
    background: transparent;
    color: var(--harvest-gold);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--harvest-gold);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(201, 149, 42, 0.35);
}

/* Product Grid */
.store-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Product Card */
.product-card {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(74, 34, 89, 0.15);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--harvest-gold);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card-description {
    font-size: 0.9rem;
    color: var(--pure-white);
    opacity: 0.75;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--harvest-gold);
}

.add-to-cart-btn {
    padding: 0.6rem 1.4rem;
    background: var(--harvest-gold);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 149, 42, 0.4);
}

.add-to-cart-btn.added {
    background: var(--deep-purple);
    color: var(--pure-white);
}

/* Product Skeleton Loaders */
.product-skeleton {
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    border-radius: 10px;
    overflow: hidden;
}

.skeleton-img {
    width: 100%;
    height: 260px;
    background: linear-gradient(90deg, var(--dark-card) 25%, var(--dark-surface) 50%, var(--dark-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 1rem;
    margin: 1.5rem 1.5rem 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--dark-card) 25%, var(--dark-surface) 50%, var(--dark-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text.short {
    width: 40%;
    margin-bottom: 1.5rem;
    margin-top: 0.75rem;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty State */
.store-empty {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.store-empty h3 {
    font-size: 1.5rem;
    color: var(--harvest-gold);
    margin-bottom: 0.75rem;
}

.store-empty p {
    color: var(--pure-white);
    opacity: 0.7;
}

/* Store Error */
.store-error {
    text-align: center;
    padding: 3rem 2rem;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    border-radius: 10px;
    border-left: 5px solid var(--harvest-gold);
}

.store-error p {
    color: var(--harvest-gold);
    font-weight: 500;
}

/* ---- Product Detail Modal ---- */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal.open {
    visibility: visible;
    opacity: 1;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.product-modal-content {
    position: relative;
    background: var(--dark-card);
    border-radius: 14px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-modal.open .product-modal-content {
    transform: translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--dark-surface);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--pure-white);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.product-modal-close:hover {
    background: var(--light-gold);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.product-modal-image {
    background: var(--dark-surface);
    border-radius: 14px 0 0 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Pool container — takes the space the old <img> occupied */
.modal-image-pool {
    width: 100%;
    flex: 1;
    position: relative;
    min-height: 320px;
    max-height: 420px;
    background: #e8e8e8;
    overflow: hidden;
}

/* All pool images stacked absolutely; only .pool-active is visible */
.modal-pool-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    /* No CSS transition — GPU compositor flips in one frame, truly instant */
}
.modal-pool-img.pool-active {
    opacity: 1;
}

/* Pre-built thumbnail strips, one per color */
.modal-thumb-strips {
    background: var(--dark-surface);
}
.modal-thumb-strip {
    display: none;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.75rem;
    overflow-x: auto;
    scrollbar-width: thin;
}
.modal-thumb-strip.strip-active {
    display: flex;
}

.modal-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    overflow-x: auto;
    background: var(--dark-surface);
    scrollbar-width: thin;
}

.modal-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.12);
    transition: border-color 0.2s ease, opacity 0.2s ease;
    background: #e8e8e8;
    position: relative;
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.modal-thumb:hover {
    border-color: var(--harvest-gold);
}

.modal-thumb.active {
    border-color: var(--harvest-gold);
    box-shadow: 0 0 0 1px var(--harvest-gold);
}

.modal-thumb.dimmed {
    opacity: 0.35;
}

.product-modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--harvest-gold);
    line-height: 1.35;
}

.product-modal-description {
    font-size: 0.9rem;
    color: var(--pure-white);
    opacity: 0.75;
    line-height: 1.6;
    flex-shrink: 0;
}

.product-modal-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--harvest-gold);
}

.product-modal-variants {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.25rem;
}

.variant-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.variant-group-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--harvest-gold);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-btn {
    padding: 0.4rem 1rem;
    border: 2px solid var(--light-gold);
    border-radius: 50px;
    background: transparent;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--pure-white);
    transition: all 0.2s ease;
}

.variant-btn:hover {
    border-color: var(--harvest-gold);
    color: var(--harvest-gold);
}

.variant-btn.selected {
    background: var(--harvest-gold);
    border-color: var(--harvest-gold);
    color: var(--pure-white);
    font-weight: 700;
}

.variant-btn.unavailable {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.variant-error {
    font-size: 0.85rem;
    color: #c0392b;
    font-weight: 500;
}

.product-modal-add-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}

.view-options-btn {
    padding: 0.6rem 1.4rem;
    background: var(--harvest-gold);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-options-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 149, 42, 0.4);
}

@media (max-width: 680px) {
    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        border-radius: 14px 14px 0 0;
    }

    .modal-image-pool {
        min-height: 200px;
        max-height: 260px;
    }

    .modal-thumbnails,
    .modal-thumb-strip {
        padding: 0.5rem;
    }
}

/* ---- Cart Sidebar ---- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--dark-card);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--deep-purple) 100%);
    border-bottom: 2px solid var(--harvest-gold);
}

.cart-header h3 {
    color: var(--harvest-gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.cart-close {
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: var(--harvest-gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--pure-white);
    opacity: 0.5;
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gold);
    align-items: flex-start;
}

.cart-item-image {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--dark-surface);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--harvest-gold);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--harvest-gold);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--light-gold);
    border-radius: 50%;
    background: var(--dark-surface);
    color: var(--harvest-gold);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: inherit;
    line-height: 1;
}

.qty-btn:hover {
    background: var(--harvest-gold);
    color: var(--pure-white);
    border-color: var(--harvest-gold);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--pure-white);
    opacity: 0.4;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.cart-item-remove:hover {
    opacity: 1;
    color: #c0392b;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--harvest-gold);
    background: var(--dark-surface);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--harvest-gold);
    margin-bottom: 1rem;
}

.cart-checkout-btn {
    width: 100%;
    text-align: center;
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ---- Checkout Modal ---- */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal.open {
    opacity: 1;
    visibility: visible;
}

.checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.checkout-content {
    position: relative;
    background: var(--dark-card);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.checkout-header h3 {
    font-size: 1.6rem;
    color: var(--harvest-gold);
    font-weight: 700;
}

.checkout-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--pure-white);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.checkout-close:hover {
    opacity: 1;
}

.checkout-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--harvest-gold);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gold);
}

.checkout-section-title:first-of-type {
    margin-top: 0;
}

.checkout-content .form-group {
    margin-bottom: 1.25rem;
}

.checkout-content .form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--harvest-gold);
    margin-bottom: 0.4rem;
}

.checkout-content .form-group input,
.checkout-content .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gold);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--dark-card);
    box-sizing: border-box;
}

.checkout-content .form-group input:focus,
.checkout-content .form-group select:focus {
    outline: none;
    border-color: var(--harvest-gold);
    box-shadow: 0 0 0 3px rgba(201, 149, 42, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#card-element {
    padding: 0.85rem 1rem;
    border: 2px solid var(--light-gold);
    border-radius: 8px;
    background: var(--dark-card);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#card-element.StripeElement--focus {
    border-color: var(--harvest-gold);
    box-shadow: 0 0 0 3px rgba(201, 149, 42, 0.2);
}

.card-errors {
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

.checkout-total {
    font-size: 1.3rem;
    color: var(--harvest-gold);
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    border-radius: 8px;
}

.checkout-summary {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-card) 100%);
    border-radius: 8px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.checkout-summary-row:last-child {
    border-bottom: none;
}

.checkout-summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--harvest-gold);
    margin-top: 0.4rem;
    padding-top: 0.6rem;
}

.checkout-pay-btn {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.checkout-pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--rich-black);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.hidden {
    display: none !important;
}

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

/* Checkout Success */
.checkout-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--harvest-gold);
    color: var(--pure-white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.checkout-success h3 {
    font-size: 1.5rem;
    color: var(--harvest-gold);
    margin-bottom: 0.75rem;
}

.checkout-success p {
    color: var(--pure-white);
    opacity: 0.7;
    margin-bottom: 2rem;
}

/* ---- Floating Cart FAB ---- */
.cart-fab {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 1500;
    background: var(--harvest-gold);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    padding: 0.85rem 1.3rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 5px 20px rgba(201, 149, 42, 0.45);
    transition: all 0.3s ease;
}

.cart-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 149, 42, 0.55);
}

.cart-fab svg {
    flex-shrink: 0;
}

.cart-fab #cart-count {
    background: var(--deep-purple);
    color: var(--pure-white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ---- Store Responsive ---- */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .store-banner {
        padding: 320px 1.5rem 3.5rem;
    }

    .store-banner h2 {
        font-size: 2.2rem;
    }

    .store-products {
        padding: 2rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .product-card-body {
        padding: 1rem;
    }

    .product-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .add-to-cart-btn {
        width: 100%;
        text-align: center;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .checkout-content {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .store-banner {
        padding: 290px 1rem 2.5rem;
    }

    .store-banner h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .store-banner p {
        font-size: 1rem;
    }

    .store-filters {
        padding: 1.25rem 1rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .store-products {
        padding: 1.5rem 1rem;
    }

    .cart-fab {
        bottom: 4.5rem;
        right: 1rem;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* ========== EVENTS CAROUSEL ========== */
.events-carousel-section {
    margin: 2rem 0 3rem;
}

.events-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}

.carousel-track-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    min-width: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.event-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 149, 42, 0.22);
    border-radius: 16px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.25rem 2rem;
    align-items: start;
}

.event-card-date {
    background: linear-gradient(150deg, var(--deep-purple), var(--accent-purple));
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    border: 1px solid rgba(201, 149, 42, 0.3);
    flex-shrink: 0;
}

.event-date-month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--harvest-gold);
}

.event-date-day {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--pure-white);
    margin: 0.2rem 0;
}

.event-date-year {
    font-size: 0.78rem;
    color: rgba(250, 247, 242, 0.55);
    letter-spacing: 0.05em;
}

.event-card-body {
    min-width: 0;
}

.event-card-day {
    font-size: 0.82rem;
    color: var(--harvest-gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.event-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.event-card-location {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    color: rgba(250, 247, 242, 0.72);
    font-size: 0.93rem;
    margin-bottom: 0.75rem;
}

.event-card-location svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--harvest-gold);
}

.event-card-description {
    color: rgba(250, 247, 242, 0.55);
    font-size: 0.9rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.event-card-link {
    display: inline-block;
    color: var(--harvest-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 149, 42, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    /* Reset native <button> styles */
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    cursor: pointer;
    font-family: inherit;
    line-height: inherit;
}

.event-card-link:hover {
    color: var(--pure-white);
    border-color: var(--pure-white);
}

.carousel-nav-btn {
    background: var(--dark-card);
    border: 2px solid var(--harvest-gold);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--harvest-gold);
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(201, 149, 42, 0.45);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.carousel-nav-btn:hover:not(:disabled) {
    background: var(--harvest-gold);
    color: var(--dark-surface);
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(201, 149, 42, 0.18);
}

.carousel-nav-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 149, 42, 0.4);
    border: 1.5px solid rgba(201, 149, 42, 0.55);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.carousel-dot:hover {
    background: rgba(201, 149, 42, 0.7);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--harvest-gold);
    border-color: var(--harvest-gold);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(201, 149, 42, 0.5);
}

.carousel-count {
    text-align: center;
    font-size: 0.92rem;
    color: var(--harvest-gold);
    margin-top: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.carousel-hint {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(250, 247, 242, 0.55);
    margin-top: 0.4rem;
    letter-spacing: 0.05em;
    font-style: italic;
}

/* Multi-day badge tweaks */
.event-date-day-range {
    font-size: 1.95rem !important;
    line-height: 1.1 !important;
}
.event-date-dash {
    font-size: 0.85em;
    margin: 0 0.08em;
    opacity: 0.75;
}
.event-date-cross {
    font-size: 0.7rem;
    color: var(--harvest-gold);
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
    font-weight: 600;
}

.carousel-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--dark-surface);
    border-radius: 16px;
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid rgba(201, 149, 42, 0.12);
}

.carousel-empty p {
    color: rgba(250, 247, 242, 0.55);
    margin-bottom: 0.5rem;
}

.carousel-empty p:first-child {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(250, 247, 242, 0.75);
}

.carousel-skeleton {
    background: var(--dark-card);
    border: 1px solid rgba(201, 149, 42, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.25rem 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.skeleton-block {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}

@media (max-width: 680px) {
    .events-carousel {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .carousel-track-wrapper {
        width: 100%;
    }
    .carousel-nav-btn {
        display: none;
    }
    .event-card {
        grid-template-columns: 1fr;
        padding: 1.75rem;
        gap: 1rem;
    }
    .event-card-date {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        width: fit-content;
    }
    .event-date-day { font-size: 2rem; margin: 0; }
    .carousel-skeleton {
        grid-template-columns: 1fr;
    }
}

/* ========== NEWSLETTER / BULLETIN SIGNUP ========== */
.bulletin-signup {
    background: var(--dark-surface);
    border-top: 3px solid var(--harvest-gold);
    border-radius: 16px;
    padding: 3.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.bulletin-signup-inner {
    max-width: 560px;
    margin: 0 auto;
}

.bulletin-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--deep-purple), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--harvest-gold);
}

.bulletin-signup h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--harvest-gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.bulletin-tagline {
    color: var(--pure-white);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.88;
}

.bulletin-form {
    width: 100%;
}

.bulletin-input-row {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 460px;
    margin: 0 auto 0.35rem;
}

.bulletin-input-row input[type="email"],
.bulletin-input-row input[type="tel"] {
    width: 100%;
    min-width: 0;
    background: var(--dark-card);
    border: 1.5px solid rgba(201, 149, 42, 0.3);
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    color: var(--pure-white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.bulletin-input-row input[type="email"]::placeholder,
.bulletin-input-row input[type="tel"]::placeholder {
    color: rgba(250, 247, 242, 0.38);
}

.bulletin-input-row input[type="email"]:focus,
.bulletin-input-row input[type="tel"]:focus {
    outline: none;
    border-color: var(--harvest-gold);
    box-shadow: 0 0 0 3px rgba(201, 149, 42, 0.15);
}

.bulletin-optional-label {
    display: block;
    margin: -0.25rem 0 0.5rem;
    font-size: 0.75rem;
    color: rgba(250, 247, 242, 0.45);
    letter-spacing: 0.02em;
    text-align: left;
}

.bulletin-submit-btn {
    width: 100%;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.95rem !important;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.bulletin-feedback {
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    max-width: 460px;
    margin: 0 auto;
}

.bulletin-success {
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.bulletin-error {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.bulletin-privacy {
    font-size: 0.78rem;
    color: rgba(250, 247, 242, 0.38);
    margin-top: 1.25rem;
    letter-spacing: 0.01em;
}

@media (max-width: 500px) {
    .bulletin-input-row {
        flex-direction: column;
    }
    .bulletin-submit-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ========== NEWSLETTER TOAST ========== */
.nt-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 352px;
    background: linear-gradient(145deg, #1a1025 0%, #120d1e 100%);
    border: 1px solid rgba(201, 149, 42, 0.35);
    border-radius: 16px;
    padding: 1.65rem 1.54rem 1.54rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
    z-index: 9999;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
    pointer-events: none;
}
.nt-toast.nt-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.nt-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(250,247,242,0.4);
    font-size: 1.43rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.nt-close:hover {
    color: var(--harvest-gold);
    background: rgba(201,149,42,0.1);
}
.nt-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--deep-purple), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.99rem;
    font-size: 1.21rem;
}
.nt-title {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--harvest-gold);
    margin-bottom: 0.44rem;
}
.nt-sub {
    font-size: 0.97rem;
    color: rgba(250,247,242,0.75);
    line-height: 1.55;
    margin-bottom: 1.1rem;
}
.nt-form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.nt-form input[type="email"],
.nt-form input[type="tel"] {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(201,149,42,0.25);
    border-radius: 8px;
    padding: 0.77rem 0.99rem;
    color: var(--pure-white);
    font-size: 0.99rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.nt-form input[type="email"]::placeholder,
.nt-form input[type="tel"]::placeholder {
    color: rgba(250,247,242,0.32);
}
.nt-form input[type="email"]:focus,
.nt-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--harvest-gold);
    box-shadow: 0 0 0 3px rgba(201,149,42,0.12);
}
.nt-optional-label {
    font-size: 0.72rem;
    color: rgba(250,247,242,0.38);
    margin-top: -0.2rem;
    letter-spacing: 0.03em;
}
.nt-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--harvest-gold), #b8860b);
    color: #0d0a14;
    border: none;
    border-radius: 8px;
    padding: 0.79rem 1.1rem;
    font-size: 0.99rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: opacity 0.2s, transform 0.15s;
}
.nt-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}
.nt-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.nt-feedback {
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-top: 0.25rem;
}
.nt-success {
    background: rgba(34,197,94,0.1);
    color: #86efac;
    border: 1px solid rgba(34,197,94,0.25);
}
.nt-error {
    background: rgba(239,68,68,0.1);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,0.25);
}
.nt-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(13,10,20,0.3);
    border-top-color: #0d0a14;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}
@media (max-width: 400px) {
    .nt-toast {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 16px;
    }
}

/* ========== EVENT DETAIL MODAL ========== */
.event-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.event-modal-overlay.hidden { display: none; }
.event-modal-overlay.visible { opacity: 1; }

.event-modal-box {
    background: var(--dark-surface);
    border: 1px solid rgba(201, 149, 42, 0.3);
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: modalSlideUp 0.28s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.event-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(250, 247, 242, 0.5);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}
.event-modal-close:hover { color: var(--harvest-gold); }

.event-modal-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.event-modal-badge {
    background: var(--deep-purple);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    text-align: center;
    min-width: 64px;
    padding: 0.5rem 0.75rem;
    flex-shrink: 0;
}
.event-modal-month { font-size: 0.75rem; font-weight: 700; color: var(--harvest-gold); letter-spacing: 1.5px; text-transform: uppercase; }
.event-modal-day   { font-size: 2rem;    font-weight: 800; color: var(--pure-white);   line-height: 1.1; }
.event-modal-year  { font-size: 0.72rem; color: rgba(250,247,242,0.55); margin-top: 2px; }

.event-modal-header-text { flex: 1; min-width: 0; }

.event-modal-meta {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--harvest-gold);
    margin-bottom: 0.4rem;
}

.event-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pure-white);
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.event-modal-location {
    font-size: 0.9rem;
    color: rgba(250, 247, 242, 0.65);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.event-modal-desc {
    font-size: 1rem;
    color: rgba(250, 247, 242, 0.85);
    line-height: 1.7;
    border-top: 1px solid rgba(201, 149, 42, 0.15);
    padding-top: 1rem;
    margin-bottom: 1.25rem;
    white-space: pre-line;
}
.event-modal-desc:empty { display: none; }

.event-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.em-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
}
.em-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.em-btn-cal {
    background: var(--harvest-gold);
    color: var(--rich-black);
}

.em-btn-reg {
    background: transparent;
    border: 2px solid var(--harvest-gold);
    color: var(--harvest-gold);
}

@media (max-width: 480px) {
    .event-modal-box { padding: 1.5rem 1.25rem; }
    .event-modal-header { flex-direction: column; gap: 0.75rem; }
    .event-modal-badge { min-width: 100%; display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 1rem; }
    .event-modal-day { font-size: 1.5rem; }
    .em-btn { width: 100%; justify-content: center; }
}

/* ========== PRINT STYLES ========== */
@media print {
    header, .award-banner, footer, .menu-toggle, .back-to-top {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    .hero {
        min-height: auto;
        background: none;
        padding: 2rem 0;
    }

    .tip-box {
        background: #f5f5f5;
        border: 1px solid #ccc;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
    }

    .cta-button {
        display: none;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
