﻿@font-face {
    font-family: 'Rojhelat';
    src: url('../font/rudawbold.ttf');
}
body {
    background-color: #eeeeeead;
    color: #2A2927;
    margin: 0;
    width: 100%;
    font-size: 16px; /* Base font size */
    line-height: 1.6; /* Line height for better readability */
    font-family: "Rojhelat"
}
body a {
    text-decoration: none;
}
    body a:hover {
        color:#F2A007;
    }
    /* Basic style for the hamburger button */
    .hamburger {
        font-size: 30px;
        cursor: pointer;
        background-color: transparent;
        border: none;
        color: #000;

    }
.menu {
    background-color: #b2a592;
    height: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

    .menu .menu-items {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 100%;
    }

    .menu a {
        text-decoration: none;
        color: white;
        padding: 10px 15px;
        transition: background-color 0.3s ease;
        text-align: center;
        flex: 1 1 auto;
        margin: 5px;
        min-width: 80px;
    }

        .menu a:hover {
            background-color: #837869;
        }
.DVCaptur {
    height: 40px;
    padding: 20px;
    display: flex;
}
.refresh {
    background-image: url(../icon/refresh.png);
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    margin-right: 5px;
}
.captchainput {
    padding: 10px;
    border: 1px solid #AAA;
    border-radius: 4px;
    font-size: 1rem;
    color: #000000;
    width:40%;
}
.captchaimage {
    width: 40%;
    height: 38px;
    margin-top: 1px;
    margin-left:5px;
}

.einkaufswagen {
    background-color: transparent;
    position: fixed;
    bottom: 50px;
    right: 30px;
    background-image: url(../icon/einkaufswagen.gif);
    display: block;
    width: 96px;
    height: 96px;
    background-repeat: no-repeat;
    float: right;
    border: 0px;
    margin-left: 8px;
    background-position: 0px 4px;
    mix-blend-mode: multiply;
    z-index: 1000;
}
.Cart {
    background-image: url(../icon/cart.png);
    display: block;
    width: 30px;
    height: 10px;
    background-repeat: no-repeat;
    float: right;
    border: 0px;
    margin-left: 8px;
    background-position: 0px 4px;
}
.Product {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

    .Product:hover {
        border: 1px solid #BBB;
        background-color: #EEE;
    }

/*    .Product img {
        width: 280px;
        height: auto;
        border-radius: 5px;
        margin-right: 15px;
    }*/

    .Product img {
        width: 280px;
        height: auto;
        border-radius: 5px;
        margin-right: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        max-width: 100%;
    }

        /* Fullscreen mode */
        .Product img.fullscreen {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            /* ✅ Prevent distortion */
            width: auto;
            height: auto;
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 10px;
            margin: 0;
            background-color: rgba(0, 0, 0, 0.8);
        }

/* 📱 Responsive tweaks */
@media (max-width: 768px) {
    .Product img {
        width: 100%;
        margin-right: 0;
    }

        .Product img.fullscreen {
            max-width: 95vw;
            max-height: 85vh;
        }
}

@media (max-width: 480px) {
    .Product img.fullscreen {
        max-width: 100vw;
        max-height: 90vh;
        border-radius: 0;
    }
}



    .Product span {
        flex: 1;
        font-size: 18px;
        margin-right: 10px;
    }

    .Product .add, .Product .bt {
        background-color: #CCC;
        color: #fff;
        border: none;
        padding: 10px;
        margin: 0 5px;
        cursor: pointer;
        font-size: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .Product .tb {
        width: 50px;
        text-align: center;
        font-size: 18px;
        margin: 0 5px;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
.nichtvorhanden {
    background-color: #f49f07;
    border-radius: 10px;
    padding: 10px;
}

/* Responsive design */
@media (max-width: 600px) {
    .Product {
        flex-direction: column;
        align-items: flex-start;
    }

        .Product img {
            width: 280px;
            margin-bottom: 10px;
        }

        .Product span {
            margin-bottom: 10px;
        }

        .Product .add, .Product .bt, .Product .tb {
            margin-bottom: 10px;
        }
}

.next-level-button {
    background-color: #04AA6D; /* Green background */
    color: white; /* White text */
    border: none; /* No border */
    padding: 15px 30px; /* Padding */
    text-align: center; /* Centered text */
    text-decoration: none; /* No underline */
    display: inline-block; /* Inline-block */
    font-size: 20px; /* Font size */
    margin: 10px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition */
}

    .next-level-button:hover {
        background-color: #045d3b; /* Darker green on hover */
    }


@media (max-width: 768px) {
    .Category {
        padding: 15px; /* Adjust padding for smaller screens */
        width: 90%; /* Increase width for smaller screens */
    }

    .title {
        font-size: 1.2em; /* Adjust font size for smaller screens */
    }
}



.popup {
    margin: 70px auto;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    transition: all 3s ease-in-out;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #388e3c;
    color: #212121;
    height: 300px;
    overflow: auto;
}

    .popup input[type=submit] {
        background-image: url(icon/Close.png);
        display: block;
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        float: right;
        border: 0px;
        margin-left: 8px;
        background-position: 0px 4px;
        background-color: transparent;
    }

.input {
    margin-bottom: 15px;
    padding-right: 10px;
    padding-left: 10px;
}

    .input span {
        display: block;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .input select, .input input[type="text"] {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-sizing: border-box;
    }

/* Base Table Styling */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    font-family: 'Arial', sans-serif;
    background-color: #fff8e1; /* Light background color resembling pizza crust */
}

    /* Table Header */
    .table th {
        background-color: #b1a491; /* Tomato red for the header */
        color: #ffffff; /* White text color */
        padding: 10px;
        text-align: left;
        border-bottom: 2px solid #b71c1c; /* Darker red border */
    }

    /* Table Rows */
    .table td {
        padding: 10px;
        border-bottom: 1px solid #ccc; /* Light grey border for rows */
        color: #424242; /* Dark grey text */
    }

    /* Alternating Row Background */
    .table tr:nth-child(even) {
        background-color: #f1f8e9; /* Light green background for alternating rows, representing basil */
    }

    /* Hover Effect for Rows */
    .table tr:hover {
        background-color: #ffe0b2; /* Light orange background on hover, like a golden crust */
    }

    /* Table Footer */
    .table tfoot td {
        background-color: #d32f2f; /* Tomato red for the footer */
        color: #ffffff; /* White text color */
        padding: 10px;
        text-align: left;
        border-top: 2px solid #b71c1c; /* Darker red border */
    }

    /* Table Caption */
    .table caption {
        caption-side: top;
        padding: 10px;
        font-size: 1.5em;
        font-weight: bold;
        color: #388e3c; /* Basil green color */
    }

    /* Table Borders */
    .table, .table th, .table td {
        border: 1px solid #e0e0e0; /* Light grey border for the entire table */
    }
.hamburger {
    font-size: 30px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #000;
    position: relative; /* needed for ::after positioning */
}

    .hamburger.notify::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        background: red;
        color: white;
        font-size: 12px;
        font-weight: bold;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


h1 {
    font-size: 1.5em; /* Larger font size for emphasis */
    font-weight: bold; /* Make the text bold */
    margin: 20px 0; /* Add vertical space around the heading */
    position: relative; /* Position for decorative elements */
    padding: 10px 15px; /* Padding inside the heading */
    background: linear-gradient(135deg, #4f4fea00, #b1a491); /* Gradient background */
}




/* PanelNavigator styles */
.panel-navigator {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hidden off the right side */
    height: 100%;
    width: 250px;
    background-color: #2A2927;
    overflow-x: hidden;
    transition: right 0.5s ease; /* Smooth sliding transition */
    z-index: 1000;
    padding-top: 60px; /* Add space for the hamburger button */
}

    .panel-navigator a {
        padding: 10px 15px;
        font-size: 20px;
        color: white;
        display: block;
        text-decoration: none;
        transition: 0.3s;
    }

        .panel-navigator a:hover {
            background-color: #575757;
        }

    /* Panel visible state */
    .panel-navigator.active {
        right: 0; /* Slide in from the right when active */
    }

/* Optional: To create a background overlay when the panel is open */
body.overlay-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Below the menu but above other content */
}

/* Style for slider */
.swiper-container {
    width: 100%;
    height: 100%;
    overflow:hidden ;
}

/* Base styling for swiper-slide */
.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%; /* Full width on small screens */
    max-width: 340px; /* Limit max width for larger screens */
    margin: 10px; /* Adjust margin for better spacing */
    padding: 15px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    /* Ensure image has a fixed height and scales correctly */
    .swiper-slide img {
        width: 100%; /* Full width of the swiper-slide */
        height: 200px; /* Fixed height for all images */
        object-fit: cover; /* Ensure the image covers the area without distortion */
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    /* Link styling */
    .swiper-slide a {
        margin-top: 15px;
        font-size: 1rem; /* Adjust font size for readability on smaller screens */
        font-weight: bold;
        color: #2A2927;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    /* Hover effects */
    .swiper-slide:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 40px rgba(0, 0, 0, 0.2);
    }

        .swiper-slide:hover img {
            transform: scale(1.05);
        }

    .swiper-slide a:hover {
        color: #F2A007; /* Change to a color that fits your branding */
    }

/* Media Queries for responsiveness */

/* Tablets and above */
@media (min-width: 768px) {
    .swiper-slide {
        width: 80%;
        max-width: 350px; /* Slightly larger on tablets and small desktops */
    }

        .swiper-slide img {
            height: 250px; /* Increase height for larger screens */
        }

        .swiper-slide a {
            font-size: 1.2rem; /* Larger font size for better readability */
        }
}

/* Desktops and larger screens */
@media (min-width: 1024px) {
    .swiper-slide {
        width: 30%; /* More slides in a row for larger screens */
        max-width: 400px; /* Larger max width */
    }

        .swiper-slide img {
            height: 300px; /* Further increase height for larger screens */
        }

        .swiper-slide a {
            font-size: 1.3rem; /* Even larger font size */
        }
}

/* Footer General Styles */
.footer {
    background-color: #222;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    font-family: Rojhelat;
    margin-top:40px;
}

    .footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 10px;
    }

        .footer a:hover {
            color: #F2A007; /* Gold hover effect */
        }

    .footer .footer-menu {
        margin-bottom: 20px;
    }

/* Footer Social Media Icons */
.footer-social a {
    display: inline-block;
    margin: 0 8px;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

    .footer-social a:hover {
        color: #F2A007; /* Gold color on hover */
    }

    /* Social Media Icons Specific Colors */
    .footer-social a.fb:hover {
        color: #4267B2;
    }

    .footer-social a.instagram:hover {
        color: #E1306C;
    }

    .footer-social a.twitter:hover {
        color: #1DA1F2;
    }

    .footer-social a.youtube:hover {
        color: #FF0000;
    }

    .footer-social a.telegram:hover {
        color: #0088cc;
    }

    .footer-social a.paypal:hover {
        color: #00457C;
    }

    .footer-social a.clubhouse:hover {
        color: #000000;
    }

    .footer-social a.mail:hover {
        color: #D44638;
    }

/* Footer Bottom Text */
.footer-copyright,
.footer-company {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}
.footer-company {
    font-family: fantasy;
}
    /* Responsive Styles */
    .footer {
    padding: 15px 10px;
}

    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
        width:50%;
        float:right;
    }

        .footer-menu a {
            margin: 5px 0;
            width:100%;
        }

.footer-social {
    margin-bottom: 15px;
    float: left;
    width: 50%;
}

        .footer-social a {
            font-size: 20px;
            margin: 5px;
        }
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Image and Overlay */
.image {
    position: relative;
    display: block;
    max-width: 100%;
    margin-bottom: 20px;
}

    .image img {
        width: 370px; /* Set the width to 370px */
        height: 300px; /* Set the height to 300px */
        object-fit: contain; /* Ensures the image fills the container without distortion */
        border-radius: 8px; /* Optional: Adds slight rounding to the corners */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
    }

.DivOverImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark transparent overlay */
    border-radius: 10px;
    transition: background 0.3s ease;
}

.image:hover .DivOverImage {
    background: rgba(0, 0, 0, 0.6); /* Darker on hover */
}

/* Header Styles */
header.main {
    text-align: center;
    margin-bottom: 20px;
}

    header.main h1 {
        font-size: 2.2em;
        color: #333;
    }

    header.main h5 {
        font-size: 1em;
        color: #777;
        font-weight: normal;
        margin-top: 5px;
    }

/* Panelbanner (Ad Banner) */
.Panelbanner {
    background-color: #f8f8f8;
    padding: 10px;
    text-align: center;
    margin: 20px 0;
    border: 1px solid #ddd;
}

/* Full Text */
p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
}

/* PanelShare (Social Icons) */
.PanelShare {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

    .PanelShare a {
        display: inline-block;
        text-align: center;
        font-size: 1.5em;
        color: #fff;
        background-color: #0077b5; /* Default background color */
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }

        .PanelShare a:hover {
            background-color: #005582; /* Darker on hover */
        }

        /* Specific social media colors */
        .PanelShare a.fb {
            background-color: #4267B2;
        }

        .PanelShare a.twitter {
            background-color: #1DA1F2;
        }

        .PanelShare a.telegram {
            background-color: #0088cc;
        }

        .PanelShare a.whatsapp {
            background-color: #25D366;
        }

        .PanelShare a.pagelike {
            background-color: #4267B2;
        }

/* Responsive Layout */
@media (max-width: 768px) {
    .main {
        padding: 10px;
    }

    header.main h1 {
        font-size: 1.8em;
    }

    header.main h5 {
        font-size: 0.9em;
    }

    .PanelShare {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    header.main h1 {
        font-size: 1.6em;
    }

    header.main h5 {
        font-size: 0.8em;
    }

    .image img {
        border-radius: 0; /* Remove border radius for mobile */
    }

    .Panelbanner {
        margin: 10px 0;
    }

    p {
        font-size: 1em;
    }
}

/* Adjust text alignment for readability */
header.main h1,
header.main h5,
p {
    text-align: justify;
    padding-left:30px;
    padding-right:30px;
}
.like-counter {
    font-size: 1em;
    color: #fff;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .pagelike {
        padding: 5px 10px;
        font-size: 1em;
    }

    .pagelike i {
        margin-right: 5px;
    }

    .like-counter {
        font-size: 0.9em;
    }
}

/* Container for the image and overlay */
.image.main {
    position: relative;
    display: block;
    max-width: 370px; /* Control the max size of the image */
    margin: 0 auto;
    overflow: hidden;
    margin-top:10px;
}

/* The actual image */
.image-avatar {
    width: 370px;
    height: 300px;
    display: block;
    border-radius: 10px; /* Optional: Rounded corners */
    overflow: hidden;
}
.image-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the entire image fits without being cropped */
    object-position: center; /* Ensures the image is centered */
    display: block;
}



/* The black overlay div */
.DivOverImage {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%; /* Adjust height of the overlay */
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Black fading from bottom to top */
    z-index: 1;
}

/* Title on the image, positioned at the bottom */
.title-on-image {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 1.5em;
    z-index: 2; /* Make sure the title stays above the overlay */
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Subtle shadow for better readability */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title-on-image {
        font-size: 1.2em;
    }

    .DivOverImage {
        height: 100%; /* Increase the overlay height on smaller screens */
    }
}

@media (max-width: 480px) {
    .title-on-image {
        font-size: 1em;
    }

    .DivOverImage {
        height: 100%; /* Increase overlay height further for mobile */
    }
}
.icons {
    position: sticky;
    bottom: 0; /* Sticks at the bottom of the viewport */
    z-index: 999;
    background: #fff; /* Background to make it stand out */
    padding: 10px;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* Ensure it doesn't overlap footer */
#footer {
    position: relative;
    z-index: 1; /* Ensure footer is above sticky share icons */
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
    height:500px;
}

/* Additional styling for the sticky share div */
.icons a {
    margin: 0 10px;
    color: #555;
    text-decoration: none;
    font-size: 1.2em;
}

    .icons a:hover {
        color: #000; /* Hover effect for icons */
    }

.swiper-wrapperViwe{
    display:table
}
.datum {
    float: left;
    margin: auto;
    margin-left: 20px;
    margin-top: 11px;
}





.login-panel {
    max-width: 400px;
    padding: 20px;
    margin: auto;
    background-color: #b1a491;
    border-radius: 8px;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.eingabe {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

    .eingabe label {
        font-size: 1rem;
        margin-bottom: 5px;
        color: #ffffff;
    }

.input-field {
    padding: 10px;
    border: 1px solid #AAA;
    border-radius: 4px;
    font-size: 1rem;
    color: #000000;
}

    .input-field:focus {
        border-color: #999;
        outline: none;
    }

.login-button {
    width: 48%;
    padding: 10px;
    background-color: #f39e07;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Rojhelat;
}

    .login-button:hover {
        background-color: #6c3e03;
    }

.register-link {
    margin-top: 15px;
    text-align: center;
}

    .register-link a {
        color: #ffffff;
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 600px) {
    .login-panel {
        padding: 15px;
    }

    .input-field {
        font-size: 0.9rem;
    }

    .login-button {
        font-size: 0.9rem;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.5s ease-out;
}

    .notification.success {
        background-color: #28a745; /* Green for success */
    }

    .notification.error {
        background-color: #dc3545; /* Red for errors */
    }

    .notification.warning {
        background-color: #ffc107; /* Yellow for warnings */
    }

    .notification.info {
        background-color: #17a2b8; /* Blue for info */
    }

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
}

    .close-btn:hover {
        color: #ccc;
    }

/* Animation for sliding in */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification {
        width: 90%;
        right: 5%;
        bottom: 10px;
        font-size: 14px;
    }
}


.divsearch {
    display: none ;
    background-color: transparent;
    position: fixed;
    z-index: 10000;
    width: 40%;
    height: 43px;
    top: 2px;
    right: 20%;
}
:root {
    --color-bg: #ffffff;
    --color-surface: #1f2933;
    --color-surface-soft: #111827;
    --color-border: #374151;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-text: #f9fafb;
    --color-text-muted: #9ca3af;
    --color-danger: #ef4444;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
    --radius-lg: 16px;
    --radius-full: 999px;
    --transition-fast: 0.18s ease-out;
    --z-cookie: 9999;
    --z-modal: 10000;
    --max-width-content: 980px;
    --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}



/* COOKIE BANNER */

.cookie-banner {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width-content);
    z-index: var(--z-cookie);
    padding: 0 16px;
    box-sizing: border-box;
}

.cookie-banner-inner {
    background: linear-gradient(135deg, var(--color-surface), var(--color-surface-soft));
    color: var(--color-text);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    backdrop-filter: blur(10px);
}

.cookie-banner-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

/* BUTTONS */

.btn {
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: transparent;
}

    .btn-primary:hover {
        background: var(--color-primary-hover);
        transform: translateY(-1px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
    }

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: rgba(156, 163, 175, 0.7);
}

    .btn-outline:hover {
        background: rgba(156, 163, 175, 0.12);
    }

.btn-ghost {
    background: transparent;
    color: var(--color-text-muted);
    border-color: transparent;
}

    .btn-ghost:hover {
        background: rgba(156, 163, 175, 0.08);
    }

/* ICON BUTTON (Close in Modal) */

.icon-button {
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    line-height: 1;
    border-radius: 999px;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

    .icon-button:hover {
        background: rgba(156, 163, 175, 0.13);
        color: var(--color-text);
        transform: translateY(-1px);
    }

/* MODAL OVERLAY */

.privacy-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    padding: 16px;
    box-sizing: border-box;
}

/* MODAL DIALOG */

.privacy-modal-dialog {
    background: #0b1120;
    border-radius: 18px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.65);
    max-width: 520px;
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.privacy-modal-header,
.privacy-modal-footer {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privacy-modal-header {
    border-bottom: 1px solid rgba(55, 65, 81, 0.7);
}

    .privacy-modal-header h3 {
        margin: 0;
        font-size: 16px;
    }

.privacy-modal-body {
    padding: 12px 18px 10px;
    overflow-y: auto;
}

    .privacy-modal-body p {
        margin-top: 0;
        font-size: 13px;
        color: var(--color-text-muted);
    }

/* TOGGLE ROWS */

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(55, 65, 81, 0.8);
    margin-bottom: 8px;
    cursor: pointer;
    background: radial-gradient(circle at top left, #111827, #020617);
}

    .toggle-row:hover {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
    }

    .toggle-row strong {
        font-size: 14px;
    }

    .toggle-row small {
        font-size: 12px;
        color: var(--color-text-muted);
    }

    .toggle-row input[type="checkbox"],
    .toggle-row .aspNetDisabled {
        transform: scale(1.1);
    }

/* MODAL FOOTER BUTTONS */

.privacy-modal-footer {
    border-top: 1px solid rgba(55, 65, 81, 0.7);
    gap: 10px;
    justify-content: flex-end;
}

/* RESPONSIVE */

@media (max-width: 720px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }

        .cookie-banner-actions .btn {
            flex: 1 1 auto;
            text-align: center;
        }

    .privacy-modal-dialog {
        border-radius: 14px;
    }
}

