/* ── RESET & VARIABLES ── */
:root {
    --font-display: 'Oswald', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-footer: #3d3e33;
    --color-sand: #f4f1ea;
    --color-navy: #0d1b3e;
    --color-amber: #c9802a;

    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-sand);
    color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 16px 50px;
    display: flex; align-items: center;
    z-index: 1000;
    color: var(--color-white);
    background: transparent;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.nav-left {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-left a {
    color: var(--color-white);
    font-size: 1.1rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.nav-left a:hover {
    opacity: 1;
}

.navbar.scrolled .nav-left a,
.navbar.solid .nav-left a {
    color: var(--color-navy);
}

.navbar.scrolled,
.navbar.solid {
    background: #fff;
    padding: 12px 50px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-item,
.navbar.solid .nav-item {
    color: var(--color-navy);
}

.navbar.scrolled .nav-item:hover,
.navbar.solid .nav-item:hover,
.navbar.scrolled .nav-item.active,
.navbar.solid .nav-item.active {
    color: var(--color-navy);
    opacity: 1;
}

.navbar.scrolled .hamburger span,
.navbar.solid .hamburger span {
    background-color: var(--color-navy);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
}

.nav-item {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.9;
    color: var(--color-white);
}
.nav-item:hover, .nav-item.active { opacity: 1; text-decoration: underline; text-underline-offset: 5px; }

.btn-book {
    background: var(--color-amber);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 28px;
    font-family: var(--font-display);
    font-size: 0.74rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.btn-book:hover { background: #b36e22; color: #fff; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.hamburger:hover { background-color: rgba(128, 128, 128, 0.12); }

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.nav-links .fab {
    font-size: 1.2rem;
    color: var(--color-white);
    transition: var(--transition);
}
.nav-links .fab:hover { color: #ccc; }

/* ── LANGUAGE SWITCHER ── */
.language-switcher {
    display: flex;
    align-items: center;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1.5px solid #c8a96e;
    border-radius: 4px;
    color: #c8a96e;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-toggle:hover {
    background: rgba(200, 169, 110, 0.1);
    border-color: #c8a96e;
}

.lang-flag {
    width: 18px;
    height: 14px;
    display: inline-block;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-code {
    font-weight: 600;
    min-width: 28px;
    text-align: center;
}

.btn-flag {
    width: 18px;
    height: 14px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.language-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.language-menu.active {
    display: flex;
}

.lang-btn {
    padding: 12px 16px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
}

.lang-btn:hover {
    background: #f5f5f5;
    color: #c8a96e;
}

.lang-btn.active {
    background: #f9f7f3;
    color: #c8a96e;
    border-left-color: #c8a96e;
    font-weight: 600;
}

/* Language switcher in navbar - always on top so it stays visible above mobile overlay */
.navbar .language-switcher {
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
    margin-left: 20px;
}

/* Language switcher text color on scrolled/solid navbar */
.navbar.scrolled .language-toggle,
.navbar.solid .language-toggle {
    color: var(--color-navy);
    border-color: var(--color-navy);
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-gradient { display: none; }

.bg-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center; z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 40px;
    margin-top: 12vh;
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 22px;
}

.hero-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    line-height: 0.93;
    margin-bottom: 28px;
}

.hero-accent {
    font-family: 'Great Vibes', cursive;
    font-size: 1.35em;
    font-weight: 400;
    text-transform: none;
    color: #b08d55;
    display: block;
}

.hero-subline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    margin: 14px auto 44px;
}

.hero-tagline {
    font-size: clamp(1.4rem, 4.5vw, 4.8rem);
    font-weight: 200;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hero-tagline {
        font-size: clamp(1rem, 5.5vw, 1.6rem);
        white-space: normal;
        letter-spacing: 0.1em;
    }
}

@keyframes waveIn {
    0%   { transform: translateY(28px); opacity: 0; }
    100% { transform: translateY(0);    opacity: 1; }
}

.hero-tagline .wave-char {
    display: inline-block;
    opacity: 0;
    animation: waveIn 1.8s ease-out forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    background: #b08d55;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    transition: background 0.3s;
}

.btn-hero-primary:hover { background: #9a7a44; }

.btn-hero-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    transition: all 0.3s;
}

.btn-hero-outline:hover { background: #fff; color: var(--color-dark); }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

.scroll-hint-text {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-hint-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── PAGE HEADERS ── */
.page-header {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.header-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); z-index: 0;
}

.header-title {
    position: relative; z-index: 2;
    font-family: var(--font-display); font-size: 4rem; text-transform: uppercase;
    letter-spacing: 2px; text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--color-dark);
    padding: 32px 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: #b08d55;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-plus { font-size: 1.4rem; }

.star-icon {
    font-size: 1.2rem;
    color: #b08d55;
    vertical-align: middle;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.15);
}

/* ── INTRO SECTION ── */
.intro-section {
    background: var(--color-sand);
    padding: 100px 10%;
    text-align: center;
}

.intro-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08d55;
    margin-bottom: 14px;
    border: 1px solid rgba(176,141,85,0.35);
    padding: 6px 16px;
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.intro-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 36px;
}

.btn-intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-dark);
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

.btn-intro:hover { opacity: 0.6; }

/* ── HOME STRIPS ── */
.stack-container { width: 100%; }

.strip-link {
    display: block;
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.strip-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.8s ease; z-index: 0;
}

.strip-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.25); z-index: 1; transition: background 0.3s;
}

.strip-link:hover .strip-bg { transform: scale(1.05); }
.strip-link:hover .strip-overlay { background: rgba(0,0,0,0.4); }

.strip-title {
    position: relative; z-index: 2;
    font-family: var(--font-display); font-size: 3.5rem; color: var(--color-white);
    text-transform: uppercase; letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.strip-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.strip-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
}

.strip-desc {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    max-width: 420px;
    margin: 12px auto 24px;
}

.strip-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    transition: all 0.3s;
}

.strip-link:hover .strip-arrow {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* ── CONTENT SECTIONS ── */
.content-section {
    padding: 80px 10%;
    background: var(--color-sand);
    min-height: 50vh;
}

.section-intro {
    text-align: center; max-width: 800px; margin: 0 auto 60px auto;
}

.section-intro h2 {
    font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 20px;
}

.section-intro p {
    font-size: 1.1rem; color: #555; line-height: 1.6;
}

.no-top-padding { padding-top: 0; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* ── CARDS ── */
.card {
    background: white;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    min-height: 400px;
}

.card:hover { transform: translateY(-5px); }

.card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card .price {
    display: block;
    font-weight: bold;
    color: #b08d55;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.card ul li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95rem;
}

/* Flip Card */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    cursor: pointer;
    height: 580px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.flip-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.flip-card-front { background: white; }

.flip-card-back {
    background: white;
    transform: rotateY(180deg);
}

.package-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.package-image:hover { transform: scale(1.05); }

.card-sub {
    color: #888;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Buttons */
.btn-dark {
    display: inline-block; background: var(--color-dark); color: white;
    padding: 12px 30px; text-transform: uppercase; letter-spacing: 1px;
    margin-top: 20px; font-size: 0.8rem; border: none; cursor: pointer;
}
.btn-dark:hover { background: #333; }

/* ── ACTIVITY CARDS ── */
.activity-card {
    display: block;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    color: inherit;
    text-decoration: none;
}
.activity-card:hover { transform: translateY(-5px); }
.activity-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.activity-card-content { padding: 25px; }
.activity-card-content h3 {
    font-family: var(--font-display); font-size: 1.3rem;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;
}
.activity-card-content p { color: #555; font-size: 0.95rem; line-height: 1.6; }
.activity-card-content .tag {
    display: inline-block; background: #f4f1ea; padding: 4px 12px;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
    color: #b08d55; margin-bottom: 12px; border-radius: 2px;
}

/* ── DARK SECTION ── */
.dark-section {
    background: var(--color-dark);
    color: white;
    padding: 80px 10%;
    text-align: center;
}
.dark-section h2 {
    font-family: var(--font-display); font-size: 2.5rem;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;
}
.dark-section p { color: #aaa; font-size: 1.1rem; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.dark-section .btn-light {
    display: inline-block; border: 1px solid white; color: white;
    padding: 12px 32px; text-transform: uppercase; font-size: 0.75rem;
    letter-spacing: 2px; margin-top: 30px; transition: var(--transition);
}
.dark-section .btn-light:hover { background: white; color: var(--color-dark); }

/* ── INCLUDED ITEMS ── */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px; margin-top: 50px;
}
.included-item { text-align: center; padding: 25px 15px; background: white; border-radius: 4px; }
.included-item i { font-size: 1.4rem; color: #b08d55; margin-bottom: 12px; display: block; }
.included-item span { font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #333; }

/* ── EVENT CARDS ── */
.event-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 380px;
}
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.event-card:hover img { transform: scale(1.05); }
.event-card-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 40px 25px 25px; color: white;
}
.event-card-overlay h3 {
    font-family: var(--font-display); font-size: 1.4rem;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.event-card-overlay p { font-size: 0.85rem; color: #ccc; line-height: 1.5; }

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 60px;
}
.gallery-grid img {
    width: 100%; height: 260px; object-fit: cover;
    border-radius: 2px; display: block;
    transition: opacity 0.3s, transform 0.3s;
}
.gallery-grid img:hover { opacity: 0.85; transform: scale(1.02); }

/* ── REVIEW CARDS ── */
.review-card {
    background: white;
    border-radius: 4px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.review-card .stars { color: #b08d55; font-size: 0.9rem; margin-bottom: 15px; letter-spacing: 3px; }
.review-card blockquote {
    font-size: 1rem; color: #444; line-height: 1.8;
    font-style: italic; margin-bottom: 20px;
}
.review-card .reviewer { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 1px; color: #1a1a1a; }
.review-card .reviewer span { color: #b08d55; font-family: var(--font-body); font-style: italic; font-size: 0.8rem; font-weight: 300; margin-left: 8px; }

/* ── FEATURE ROWS ── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #e8e5de;
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row img { width: 100%; height: 360px; object-fit: cover; border-radius: 4px; display: block; }
.feature-text h3 {
    font-family: var(--font-display); font-size: 1.8rem;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.feature-text p { color: #555; line-height: 1.8; margin-bottom: 15px; }
.feature-text ul { padding-left: 0; margin-top: 15px; }
.feature-text ul li {
    padding: 6px 0; color: #555; font-size: 0.95rem;
    border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 10px;
}
.feature-text ul li i { color: #b08d55; font-size: 0.8rem; }

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: white;
    padding: 100px 8%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f5f0;
    padding: 10px 20px;
    border-radius: 100px;
    margin-top: 16px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.google-rating-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.google-icon { width: 18px; height: 18px; }
.rating-score { font-family: var(--font-display); font-size: 1rem; color: var(--color-dark); }
.rating-stars { color: #f4b400; }
.rating-count { color: #777; font-size: 0.8rem; }

.testimonials-carousel {
    overflow: hidden;
    margin-bottom: 44px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #f9f6f0;
    padding: 36px;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.testimonial-card:hover {
    border-top-color: #b08d55;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
    color: #b08d55;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #444;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 42px; height: 42px;
    background: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
    flex-shrink: 0;
}


.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--color-dark); margin-bottom: 3px; }
.testimonial-author span { font-size: 0.78rem; color: #777; }
.testimonials-more { text-align: center; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
    background: #b08d55;
    transform: scale(1.3);
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0,0,0,0.2);
    color: var(--color-dark);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-reviews:hover { background: var(--color-dark); color: white; }

/* ── MAP ── */
.map-section {
    background: var(--color-sand);
    padding: 100px 8%;
}

.map-header { text-align: center; margin-bottom: 44px; }
.map-subtitle { color: #777; font-size: 0.9rem; letter-spacing: 1px; margin-top: 8px; }

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 460px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

.map-actions {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.btn-map-direction {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285F4;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
}

.btn-map-direction:hover {
    background: #3367d6;
    color: #fff;
    transform: translateY(-2px);
}

.map-directions {
    max-width: 1000px;
    margin: 36px auto 0;
}

.directions-card {
    display: flex;
    gap: 24px;
    background: white;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.07);
    align-items: flex-start;
}

.directions-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 4px;
}

.directions-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: var(--color-dark);
}

.directions-text ol {
    padding-left: 20px;
    margin: 0 0 14px;
    color: #444;
    line-height: 1.8;
}

.directions-tip {
    font-size: 0.88rem;
    color: #777;
    background: var(--color-sand);
    border-left: 3px solid #1a7fa8;
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
    margin: 0;
}

/* ── FAQ ── */
.faq-section {
    background: #f7f5f0;
    padding: 80px 24px;
}
.faq-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.faq-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.faq-inner .sub {
    font-family: var(--font-body);
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 52px;
}
.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #ddd;
}
.faq-item { border-bottom: 1px solid #ddd; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    gap: 16px;
    -webkit-user-select: none;
    user-select: none;
}
.faq-question:hover { color: var(--color-amber); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--color-amber); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p {
    font-family: var(--font-body);
    color: #555;
    font-size: 0.98rem;
    line-height: 1.8;
    padding: 0 4px;
}
.faq-answer a { color: var(--color-amber); }

/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: white;
    padding: 60px 40px;
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    z-index: 1;
}

.cta-content { position: relative; z-index: 2; max-width: 600px; }

.cta-discount-badge {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 28px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(230, 57, 70, 0.3); }
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: background 0.3s;
}

.btn-whatsapp-cta:hover { background: #1da851; }

/* ── ABOUT PAGE ── */
.about-story {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}
.about-story .intro-badge { margin-bottom: 16px; }
.about-story h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.06em;
    margin-bottom: 28px;
    color: #1a1a1a;
}
.about-story p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    background: #f7f5f0;
    padding: 80px 24px;
}
.values-section .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.values-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: #1a1a1a;
}
.values-section .sub {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 52px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.value-card {
    background: #fff;
    border-radius: 4px;
    padding: 40px 28px 36px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.value-card:hover {
    border-color: #c8a96e;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.value-icon {
    font-size: 2rem;
    color: #c8a96e;
    margin-bottom: 18px;
}
.value-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.value-card p {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.team-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: #1a1a1a;
}
.team-section .sub {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 52px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    justify-items: center;
}
.team-card {
    text-align: center;
    max-width: 360px;
    background: #fff;
    border: 1px solid #e8e2d9;
    border-radius: 16px;
    padding: 24px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.team-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}
.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #e8e2d9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 4px solid #c8a96e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    position: relative;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team-avatar .avatar-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b0a090;
}
.team-avatar .avatar-placeholder i {
    font-size: 3rem;
}
.team-avatar .avatar-placeholder span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.team-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.team-card .role {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c8a96e;
    margin-bottom: 12px;
}
.team-card p {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
    hyphens: auto;
    overflow-wrap: break-word;
}

.stats-banner {
    background: #1a1a1a;
    padding: 60px 24px;
}
.stats-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
}
.stats-banner .stat-item .stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: #c8a96e;
    line-height: 1;
    margin-bottom: 8px;
}
.stats-banner .stat-item .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #aaa;
}

.about-cta {
    background: var(--color-dark);
    padding: 70px 24px;
    text-align: center;
}
.about-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 16px;
}
.about-cta p {
    font-family: 'DM Sans', sans-serif;
    color: #aaa;
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    background-color: var(--color-footer); color: #dcdcdc;
    padding: 80px 50px; font-size: 0.75rem;
}

.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.footer-col h5 {
    color: white; font-family: var(--font-display); font-size: 0.9rem;
    margin-bottom: 25px; letter-spacing: 1px; text-transform: uppercase;
}
.footer-col p { margin-bottom: 10px; line-height: 1.6; }

.socials a {
    display: inline-flex; width: 30px; height: 30px;
    border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
    align-items: center; justify-content: center; margin-right: 10px; transition: 0.3s;
}
.socials a:hover { background: white; color: var(--color-footer); }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.8rem;
}

.footer-logo { height: 70px; width: auto; margin-bottom: 18px; object-fit: contain; display: block; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 92px;
    right: 25px;
    width: 36px;
    height: 52px;
    background: var(--color-navy);
    color: #fff;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--color-amber); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    z-index: 1003;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ── COMPARE TABLE ── */
.compare-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.compare-table thead {
    background: var(--color-dark);
    color: white;
}
.compare-table th {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 20px;
    text-align: center;
}
.compare-table th:first-child {
    text-align: left;
    background: var(--color-footer);
}
.compare-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0ede8;
}
.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.compare-table tbody tr:hover {
    background: #f9f7f3;
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .navbar { padding: 12px 20px; }
    .navbar.scrolled, .navbar.solid { padding: 10px 20px; }

    .nav-left { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(13, 27, 62, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-item {
        font-size: 1.3rem;
        padding: 10px 24px;
        border-radius: 4px;
        color: #fff !important;
        transition: background-color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links .nav-item:hover,
    .nav-links .nav-item:active {
        background-color: rgba(255, 255, 255, 0.08);
    }

    .nav-links .btn-book {
        margin-top: 12px;
        padding: 14px 40px;
        font-size: 0.9rem;
        border-radius: 50px;
    }

    .mobile-menu-close {
        position: absolute;
        top: 24px;
        right: 24px;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        z-index: 1000;
        display: none;
        line-height: 1;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-close::before {
        content: '\2715';
        font-size: 1.4rem;
    }

    .mobile-menu-close:hover { background: rgba(255,255,255,0.1); }

    .nav-links.active .mobile-menu-close {
        display: flex;
    }

    .hamburger { display: flex; }

    .header-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .strip-title  { font-size: clamp(1.8rem, 8vw, 2.5rem); }

    .page-header  { min-height: 40vh; }
    .strip-link   { min-height: 44vw; }

    .content-section { padding: 50px 20px; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-grid     { grid-template-columns: 1fr; gap: 28px; }

    .gallery-grid             { grid-template-columns: 1fr 1fr; }
    .gallery-grid img         { height: 170px; }

    .feature-row,
    .feature-row.reverse      { grid-template-columns: 1fr; direction: ltr; gap: 28px; padding: 40px 0; }
    .feature-row img          { height: 240px; }

    .dark-section             { padding: 60px 20px; }
    .dark-section h2          { font-size: 1.9rem; }
    .event-card               { height: 260px; }

    .btn-dark, .btn-book, .btn-hero-primary, .btn-hero-outline {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }

    .back-to-top {
        width: 32px;
        height: 46px;
        bottom: 80px;
        right: 18px;
    }

    .stats-bar { padding: 24px 20px; flex-wrap: wrap; gap: 20px; justify-content: center; }
    .stat-divider { display: none; }
    .stat-item { min-width: 100px; }

    .intro-section { padding: 60px 24px; }

    .strip-content { max-width: 280px; }

    .testimonials-section { padding: 60px 24px; }
    .testimonial-card { min-height: 240px; padding: 28px; flex: 0 0 100%; }
    .carousel-track { gap: 0; }

    .map-section { padding: 60px 24px; }
    .map-container { height: 320px; }

    .cta-banner { min-height: 400px; padding: 60px 24px; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .hero-ctas { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; justify-content: center; }

    .language-toggle {
        padding: 6px 10px;
        font-size: 0.85rem;
        border-width: 1px;
    }

    .lang-flag {
        width: 16px;
        height: 12px;
    }

    .lang-code {
        min-width: 24px;
        font-size: 0.8rem;
    }

    .language-menu {
        position: fixed;
        top: auto;
        bottom: auto;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        max-width: 200px;
    }

    .navbar .language-switcher {
        margin-left: 0;
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .directions-card { flex-direction: column; gap: 12px; padding: 24px 20px; }
}

@media (max-width: 480px) {
    .navbar { padding: 12px 16px; }
    .logo img { height: 58px; }
    .footer { padding: 60px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img { height: 220px; }
    .section-intro h2 { font-size: 1.8rem; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .event-card { height: 240px; }
    .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }
    .stat-number { font-size: 2rem; }
    .map-container { height: 260px; }
    .hero-content { padding: 0 20px; margin-top: 8vh; }
    .hero-ctas .btn-hero-primary,
    .hero-ctas .btn-hero-outline { padding: 14px 24px; font-size: 0.72rem; }
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin: 6px 0;
}
.price-old {
    font-size: 0.9em;
    text-decoration: line-through;
    opacity: 0.5;
    font-family: 'DM Sans', sans-serif;
}
.price-sale {
    color: #e74c3c;
}
.discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 3px;
}
.corner-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e74c3c;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
    pointer-events: none;
}
.flip-card { position: relative; }
