﻿@charset "utf-8";
body {
    background-image: url("../../images/backgrounds/banner3a.avif");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45); /* dunkler Schleier */

    z-index: -1;
}
/* RESET TEMPLATE PROBLEME */
#main article {
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
    max-width: 1200px;
}

/* GRID */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

/* PRODUCT */
.luxury-product {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.luxury-product img {
    width: 100%;
    display: block;
}

/* TITLE */
.product-title {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* TEXT OVERLAY */
.luxury-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        transparent
    );

    font-size: 0.8rem;
}

/* SECTION */
section {
    margin-bottom: 60px;
}/* CSS Document */

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.qty-input {
    width: 50px;
    border-radius: 6px;
    border: none;
    text-align: center;
}

.print-btn,
.whatsapp-btn {
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
}

.print-btn {
    background: #444;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}
/* FIX: MAIN vollständig anzeigen */
#main {
    display: block !important;
    height: auto !important;
}

#wrapper {
    justify-content: flex-start !important;
}

#main article {
    margin: 0 auto;
}
#header {
    opacity: 1 !important;
    transform: none !important;
}
/* CATEGORY BANNER FIX */
.category-banner {
    background: rgba(0,0,0,0.4);
    padding: 20px;
}

.category-image {
    width: 100%;
    height: auto;
    display: block;
}
/* PRODUCT CONTAINER */
.luxury-product {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.luxury-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.product-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.85);
    color: white;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* wichtig */

    overflow-y: auto; /* 🔥 DAS IST DER FIX */

    opacity: 0;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.luxury-product:hover .product-overlay {
    opacity: 1;
}

/* TEXT */
.product-overlay h3 {
    margin-bottom: 10px;
}

.product-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* BUTTONS */
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-btn {
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
}

.action-btn:hover {
    background: rgba(255,255,255,0.3);
}
/* ===================== */
/* CATEGORY NAV DELUXE */
/* ===================== */

.category-nav-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    justify-content: center;

    padding: 15px;
    border-radius: 14px;

    /* dunkler Hintergrund */
    background: rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(6px);
}

/* BUTTONS */
.category-nav-modern a {
    padding: 10px 18px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 600;

    /* 🔥 GOLD */
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.7),
    rgba(241,215,122,0.7)
);

    color: #222;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);

    transition: all 0.3s ease;
}

/* HOVER */
.category-nav-modern a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* ACTIVE */
.category-nav-modern a.active {
    background: linear-gradient(
        135deg,
        #fff3b0,
        #ffd700,
        #e6c200
    );
    color: black;
}
/* ===================== */
/* PREMIUM BUTTON STYLE */
/* ===================== */

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 500;

    color: rgba(255,255,255,0.9);
    text-decoration: none;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.15);

    transition: all 0.25s ease;
}

/* Hover = Apple smooth */
.action-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}

/* Click feeling */
.action-btn:active {
    transform: scale(0.96);
}

/* WhatsApp subtle highlight */
.action-btn.whatsapp {
    border-color: rgba(37,211,102,0.6);
}

/* optional: stronger hover for WhatsApp */
.action-btn.whatsapp:hover {
    background: rgba(37,211,102,0.2);
}
/* RESET für <button> */
.action-btn {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
}

/* dein Style + Fix */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 500;

    color: rgba(255,255,255,0.9);

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.2);

    transition: all 0.25s ease;
}
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: gold;
    z-index: 9999;
}
.jump-btn {
  display: inline-block;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ff0000, #ff4d4d);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255,0,0,0.4);
  transition: all 0.3s ease;
}

.jump-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(255,0,0,0.6);
}