/* ═══════════════════════════════════════════════════════════════════════════
   LUXURY SHISHA THEME - Inspired by Let's Hookah
   A premium hookah experience with elegant, atmospheric design
═══════════════════════════════════════════════════════════════════════════ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* === ROOT VARIABLES (Dark Mode - Default) === */
:root {
    /* Premium Color Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F5E6B3;
    --gold-dark: #A68A2E;
    --copper: #B87333;
    --rose-gold: #E8B4A0;

    /* Background Gradients */
    --bg-deep: #0a0908;
    --bg-primary: #111110;
    --bg-panel: #1a1918;
    --bg-card: #201f1d;
    --bg-gradient: linear-gradient(135deg, #0a0908 0%, #1a1512 50%, #0a0908 100%);
    --bg-smoke: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);

    /* Text Colors */
    --text-main: #faf8f5;
    --text-secondary: #c9c5be;
    --text-muted: #8a8680;

    /* Accents */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --border-soft: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.4);

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* === LIGHT MODE VARIABLES === */
[data-theme="light"] {
    /* Premium Color Palette - Darker golds for contrast */
    --gold-primary: #B8952D;
    --gold-light: #D4AF37;
    --gold-dark: #8B7021;
    --copper: #9A5C28;
    --rose-gold: #C9947D;

    /* Background - Light & Clean */
    --bg-deep: #ffffff;
    --bg-primary: #f8f7f5;
    --bg-panel: #ffffff;
    --bg-card: #f5f4f2;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f5f4f2 50%, #ffffff 100%);
    --bg-smoke: radial-gradient(ellipse at center, rgba(184, 149, 45, 0.05) 0%, transparent 70%);

    /* Text Colors - Dark for readability */
    --text-main: #1a1918;
    --text-secondary: #4a4843;
    --text-muted: #8a8680;

    /* Accents */
    --accent-glow: rgba(184, 149, 45, 0.3);
    --border-soft: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(184, 149, 45, 0.5);
}

/* Light mode specific overrides */
[data-theme="light"] body {
    background: var(--bg-gradient);
}

[data-theme="light"] body::before {
    background: var(--bg-smoke);
}

[data-theme="light"] header.sticky-top {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border-soft);
}

[data-theme="light"] header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .btn-close-white {
    filter: invert(1);
}

[data-theme="light"] .news-ticker {
    background: linear-gradient(90deg, #8B7021 0%, #B8952D 50%, #8B7021 100%);
}

[data-theme="light"] .toast-item {
    background: #f8f7f4;
    border-color: #e0dcd3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .hero-gradient-overlay {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0.6) 100%),
        radial-gradient(ellipse at 80% 50%, rgba(184, 149, 45, 0.1) 0%, transparent 50%);
}

[data-theme="light"] footer {
    background: #1a1918;
    color: #faf8f5;
}

[data-theme="light"] footer,
[data-theme="light"] footer * {
    --text-main: #faf8f5;
    --text-secondary: #c9c5be;
    --text-muted: #8a8680;
    --bg-panel: #201f1d;
    --border-soft: rgba(212, 175, 55, 0.15);
}

[data-theme="light"] #footer-bottom {
    background: #0a0908;
}

[data-theme="light"] .social-sidebar {
    background: rgba(26, 25, 24, 0.9);
}

[data-theme="light"] .back-to-top {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* === BASE STYLES === */
*::selection {
    background: var(--gold-primary);
    color: var(--bg-deep);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg-gradient);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Global Image Atmospheric Filter */
img:not(.main-logo img):not(.footer-logo img):not(.icon):not(.emoji) {
    filter: brightness(0.9) saturate(0.9);
    transition: filter 0.5s ease;
}

/* Ambient Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-smoke);
    pointer-events: none;
    z-index: 0;
    animation: smokeFlow 20s ease-in-out infinite;
}

@keyframes smokeFlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-20px);
    }
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6,
.display-4,
.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-main);
}

.section-title,
.hero-title {
    font-family: 'Cormorant Garamond', serif;
}

h1,
.h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2,
.h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3,
.h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-gold {
    color: var(--gold-primary) !important;
}

.text-sub {
    color: var(--text-secondary);
}

/* === ANNOUNCEMENT BAR === */
/* ═══ NEWS TICKER BAR ═══ */
.news-ticker {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1050;
}

.news-ticker::before,
.news-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.news-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--gold-dark), transparent);
}

.news-ticker::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--gold-dark));
}

.news-ticker-track {
    display: inline-flex;
    animation: tickerScroll linear infinite;
    will-change: transform;
}

.news-ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--bg-deep);
}

.ticker-item a {
    color: var(--bg-deep);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 0.4rem;
    transition: opacity 0.2s;
}

.ticker-item a:hover {
    opacity: 0.7;
}

.ticker-dot {
    color: var(--bg-deep);
    opacity: 0.5;
    font-size: 0.7rem;
}

/* ═══ TOAST STACK ═══ */
.toast-stack {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 380px;
    width: 100%;
}

.toast-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-left: 3px solid var(--gold-primary);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

.toast-item.toast-exit {
    animation: toastSlideOut 0.4s ease forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(-110%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-110%);
        opacity: 0;
    }
}

.toast-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-message {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.3;
}

.toast-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.25rem;
    transition: color 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--gold-primary);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.toast-progress-bar {
    height: 100%;
    background: var(--gold-primary);
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* === HEADER & NAVIGATION === */
header.sticky-top {
    background: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 9, 8, 0.98);
}

.main-logo img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    /* No filter - show original logo colors */
}

.main-logo:hover img {
    transform: scale(1.05);
}

.main-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.main-logo:hover .logo-text {
    text-shadow: 0 0 15px var(--accent-glow);
}

.footer-logo .footer-logo-wrapper {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo .footer-logo-wrapper img {
    max-height: 80px !important;
    max-width: 200px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none !important;
    margin-bottom: 0 !important;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Responsive footer logo */
@media (max-width: 768px) {
    .footer-logo .footer-logo-wrapper img {
        max-height: 60px !important;
        max-width: 160px !important;
    }
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .main-logo img {
        max-height: 45px;
        max-width: 140px;
    }

    .footer-logo img {
        max-height: 60px;
        max-width: 160px;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary) !important;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary) !important;
}

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

/* === HERO SECTION === */
.main-slider {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--bg-deep);
}

.main-swiper {
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
}

.swiper-slide {
    overflow: hidden;
    position: relative;
}

.hero-slide {
    display: flex;
    align-items: stretch;
    background: var(--bg-deep);
}

/* Animated Smoke Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.smoke-particle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    animation: smokeRise 15s ease-in-out infinite;
}

.smoke-particle:nth-child(1) {
    left: 10%;
    bottom: -150px;
    animation-delay: 0s;
}

.smoke-particle:nth-child(2) {
    left: 30%;
    bottom: -150px;
    animation-delay: -3s;
    width: 400px;
    height: 400px;
}

.smoke-particle:nth-child(3) {
    left: 55%;
    bottom: -150px;
    animation-delay: -6s;
}

.smoke-particle:nth-child(4) {
    left: 75%;
    bottom: -150px;
    animation-delay: -9s;
    width: 350px;
    height: 350px;
}

.smoke-particle:nth-child(5) {
    left: 90%;
    bottom: -150px;
    animation-delay: -12s;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-120vh) scale(1.5);
        opacity: 0;
    }
}

.ember-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary), 0 0 20px var(--gold-dark);
    animation: emberFloat 8s ease-in-out infinite;
}

.ember-particle:nth-child(6) {
    left: 20%;
    bottom: 10%;
    animation-delay: 0s;
}

.ember-particle:nth-child(7) {
    left: 60%;
    bottom: 20%;
    animation-delay: -2.5s;
}

.ember-particle:nth-child(8) {
    left: 80%;
    bottom: 5%;
    animation-delay: -5s;
}

@keyframes emberFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-40vh) translateX(30px);
        opacity: 0.8;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-80vh) translateX(-20px);
        opacity: 0;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    filter: brightness(0.85) saturate(0.9);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: brightness(0.85) saturate(0.9);
    z-index: 1;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1) translateX(0);
    }

    100% {
        transform: scale(1.15) translateX(-1%);
    }
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 9, 8, 0.98) 0%, rgba(10, 9, 8, 0.85) 30%, rgba(10, 9, 8, 0.5) 60%, rgba(10, 9, 8, 0.7) 100%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-accent {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: accentPulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero-accent-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: 20%;
    animation-delay: 0s;
}

.hero-accent-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 5%;
    animation-delay: -3s;
}

.hero-accent-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 5%;
    animation-delay: -6s;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.15) 0%, transparent 70%);
}

@keyframes accentPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 4;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
    backdrop-filter: blur(10px);
    animation: badgeFade 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes badgeFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 12px var(--gold-primary);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.hero-badge-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    animation: titleReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.title-line:nth-child(1) .title-word:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(1) .title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) .title-word:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) .title-word:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-highlight {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--copper) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--copper));
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.6s ease-out 0.6s forwards;
}

@keyframes underlineReveal {
    to {
        transform: scaleX(1);
    }
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.85;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-feature {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.feature-icon {
    color: var(--gold-primary);
    font-size: 1.6rem;
    animation: iconSpin 4s linear infinite;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp 0.8s ease-out 0.7s forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary .btn-text,
.btn-hero-primary .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-hero-primary .btn-icon {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-hero-secondary:hover::before {
    transform: scaleX(1);
}

.btn-hero-secondary .btn-text {
    position: relative;
    z-index: 1;
}

/* Hero Visual (New Rectangle-Free Design) */
.hero-visual {
    position: relative;
    z-index: 4;
    max-width: 550px;
    margin-left: auto;
    animation: visualFade 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
    opacity: 0;
    transform: translateX(40px);
}

@keyframes visualFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    animation: visualGlow 6s ease-in-out infinite alternate;
}

@keyframes visualGlow {
    from {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: ringRotate 30s linear infinite;
    z-index: -1;
}

.visual-image-wrapper {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.visual-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    /* Better for transparent shisha images if any */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.1));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-image-wrapper:hover .visual-img {
    transform: scale(1.05) rotate(-2deg);
}

.visual-floating-info {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: rgba(17, 17, 16, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 5;
    animation: infoFloat 6s ease-in-out infinite reverse;
}

@keyframes infoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

.visual-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

.price-label {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Showcase Stats */
.visual-stats {
    position: absolute;
    top: 10%;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 5;
}

.stat-bubble {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: statFloat 5s ease-in-out infinite;
}

.stat-bubble:nth-child(2) {
    animation-delay: -2s;
    margin-left: 20px;
}

@keyframes statFloat {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 32px;
    right: 5%;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 16, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--gold-light);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: scale(1.05);
}

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hero-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    box-shadow: 0 0 10px var(--gold-primary);
}

.swiper-slide-active .hero-progress-bar {
    animation: progressFill 6s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Pagination */
.main-slider .swiper-pagination {
    bottom: 32px;
    left: 5%;
    width: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.main-slider .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-primary);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.main-slider .swiper-pagination-bullet-active {
    border-color: var(--gold-primary);
    transform: scale(1.2);
}

.main-slider .swiper-pagination-bullet-active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: fadeUp 1s ease-out 1s forwards;
    opacity: 0;
}

.scroll-text {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Floating Decorative Elements */
.floating-smoke {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* === BUTTONS === */
.btn-stylish {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-stylish::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-stylish:hover {
    color: var(--bg-deep);
    border-color: var(--gold-primary);
}

.btn-stylish:hover::before {
    width: 400px;
    height: 400px;
}

.btn-stylish .arrow {
    transition: transform 0.3s ease;
}

.btn-stylish:hover .arrow {
    transform: translateX(5px);
}

.btn-gold-filled {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gold-primary);
    border: none;
    color: var(--bg-deep);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-gold-filled:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    color: var(--bg-deep);
}

/* === SECTION STYLING === */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    padding-bottom: 1.5rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* === TOP FLAVORS SECTION === */
.flavors-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.flavor-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition-smooth);
}

.flavor-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-panel));
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition-bounce);
    overflow: hidden;
}

.flavor-card:hover .flavor-icon {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.flavor-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0;
}

/* === LIVE ORDER NOTIFICATION === */
/* Old live-order-toast replaced by .toast-stack in main styles above */

/* === HOW IT WORKS / PROCESS SECTION === */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-panel) 100%);
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, var(--border-soft), transparent);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    background: var(--gold-primary);
    color: var(--bg-deep);
    transform: scale(1.1);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === CATERING PACKAGES === */
.packages-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(212,175,55,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.package-card.featured::before {
    opacity: 1;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--gold-primary);
    color: var(--bg-deep);
    padding: 0.5rem 3rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.package-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
}

/* === PRODUCT CARDS ENHANCED === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    padding: 0;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

.product-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-item:hover::before {
    opacity: 1;
}

.product-item figure {
    margin: 0;
    overflow: hidden;
    background: var(--bg-panel);
    position: relative;
    aspect-ratio: 1 / 1;
}

.product-item img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: brightness(0.85) saturate(0.95);
}

.product-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.05);
}

.product-details {
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-item h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.product-item:hover h3 {
    color: var(--gold-primary);
}

/* Sale Badge Styles */
.sale-badge-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #E53E3E;
    color: white;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.4);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-sale {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.price-original {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.sale-badge {
    background: #E53E3E;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.product-item .price {
    font-family: var(--font-body);
    color: var(--gold-primary);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.category-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
}

/* Minimalist Product Actions */
.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
}

/* View Details - Beautiful Text Link */
.view-details-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: var(--transition-smooth);
}

.view-details-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.view-details-link:hover {
    color: var(--gold-light);
}

.view-details-link:hover::after {
    width: 100%;
}

/* Add to Cart - Circular Icon */
.add-to-cart-icon-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(10, 9, 8, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.add-to-cart-icon-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-deep);
    border-color: var(--gold-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.add-to-cart-icon-btn svg {
    width: 18px;
    height: 18px;
}

/* Override old button styles */
.action-btn {
    display: none !important;
}

/* === CATEGORY CAROUSEL === */
.category-carousel .swiper-slide {
    transition: var(--transition-smooth);
}

.category-img-wrapper {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-soft) !important;
    transition: var(--transition-bounce) !important;
}

.category-img-wrapper:hover {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-10px);
}

/* === CATEGORY CARDS (Homepage) === */
.category-card-link {
    text-decoration: none;
    display: block;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    height: 100%;
}

.category-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.category-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-panel);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-img img {
    transform: scale(1.08);
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 1rem 0.75rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--bg-deep);
    transition: color 0.3s ease;
}

.category-card:hover .category-card-title {
    color: var(--gold-primary);
}

@media (max-width: 768px) {
    .category-card-title {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }

    /* Make categories display one per row on mobile like products */
    .category-card-link {
        display: flex;
    }

    .category-card {
        display: flex;
        flex-direction: row;
        text-align: left;
        width: 100%;
    }

    .category-card-img {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
        border-radius: 12px 0 0 12px;
    }

    .category-card-title {
        display: flex;
        align-items: center;
        flex: 1;
        padding: 1rem;
        border-radius: 0 12px 12px 0;
    }
}

/* === ABOUT SECTION === */
.about-section {
    padding: 8rem 0;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    max-width: 600px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 2rem;
}

/* === FEATURES / WHY US === */
.features-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-panel);
}

.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon {
    background: var(--gold-primary);
    color: var(--bg-deep);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === FOOTER === */
footer {
    padding: 6rem 0 3rem;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-soft);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Footer logo in wrapper - no filter needed */
.footer-logo img {
    max-height: 50px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.footer-logo:hover img {
    transform: scale(1.02);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 8px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.operating-hours {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    padding: 1.5rem;
    margin-top: 1rem;
}

.operating-hours .time {
    color: var(--gold-primary);
    font-weight: 500;
}

#footer-bottom {
    background: var(--bg-deep);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-soft);
}

#footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Social Links */
.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    margin-right: 0.5rem;
}

.social-links a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

/* === PRELOADER === */
.preloader-wrapper {
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.preloader-wrapper .preloader {
    margin: 0 auto;
    transform: translateZ(0);
    position: relative;
}

.preloader::before,
.preloader::after,
.preloader {
    background: var(--gold-primary) !important;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    animation: preloader-animation 1.2s infinite ease-in-out;
}

.preloader {
    animation-delay: -0.16s;
}

.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3.5em;
    animation-delay: -0.32s;
}

.preloader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 3.5em;
}

@keyframes preloader-animation {

    0%,
    80%,
    100% {
        box-shadow: 0 2em 0 -1em var(--gold-primary);
    }

    40% {
        box-shadow: 0 2em 0 0 var(--gold-primary);
    }
}

/* Mobile Preloader Adjustments */
@media (max-width: 576px) {

    .preloader::before,
    .preloader::after,
    .preloader {
        width: 1.5em;
        height: 1.5em;
    }

    .preloader::before {
        left: -2.5em;
    }

    .preloader::after {
        left: 2.5em;
    }

    @keyframes preloader-animation {

        0%,
        80%,
        100% {
            box-shadow: 0 1.5em 0 -0.75em var(--gold-primary);
        }

        40% {
            box-shadow: 0 1.5em 0 0 var(--gold-primary);
        }
    }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {
    .hero-showcase {
        max-width: 420px;
    }

    .showcase-img {
        height: 300px;
    }

    .showcase-stats {
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .main-swiper {
        height: auto;
        min-height: 85vh;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .hero-content {
        padding: 4rem 0 3rem;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-nav {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .main-slider .swiper-pagination {
        left: 50%;
        transform: translateX(-50%);
    }

    .package-card.featured {
        transform: none;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-swiper {
        min-height: 100vh;
        max-height: none;
    }

    .hero-content {
        padding: 6rem 1rem 4rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-desc {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .hero-feature {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-particles .smoke-particle {
        width: 200px;
        height: 200px;
    }

    .hero-accent {
        opacity: 0.4;
    }

    .news-ticker {
        padding: 0.4rem 0;
    }

    .ticker-item {
        font-size: 0.75rem;
        padding: 0 1rem;
    }

    .toast-stack {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 1rem;
        max-width: none;
    }

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

@media (max-width: 480px) {
    .hero-badge {
        padding: 0.5rem 1rem;
    }

    .hero-badge-text {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

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

    .main-slider .swiper-pagination {
        bottom: 20px;
    }

    .hero-progress {
        height: 2px;
    }
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING SOCIAL MEDIA SIDEBAR
═══════════════════════════════════════════════════════════════════════════ */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(26, 25, 24, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    border-left: none;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.social-sidebar-link:first-child {
    border-radius: 0 12px 0 0;
}

.social-sidebar-link:last-child {
    border-radius: 0 0 12px 0;
}

.social-sidebar-link svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-sidebar-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-sidebar-link:hover {
    transform: translateX(8px);
    border-color: var(--gold-primary);
    color: var(--bg-deep);
    box-shadow: 4px 0 20px rgba(212, 175, 55, 0.3);
}

.social-sidebar-link:hover::before {
    opacity: 1;
}

.social-sidebar-link:hover svg {
    transform: scale(1.15);
    color: var(--bg-deep);
}

/* WhatsApp uses same styling as other social icons (gold hover) */

/* Tooltip on hover */
.social-sidebar-link::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--bg-panel);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-soft);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-sidebar-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(15px);
}

/* Mobile: show at bottom */
@media (max-width: 768px) {
    .social-sidebar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        background: rgba(10, 9, 8, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-soft);
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .social-sidebar-link {
        width: 45px;
        height: 45px;
        border-radius: 10px !important;
        border: 1px solid var(--border-soft);
    }

    .social-sidebar-link:hover {
        transform: translateY(-4px);
    }

    .social-sidebar-link::after {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE MENU / OFFCANVAS RESPONSIVE STYLES
═══════════════════════════════════════════════════════════════════════════ */

/* Ensure offcanvas works above all other elements */
.offcanvas {
    z-index: 1055 !important;
}

.offcanvas-backdrop {
    z-index: 1050 !important;
    background-color: rgba(0, 0, 0, 0.85) !important;
    opacity: 1 !important;
}

.offcanvas-backdrop.show {
    opacity: 1 !important;
}

/* Force backdrop to show properly */
.offcanvas.show~.offcanvas-backdrop,
.offcanvas.showing~.offcanvas-backdrop {
    opacity: 1 !important;
}

/* Offcanvas Menu Styling */
#offcanvasNavbar {
    max-width: 320px;
    width: 85vw;
    background: var(--bg-deep, #0a0908) !important;
    border-left: 1px solid var(--border-soft);
}

#offcanvasNavbar .offcanvas-header {
    padding: 1.25rem 1.5rem;
    background: var(--bg-deep, #0a0908) !important;
    border-bottom: 1px solid var(--border-soft);
}

#offcanvasNavbar .offcanvas-body {
    padding: 1.5rem;
    background: var(--bg-panel, #1a1918) !important;
    flex-grow: 1;
    overflow-y: auto;
}

/* Mobile Navigation Links */
#offcanvasNavbar .navbar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

#offcanvasNavbar .nav-item {
    border-bottom: 1px solid var(--border-soft);
}

#offcanvasNavbar .nav-item:last-child {
    border-bottom: none;
}

#offcanvasNavbar .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-main, #faf8f5) !important;
    padding: 1rem 0 !important;
    display: block;
    transition: all 0.3s ease;
    background: transparent !important;
}

#offcanvasNavbar .nav-link:hover,
#offcanvasNavbar .nav-link.active {
    color: var(--gold-primary, #D4AF37) !important;
    padding-left: 0.5rem !important;
}

#offcanvasNavbar .nav-link::after {
    display: none;
}

/* Cart and Search Offcanvas */
#offcanvasCart,
#offcanvasSearch {
    max-width: 400px;
    width: 90vw;
    background: var(--bg-panel, #1a1918) !important;
}

/* Hamburger Menu Button */
.navbar-toggler {
    padding: 0.5rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler:hover {
    opacity: 0.8;
}

.navbar-toggler svg {
    width: 24px;
    height: 24px;
    color: var(--text-main);
}

/* Mobile Header Adjustments */
@media (max-width: 991px) {
    header.sticky-top {
        padding: 0.75rem 0;
    }

    header.sticky-top .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Ensure proper spacing for icons */
    header .col-6.col-lg-2.d-flex {
        gap: 0.75rem !important;
    }

    /* Make icons smaller on mobile */
    header .nav-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    #offcanvasNavbar {
        max-width: 280px;
    }

    #offcanvasNavbar .nav-link {
        font-size: 0.85rem;
        padding: 0.875rem 0 !important;
    }

    #offcanvasCart,
    #offcanvasSearch {
        max-width: 100%;
        width: 100%;
    }

    header.sticky-top {
        padding: 0.5rem 0;
    }

    .main-logo img {
        max-height: 40px;
        max-width: 120px;
    }

    header .col-6.col-lg-2.d-flex {
        gap: 0.5rem !important;
    }

    /* Reduce icon container sizes */
    header .nav-link svg {
        width: 16px;
        height: 16px;
    }

    .navbar-toggler svg {
        width: 20px;
        height: 20px;
    }

    /* Cart count badge positioning */
    .cart-count {
        font-size: 0.65rem;
        width: 16px;
        height: 16px;
        top: -6px;
        right: -6px;
    }
}

/* Ensure body doesn't scroll when offcanvas is open */
body.offcanvas-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Smooth offcanvas animation */
.offcanvas.offcanvas-end {
    transition: transform 0.3s ease-in-out;
}

/* Safe area padding for notched devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    #offcanvasNavbar .offcanvas-body {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
    }

    .social-sidebar {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Prevent social sidebar from covering offcanvas toggle */
@media (max-width: 768px) {
    .social-sidebar {
        z-index: 998;
    }
}

/* Fix sticky header interfering with offcanvas */
header.sticky-top {
    z-index: 1030;
}

/* When offcanvas is showing, ensure proper stacking */
.offcanvas.show,
.offcanvas.showing {
    z-index: 1055 !important;
}

/* Ensure backdrop covers sticky header */
.offcanvas-backdrop.show,
.offcanvas-backdrop.showing {
    z-index: 1050 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

/* Additional offcanvas fixes for iOS and mobile */
@media (max-width: 991px) {
    .offcanvas {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100% !important;
        height: 100vh !important;
        height: -webkit-fill-available;
    }

    .offcanvas-body {
        height: calc(100% - 65px);
        overflow-y: auto;
    }
}

.product-item {
    margin-bottom: 0px !important;
}