/* ===========================
   HolzArt Swiss - Premium Design
   Inspired by Monolith Wood
   =========================== */

/* ===========================
   Logo Visibility Control
   Verhindert Logo-Flash vor Preloader
   =========================== */
body.loaded .logo img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===========================
   CSS Reset & Variables
   =========================== */

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

:root {
    /* Premium Farbschema - Neutral Grau */
    --black: rgba(35, 35, 35, 1);
    --dark: rgba(50, 50, 50, 1);
    --dark-grey: rgba(70, 70, 70, 1);
    --medium-grey: rgba(110, 110, 110, 1);
    --light-grey: rgba(140, 140, 140, 1);
    --off-white: rgba(213, 154, 18, 0.08);
    --white: #ffffff;

    /* Matt-Grau für Boxen/Footer */
    --matt-grey: rgba(75, 75, 75, 1);
    --matt-grey-light: rgba(95, 95, 95, 1);
    --matt-grey-dark: rgba(55, 55, 55, 1);

    /* Akzentfarben - Gold */
    --accent: rgba(213, 154, 18, 1);
    --accent-light: rgba(230, 180, 50, 1);
    --accent-dark: rgba(190, 140, 15, 1);

    /* Gold für Premium-Elemente */
    --gold: rgba(213, 154, 18, 1);
    --gold-light: rgba(230, 180, 50, 1);
    --gold-subtle: rgba(213, 154, 18, 0.12);

    /* Status-Farben */
    --error: #ef4444;
    --success: #22c55e;

    /* Typography */
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;

    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: clip;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 4rem;
}

/* Selection Color */
::selection {
    background: var(--accent);
    color: var(--white);
}

/* ===========================
   Accessibility - Skip Links
   =========================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--matt-grey);
    color: var(--white);
    padding: 1rem 2rem;
    z-index: 10001;
    text-decoration: none;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Focus States für Accessibility */
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced Motion für Benutzer, die keine Animationen möchten */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .preloader {
        display: none !important;
    }
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

/* Standard: dunkle Farben für weisse Navbar */
.navbar .nav-link {
    color: var(--black);
}

.navbar .brand-text {
    color: var(--black);
}

.navbar .hamburger span {
    background: var(--matt-grey);
}

.navbar .nav-cart-btn {
    color: var(--black);
}

/* Homepage Override - transparente Navbar mit !important */
.navbar-homepage {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.navbar-homepage .nav-link {
    color: var(--white) !important;
}

.navbar-homepage .brand-text {
    color: var(--white) !important;
}

.navbar-homepage .hamburger span {
    background: var(--white) !important;
}

.navbar-homepage .nav-cart-btn {
    color: var(--white) !important;
}

/* Homepage scrolled - zurück zu weiss */
.navbar-homepage.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08) !important;
}

.navbar-homepage.scrolled .nav-link {
    color: var(--black) !important;
}

.navbar-homepage.scrolled .brand-text {
    color: var(--black) !important;
}

.navbar-homepage.scrolled .hamburger span {
    background: var(--matt-grey) !important;
}

.navbar-homepage.scrolled .nav-cart-btn {
    color: var(--black) !important;
}

/* Scrolled State - weisser Hintergrund beim Scrollen */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--black);
}

.navbar.scrolled .brand-text {
    color: var(--black);
}

.navbar.scrolled .hamburger span {
    background: var(--matt-grey);
}

/* Navbar-light: Für Seiten OHNE dunklen Hero - mit Blur-Hintergrund */
.navbar.navbar-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
}

.navbar.navbar-light .nav-link {
    color: var(--black);
}

.navbar.navbar-light .brand-text {
    color: var(--black);
}

.navbar.navbar-light .hamburger span {
    background: var(--matt-grey);
}

.navbar.navbar-light .nav-cart-btn {
    color: var(--black);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo und Brand-Name Gruppe - untereinander */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 0.3rem;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
    height: 35px;
}

/* Alte brand-name div ausblenden (falls noch vorhanden) */
.brand-name {
    display: none;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.logo a:hover .brand-text {
    opacity: 0.7;
}

.navbar.scrolled .brand-text {
    color: var(--black);
}

.navbar.navbar-light .brand-text {
    color: var(--black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin-left: auto;
}

/* Desktop: Hide mobile navigation */
.mobile-nav {
    display: none;
}

/* Desktop: Hide mobile-only elements */
.nav-menu .mobile-only {
    display: none;
}

.nav-menu .desktop-only {
    display: inline;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    white-space: nowrap;
}

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

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

/* Navigation für kleinere Desktop-Bildschirme */
@media (max-width: 1200px) and (min-width: 969px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

/* Dropdown-Indikator - kleiner Pfeil im Link */
.nav-item-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-item-dropdown > .nav-link::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    opacity: 0;
    transition: opacity 0.25s ease, bottom 0.25s ease;
    z-index: 1001;
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.05));
}

.nav-item-dropdown:hover > .nav-link::before {
    opacity: 1;
    bottom: -8px;
}

/* Chevron-Icon für Dropdown-Links */
.dropdown-chevron {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-top: -2px;
    opacity: 0.7;
}

.nav-item-dropdown:hover .dropdown-chevron {
    transform: rotate(-135deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border: none;
    border-radius: 6px;
    padding: 0.75rem 0;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
                0 2px 10px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

/* Bridge-Element um den Gap zwischen Link und Dropdown zu überbrücken */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Mobile Dropdown - geöffneter Status */
.nav-item-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.25rem;
    color: var(--black);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 4px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--accent);
}

.dropdown-item:hover::before {
    transform: translateY(-50%) scaleY(1);
}

/* ===========================
   Shop Mega Menu
   =========================== */

.shop-mega-menu {
    min-width: 700px;
    max-width: 900px;
    padding: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-radius: 8px;
}

.nav-item-dropdown.shop-dropdown:hover .shop-mega-menu {
    transform: translateX(-50%) translateY(0);
}

/* Service & Pflege Dropdown */
.service-menu {
    min-width: 220px;
    padding: 0.5rem 0;
}

/* Dropdown Items in Service Menu ohne Rand */
.service-menu .dropdown-item {
    margin: 0;
    border-radius: 0;
    padding: 0.65rem 1.25rem;
}

.service-menu .dropdown-item:first-child {
    border-radius: 4px 4px 0 0;
}

.service-menu .dropdown-item:last-child {
    border-radius: 0 0 4px 4px;
}

.nav-item-dropdown.service-dropdown:hover .service-menu,
.nav-item-dropdown.ueber-uns-dropdown:hover .service-menu,
.nav-item-dropdown.werkstatt-dropdown:hover .service-menu,
.nav-item-dropdown.accessoires-dropdown:hover .service-menu {
    transform: translateX(-50%) translateY(0);
}

/* ===========================
   Exklusive Möbel Mega Menu
   =========================== */

.moebel-mega-menu {
    min-width: 650px;
    max-width: 750px;
    padding: 1.5rem 1.75rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-radius: 8px;
}

.nav-item-dropdown.moebel-dropdown:hover .moebel-mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-menu-column .dropdown-item {
    margin: 0;
    padding: 0.5rem 0.5rem;
    font-size: 0.85rem;
}

.mega-menu-column .dropdown-item::before {
    display: none;
}

.mega-menu-column .dropdown-item:hover {
    background: transparent;
    color: var(--accent);
    padding-left: 0.75rem;
}

/* Aktion Link in Navigation */
.nav-link-sale {
    color: #e53935 !important;
    font-weight: 600 !important;
}

.mobile-nav-sale {
    color: #e53935 !important;
    font-weight: 600 !important;
}

/* Mobile Kategorieüberschriften */
.mobile-submenu-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem 0.5rem;
    margin-top: 0.5rem;
}

.mobile-submenu-category:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* Responsive Mega Menu für Möbel */
@media (max-width: 1200px) {
    .moebel-mega-menu {
        min-width: 500px;
        max-width: 600px;
    }

    .mega-menu-grid {
        gap: 1rem;
    }
}

@media (max-width: 968px) {
    .moebel-mega-menu {
        display: none !important;
    }
}

.shop-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.shop-category-preview {
    background: var(--off-white);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border-radius: 6px;
}

.shop-category-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.shop-category-preview-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: var(--medium-grey);
}

.shop-category-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-category-preview:hover .shop-category-preview-image img {
    transform: scale(1.06);
}

.shop-category-preview-info {
    padding: 0.75rem 0.875rem;
    text-align: center;
}

.shop-category-preview-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
}

.shop-mega-menu-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.shop-mega-menu-footer a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.shop-mega-menu-footer a:hover {
    color: var(--accent);
}

/* Responsive Mega Menu */
@media (max-width: 1200px) {
    .shop-mega-menu {
        min-width: 550px;
        max-width: 700px;
    }

    .shop-mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .shop-mega-menu {
        display: none !important;
    }
}

/* Nav Actions (Cart Button) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

/* Warenkorb auf allen Seiten sichtbar */

.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-cart-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.nav-cart-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.nav-cart-btn .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
}

/* Scrolled navbar cart button */
.navbar.scrolled .nav-cart-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--black);
}

.navbar.scrolled .nav-cart-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-cart-btn .cart-count {
    border-color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.75rem;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hamburger immer weiss wenn Menü offen */
.hamburger.active span {
    background: var(--white) !important;
}

/* ===========================
   Hero Section with Video
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--matt-grey);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(35, 35, 35, 0.3) 0%,
        rgba(35, 35, 35, 0.5) 50%,
        rgba(35, 35, 35, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-title .line:nth-child(1) {
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title .line:nth-child(2) {
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-title .line:nth-child(3) {
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.3s;
}

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

/* ===========================
   Page Hero (Unterseiten)
   =========================== */

.page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--black);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Overlay für bessere Lesbarkeit */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.page-hero > * {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-style: italic;
    line-height: 1.6;
}

/* Kleine Variante für Unterseiten */
.page-hero.page-hero-small,
.service-hero {
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
}

/* Service Hero erbt von page-hero */
.service-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--black);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.service-hero > * {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.95;
    font-style: italic;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .page-hero {
        height: 60vh;
        min-height: 400px;
        padding-top: 70px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .page-hero.page-hero-small,
    .service-hero {
        height: 45vh;
        min-height: 300px;
    }

    .service-hero {
        padding-top: 70px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .page-hero h1,
    .service-hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .page-hero p,
    .service-hero p {
        font-size: 1rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
}

.scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--white);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(200%);
    }
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* White button for dark backgrounds */
.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-dark {
    background: var(--matt-grey);
    color: var(--white);
    border-color: var(--matt-grey);
}

.btn-dark:hover {
    background: var(--matt-grey-dark);
    color: var(--white);
    border-color: var(--matt-grey-dark);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* ===========================
   Section Styling
   =========================== */

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-grey);
    line-height: 1.8;
}

/* ===========================
   About Section
   =========================== */

.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--medium-grey);
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--gold);
}

.feature-icon svg {
    stroke: var(--gold);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--light-grey);
    line-height: 1.6;
}

/* ===========================
   Products Section
   =========================== */

.products {
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--off-white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid var(--white);
    transition: var(--transition-fast);
}

.product-link:hover {
    background: var(--white);
    color: var(--black);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--light-grey);
    font-size: 0.95rem;
}

/* ===========================
   Video Showcase Section
   =========================== */

.video-showcase {
    background: var(--matt-grey);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.video-showcase .section-tag {
    color: var(--gold-light);
}

.video-showcase .section-title {
    color: var(--white);
}

.video-showcase .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--dark);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.video-item:hover .video-item-overlay {
    transform: translateY(0);
}

.video-item-overlay h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.video-item-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===========================
   Gallery Section
   =========================== */

.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    background: var(--off-white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition-fast);
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
}

.gallery-item-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.gallery-item-caption p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===========================
   Team Section
   =========================== */

.team {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.team-quote {
    font-size: 0.95rem;
    color: var(--light-grey);
    font-style: italic;
}

.team-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

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

/* ===========================
   Contact Section
   =========================== */

.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info {
    background: var(--matt-grey);
    padding: 3rem;
    color: var(--white);
}

.contact-info-header {
    margin-bottom: 3rem;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.6);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--white);
}

.contact-social {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.contact-social-links a:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(213, 154, 18, 0.5);
}

.contact-social-links a svg {
    fill: var(--white);
    width: 20px;
    height: 20px;
}

/* Form Styles */
.contact-form-wrapper {
    padding: 1rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid var(--light-grey);
    background: transparent;
    color: var(--black);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-grey);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

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

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-bottom-color: var(--error);
}

.form-error {
    color: var(--error);
    font-size: 0.85rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-helper {
    display: flex;
    justify-content: flex-end;
}

.char-counter {
    font-size: 0.85rem;
    color: var(--light-grey);
}

/* Checkbox Styles */
.checkbox-group {
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 1px solid var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--medium-grey);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--black);
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.btn-submit {
    position: relative;
    min-width: 200px;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-loader {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-required-note {
    font-size: 0.85rem;
    color: var(--light-grey);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 4rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-icon {
    margin-bottom: 2rem;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--medium-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--matt-grey);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-light);
    color: var(--white);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(213, 154, 18, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Footer Address Link */
.footer-address {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-address:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.footer-address p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-address p::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.footer-contact ul li {
    margin-bottom: 0.5rem;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact ul li a:hover {
    color: var(--white);
}

/* Footer Payment Icons */
.footer-payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-payment-icons svg {
    width: 38px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-payment-icons svg:hover {
    opacity: 1;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(213, 154, 18, 0.5);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

/* Footer Social Links (Shop-Seiten) */
.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(213, 154, 18, 0.5);
}

.footer-social-links a svg {
    width: 18px;
    height: 18px;
}

/* Footer Decoration Line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.footer {
    position: relative;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }

    .products-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--matt-grey);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        padding: 2rem;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        z-index: 1001;
        position: fixed;
        right: 20px;
        top: 28px;
    }

    .navbar.scrolled .hamburger {
        top: 20px;
    }

    /* Nav Actions (Cart) Mobile - links vom Hamburger */
    .nav-actions {
        position: fixed;
        right: 70px;
        top: 26px;
        z-index: 1001;
        margin-left: 0;
    }

    .navbar.scrolled .nav-actions {
        top: 18px;
    }

    .nav-cart-btn {
        width: 40px;
        height: 40px;
    }

    /* Nav Container Mobile ab 968px */
    .nav-container {
        position: relative;
        justify-content: flex-start;
        gap: 1rem;
    }

    .brand-name {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Desktop Navigation auf Mobile verstecken */
    .desktop-nav {
        display: none !important;
    }

    /* Mobile Navigation Container */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, #1a1714 0%, #0f0d0b 100%);
        z-index: 999;
        transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .mobile-nav.active {
        right: 0;
    }

    /* Mobile Menu Panels */
    .mobile-menu-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 110px 28px 40px;
        overflow-y: auto;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    /* Hauptmenü - Standard sichtbar */
    .mobile-menu-main {
        transform: translateX(0);
    }

    .mobile-menu-main.slide-out {
        transform: translateX(-100%);
    }

    /* Untermenü Panels - von rechts reinschieben */
    .mobile-submenu-panel {
        transform: translateX(100%);
    }

    .mobile-submenu-panel.active {
        transform: translateX(0);
    }

    /* Mobile Menu Liste */
    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-list li {
        margin: 0;
        opacity: 0;
        transform: translateX(-15px);
        animation: mobileMenuItemIn 0.4s ease forwards;
    }

    .mobile-nav.active .mobile-menu-list li:nth-child(1) { animation-delay: 0.1s; }
    .mobile-nav.active .mobile-menu-list li:nth-child(2) { animation-delay: 0.15s; }
    .mobile-nav.active .mobile-menu-list li:nth-child(3) { animation-delay: 0.2s; }
    .mobile-nav.active .mobile-menu-list li:nth-child(4) { animation-delay: 0.25s; }
    .mobile-nav.active .mobile-menu-list li:nth-child(5) { animation-delay: 0.3s; }
    .mobile-nav.active .mobile-menu-list li:nth-child(6) { animation-delay: 0.35s; }

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

    /* Mobile Nav Links */
    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1.1rem 0;
        color: var(--white);
        font-size: 1.15rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        cursor: pointer;
        transition: all 0.25s ease;
        text-align: left;
        position: relative;
    }

    .mobile-nav-link::before {
        content: '';
        position: absolute;
        left: -28px;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--accent);
        border-radius: 2px;
        transition: height 0.25s ease;
    }

    .mobile-nav-link:hover::before,
    .mobile-nav-link:active::before {
        height: 50%;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        color: var(--accent);
    }

    .mobile-nav-link.has-submenu .submenu-arrow {
        color: rgba(255,255,255,0.5);
        transition: all 0.25s ease;
    }

    .mobile-nav-link.has-submenu:hover .submenu-arrow,
    .mobile-nav-link.has-submenu:active .submenu-arrow {
        transform: translateX(6px);
        color: var(--accent);
    }

    /* Zurück-Button */
    .mobile-back-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 0.85rem 0;
        margin-bottom: 1.25rem;
        color: var(--white);
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        cursor: pointer;
        transition: all 0.25s ease;
        text-align: left;
    }

    .mobile-back-btn svg {
        color: var(--accent);
        transition: transform 0.25s ease;
    }

    .mobile-back-btn:hover,
    .mobile-back-btn:active {
        color: var(--accent);
    }

    .mobile-back-btn:hover svg,
    .mobile-back-btn:active svg {
        transform: translateX(-6px);
    }

    /* Untermenü Liste */
    .mobile-submenu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-submenu-list li {
        margin: 0;
    }

    .mobile-submenu-list a {
        display: flex;
        align-items: center;
        padding: 0.95rem 0;
        padding-left: 0.75rem;
        color: rgba(255,255,255,0.75);
        font-size: 0.95rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        transition: all 0.25s ease;
        position: relative;
    }

    .mobile-submenu-list a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) scale(0);
        width: 5px;
        height: 5px;
        background: var(--accent);
        border-radius: 50%;
        transition: transform 0.2s ease;
    }

    .mobile-submenu-list a:hover,
    .mobile-submenu-list a:active {
        color: var(--white);
        padding-left: 1.25rem;
        background: rgba(255,255,255,0.03);
    }

    .mobile-submenu-list a:hover::before,
    .mobile-submenu-list a:active::before {
        transform: translateY(-50%) scale(1);
    }

    /* Animation für Submenu-Items */
    .mobile-submenu-panel.active .mobile-submenu-list li {
        opacity: 0;
        transform: translateX(10px);
        animation: submenuItemIn 0.35s ease forwards;
    }

    .mobile-submenu-panel.active .mobile-submenu-list li:nth-child(1) { animation-delay: 0.05s; }
    .mobile-submenu-panel.active .mobile-submenu-list li:nth-child(2) { animation-delay: 0.1s; }
    .mobile-submenu-panel.active .mobile-submenu-list li:nth-child(3) { animation-delay: 0.15s; }
    .mobile-submenu-panel.active .mobile-submenu-list li:nth-child(4) { animation-delay: 0.2s; }
    .mobile-submenu-panel.active .mobile-submenu-list li:nth-child(5) { animation-delay: 0.25s; }
    .mobile-submenu-panel.active .mobile-submenu-list li:nth-child(6) { animation-delay: 0.3s; }
    .mobile-submenu-panel.active .mobile-submenu-list li:nth-child(7) { animation-delay: 0.35s; }

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

    /* Dropdown Menu und Chevron auf Mobile verstecken */
    .dropdown-menu {
        display: none !important;
    }

    .dropdown-chevron {
        display: none !important;
    }

    /* Pfeil-Indikator auf Mobile verstecken */
    .nav-item-dropdown > .nav-link::before {
        display: none !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .about-image::after {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .video-item-overlay {
        transform: translateY(0);
    }

    /* Improve touch targets */
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    /* Navigation Mobile */
    .navbar {
        padding: 1rem 0;
    }

    .logo img {
        height: 40px;
    }

    .brand-text {
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }

    /* Products & Gallery Mobile */
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-image {
        height: 280px;
    }

    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-item-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 1.5rem;
    }

    /* About Section Mobile */
    .about-image img {
        height: 350px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-icon {
        margin: 0 auto;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-description {
        font-size: 1rem;
    }

    /* Video Section Mobile */
    .video-item {
        aspect-ratio: 4/3;
    }

    .video-item-overlay {
        padding: 1.5rem;
    }

    .video-item-overlay h3 {
        font-size: 1.1rem;
    }

    /* Team Section Mobile */
    .team-member {
        padding: 0 1rem;
    }

    .team-image {
        width: 150px;
        height: 150px;
    }

    /* Contact Section Mobile */
    .contact-info {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

    .contact-info-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .contact-info-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .contact-info-header p {
        font-size: 0.9rem;
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        text-align: left;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon svg {
        stroke: var(--gold-light);
    }

    .contact-item h4 {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .contact-item p,
    .contact-item a {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-social {
        text-align: center;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .contact-social h4 {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .contact-social-links {
        justify-content: center;
        gap: 0.75rem;
    }

    .contact-social-links a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }

    .contact-social-links a:hover {
        background: var(--accent);
        transform: scale(1.1);
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 1rem 0;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-submit {
        width: 100%;
    }

    .form-required-note {
        text-align: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo p {
        max-width: 100%;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    /* Modal Mobile */
    .modal-content {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .modal-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hero Extra Small */
    .hero-tag {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Buttons Extra Small */
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    /* Products Extra Small */
    .product-image {
        height: 240px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    /* Gallery Extra Small */
    .gallery-item {
        height: 220px;
    }

    /* About Extra Small */
    .about-image img {
        height: 280px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* Team Extra Small */
    .team-image {
        width: 130px;
        height: 130px;
    }

    .team-info h3 {
        font-size: 1.2rem;
    }

    /* Contact Extra Small */
    .contact-info {
        padding: 1.25rem;
    }

    .contact-item {
        padding: 0.85rem;
        gap: 0.85rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-item h4 {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .contact-item p,
    .contact-item a {
        font-size: 0.85rem;
    }

    .contact-social-links a {
        width: 44px;
        height: 44px;
    }

    .contact-social-links a svg {
        width: 18px;
        height: 18px;
    }

    /* Footer Extra Small */
    .footer-links h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Show overlays on touch devices */
    .product-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.4);
    }

    .gallery-item-caption {
        transform: translateY(0);
    }

    .video-item-overlay {
        transform: translateY(0);
    }

    /* Larger touch targets */
    .nav-link {
        padding: 0.75rem 0;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
    }

    .social-links a,
    .contact-social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: auto;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .nav-menu {
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
    }
}

/* ===========================
   Utility Classes
   =========================== */

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

.text-white {
    color: var(--white);
}

.bg-dark {
    background: var(--matt-grey);
}

.bg-light {
    background: var(--off-white);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Animation Classes for JS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===========================
   Premium Preloader
   =========================== */

/* Header verstecken bis Preloader fertig - verhindert Logo-Flash */
#global-header {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded #global-header {
    opacity: 1;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--matt-grey);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: preloaderFadeIn 0.5s ease forwards 0.05s;
}

.preloader-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0;
    animation: preloaderFadeIn 0.5s ease forwards 0.05s;
}

.preloader-text {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.preloader-text span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.3em;
    opacity: 0;
    transform: translateY(20px);
}

.preloader-text span:nth-child(1) { animation: preloaderLetter 0.4s ease forwards 0.15s; }
.preloader-text span:nth-child(2) { animation: preloaderLetter 0.4s ease forwards 0.22s; }
.preloader-text span:nth-child(3) { animation: preloaderLetter 0.4s ease forwards 0.29s; }
.preloader-text span:nth-child(4) { animation: preloaderLetter 0.4s ease forwards 0.36s; }
.preloader-text span:nth-child(5) { animation: preloaderLetter 0.4s ease forwards 0.43s; }
.preloader-text span:nth-child(6) { animation: preloaderLetter 0.4s ease forwards 0.50s; }
.preloader-text span:nth-child(7) { animation: preloaderLetter 0.4s ease forwards 0.57s; }

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

@keyframes preloaderFadeIn {
    to {
        opacity: 1;
    }
}

.preloader-line {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--gold);
    animation: preloaderProgress 1.5s ease-in-out infinite;
}

@keyframes preloaderProgress {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ===========================
   Custom Cursor (Desktop Only)
   =========================== */

@media (hover: hover) and (pointer: fine) {
    /* Standard-Cursor verstecken - NUR wenn Custom Cursor Elemente existieren */
    body.has-custom-cursor * {
        cursor: none !important;
    }

    .cursor-dot {
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .cursor-outline {
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
        opacity: 0;
    }

    body:hover .cursor-dot,
    body:hover .cursor-outline {
        opacity: 1;
    }

    .cursor-dot.hover {
        transform: translate(-50%, -50%) scale(2);
        background: var(--accent);
    }

    .cursor-outline.hover {
        width: 60px;
        height: 60px;
        border-color: var(--accent);
    }

    .cursor-outline.clicking {
        transform: translate(-50%, -50%) scale(0.8);
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* ===========================
   Premium Reveal Animations
   =========================== */

.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

.reveal-text.revealed span {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(40px);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

/* ===========================
   Premium Image Effects
   =========================== */

.image-reveal {
    overflow: hidden;
    position: relative;
}

.image-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--matt-grey);
    z-index: 2;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.revealed::before {
    transform: scaleX(0);
}

.image-reveal img {
    transform: scale(1.3);
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.revealed img {
    transform: scale(1);
}

/* ===========================
   Premium Magnetic Buttons
   =========================== */

.btn-magnetic {
    position: relative;
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-magnetic:hover::before {
    width: 300%;
    height: 300%;
}

/* ===========================
   Premium Parallax Layer
   =========================== */

.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    will-change: transform;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   Premium Text Gradient
   =========================== */

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 3s ease infinite;
}

@keyframes textGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ===========================
   Premium Separator Lines
   =========================== */

.premium-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 4rem 0;
    opacity: 0.5;
}

.premium-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===========================
   Premium Cards Hover Effect
   =========================== */

.premium-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(213, 154, 18, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.premium-card:hover::after {
    opacity: 1;
}

.premium-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

/* ===========================
   Premium Floating Labels
   =========================== */

.form-group-premium {
    position: relative;
}

.form-group-premium input,
.form-group-premium textarea {
    padding-top: 1.5rem;
}

.form-group-premium label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: var(--light-grey);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-group-premium input:focus ~ label,
.form-group-premium input:not(:placeholder-shown) ~ label,
.form-group-premium textarea:focus ~ label,
.form-group-premium textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===========================
   Premium Noise Overlay
   =========================== */

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

/* ===========================
   Premium Smooth Scrollbar
   =========================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--medium-grey);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--matt-grey);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--medium-grey) var(--off-white);
}

/* ===========================
   Premium Loading Shimmer
   =========================== */

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: shimmerEffect 2s infinite;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===========================
   Premium Focus States
   =========================== */

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ===========================
   Premium Section Transitions
   =========================== */

section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    opacity: 0;
    transition: opacity 0.5s ease;
}

section:hover::before {
    opacity: 0.3;
}

/* ===========================
   Premium Background Patterns
   =========================== */

.pattern-dots {
    background-image: radial-gradient(var(--medium-grey) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.pattern-lines {
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(0, 0, 0, 0.03) 50px,
        rgba(0, 0, 0, 0.03) 51px
    );
}

/* ===========================
   Reduced Motion (Accessibility)
   =========================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .preloader {
        display: none !important;
    }

    .hero-video {
        display: none;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    .scroll-indicator {
        display: none;
    }

    /* Show static images instead of videos */
    .hero-video-container::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--poster-image, url('./assets/wix-images/9eb01c_6a28d5dee6ed407f9a233fd214b507a9_mv2.jpg'));
        background-size: cover;
        background-position: center;
    }
}

/* ===========================
   Features Section (USP)
   =========================== */

.features-section {
    padding: 80px 0;
    background: var(--off-white);
}

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

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-box-icon {
    margin-bottom: 24px;
}

.feature-box-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent);
}

/* Feature Box with Images */
.feature-box-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-box:hover .feature-box-image img {
    transform: scale(1.05);
}

.features-grid-images .feature-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-grey);
}

/* Features Section Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 20px 15px;
    }

    .feature-box-icon svg {
        width: 50px;
        height: 50px;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

/* ===========================
   Mobile Zoom Prevention & Touch Optimization
   =========================== */

/* Prevent zoom on double-tap and pinch gestures */
html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Prevent zoom on input focus (iOS) */
input, select, textarea {
    font-size: 16px !important;
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    /* Mobile touch devices */
    body {
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }

    /* Larger touch targets */
    a, button, .btn, input[type="submit"], input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }

    /* Disable hover effects on touch */
    .nav-link:hover,
    .btn:hover,
    .product-item:hover,
    .category-card:hover {
        transform: none;
    }

    /* Remove tap highlight */
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Fix for mobile viewport issues */
@media screen and (max-width: 768px) {
    /* Ensure content doesn't overflow */
    .container {
        max-width: 100%;
    }

    /* Fix potential overflow issues */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    /* Better mobile scrolling */
    .cart-sidebar,
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===========================
   Home Categories Grid
   =========================== */

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.home-category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--matt-grey);
    text-decoration: none;
    display: block;
}

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

.home-category-card:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.home-category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

.home-category-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.home-category-card-content span {
    font-size: 0.9rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.home-category-card:hover .home-category-card-content span {
    opacity: 1;
    transform: translateY(0);
}

/* Home Categories Responsive */
@media (max-width: 1024px) {
    .home-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-category-card {
        aspect-ratio: 16/9;
    }

    .home-category-card-content {
        padding: 1.5rem;
    }

    .home-category-card-content h3 {
        font-size: 1.1rem;
    }
}
