/* =========================================
   ГЛОБАЛНИ СТИЛОВЕ И ПРОМЕНЛИВИ
   ========================================= */
   :root {
    --primary-color: linear-gradient(135deg, #1e131d 0%, #2a1c24 50%, #150d14 100%);
    --transition-speed: 0.4s;
    --header-bg: rgba(61, 49, 52, 0.94);
--header-bg-scrolled: rgba(61, 49, 52, 0.58);
    --header-text: rgba(255, 255, 255, 0.88);
    --header-text-hover: #ffffff;
    --header-underline: rgba(255, 255, 255, 0.72);
    --header-underline-soft: rgba(255, 255, 255, 0.28);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
#main-navbar {
    background: var(--header-bg) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease,
        border-color 0.3s ease;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

#main-navbar.bg-white {
    background: var(--header-bg-scrolled) !important;
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18) !important;
}

#main-navbar.bg-light {
    background: var(--header-bg) !important;
}

#main-navbar .navbar-brand {
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: opacity var(--transition-speed) ease;
}

#main-navbar .navbar-brand:hover {
    opacity: 0.9;
}

#main-navbar .navbar-toggler {
    border: 0;
    padding: 0.4rem 0.6rem;
}

#main-navbar .navbar-toggler:focus {
    box-shadow: none;
}

#main-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

#main-navbar .navbar-nav {
    align-items: center;
    gap: 0.2rem;
}

#main-navbar .navbar-nav .nav-item {
    position: relative;
}

#main-navbar .navbar-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--header-text) !important;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0.7rem 0.55rem;
    transition:
        color 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease;
}

#main-navbar .navbar-nav .nav-link:hover {
    color: var(--header-text-hover) !important;
}

#main-navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.28rem;
    width: 30px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        var(--header-underline-soft) 20%,
        var(--header-underline-soft) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

#main-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.28rem;
    width: 22px;
    height: 1.5px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.2) 0%,
        var(--header-underline) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

#main-navbar .navbar-nav .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

#main-navbar .navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(0.72);
    opacity: 0.9;
}

#main-navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
    font-weight: 600 !important;
}

#main-navbar .navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

#main-navbar .navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

#main-navbar .navbar-collapse {
    align-items: center;
}

#main-navbar .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    #main-navbar {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    #main-navbar .navbar-collapse {
        margin-top: 1rem;
        padding-top: 0.9rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    #main-navbar .navbar-nav {
        align-items: flex-start;
        gap: 0.15rem;
    }

    #main-navbar .navbar-nav .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.8rem 0;
    }

    #main-navbar .navbar-nav .nav-link::before,
    #main-navbar .navbar-nav .nav-link::after {
        left: 0;
        transform: scaleX(0);
        transform-origin: left center;
    }

    #main-navbar .navbar-nav .nav-link:hover::before,
    #main-navbar .navbar-nav .nav-link:hover::after,
    #main-navbar .navbar-nav .nav-link.active::before,
    #main-navbar .navbar-nav .nav-link.active::after {
        transform: scaleX(1);
    }

    #main-navbar .d-flex.ms-lg-4 {
        width: 100%;
        margin-top: 1rem !important;
    }

    #main-navbar .d-flex.ms-lg-4 .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   БУТОНИ
   ========================================= */
.custom-hover-btn {
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-hover-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px linear-gradient(135deg, #1e131d 0%, #2a1c24 50%, #150d14 100%) !important;
}

/* =========================================
   ГАЛЕРИЯ / PORTFOLIO (Hover ефекти)
   ========================================= */
.gallery-card {
    position: relative;
    cursor: pointer;
}

.gallery-img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity var(--transition-speed) ease-in-out;
    z-index: 1;
}

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

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

.gallery-overlay h4,
.gallery-overlay .badge {
    transform: translateY(20px);
    transition: transform var(--transition-speed) ease-in-out;
}

.gallery-card:hover .gallery-overlay h4,
.gallery-card:hover .gallery-overlay .badge {
    transform: translateY(0);
}

/* =========================================
   LENIS СТАНДАРТНИ СТИЛОВЕ (ЗА ПРОИЗВОДИТЕЛНОСТ)
   ========================================= */
html.lenis,
html.lenis body {
    height: auto;
    width: 100%;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* =========================================
   PREMIUM FOOTER (Тъмен градиент)
   ========================================= */
.custom-footer {
    background: linear-gradient(135deg, #1e131d 0%, #2a1c24 50%, #150d14 100%);
    color: #e0e0e0;
}

.custom-footer .footer-brand {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.custom-footer .footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-links a {
    color: #a39ca3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact i {
    color: #a39ca3;
    width: 20px;
    text-align: center;
}

.footer-contact span {
    font-size: 0.95rem;
    color: #a39ca3;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.social-circle:hover {
    background-color: #8b5cf6;
    color: #ffffff;
    transform: translateY(-3px);
}

.custom-footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background-color: #7c3aed;
    color: #ffffff;
    transform: translateY(-4px);
}

/* =========================================
   ФИКСИРАН БУТОН BACK TO TOP
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #7c3aed;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

/* =========================================
   БУТОНИ С PREMIUM ГРАДИЕНТ
   ========================================= */
.btn-primary,
.custom-hover-btn {
    background: linear-gradient(135deg, #1e131d 0%, #2a1c24 50%, #150d14 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:hover,
.custom-hover-btn:hover {
    filter: brightness(1.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 28, 36, 0.4) !important;
    color: #ffffff !important;
}

.navbar .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.back-to-top {
    background: linear-gradient(135deg, #1e131d 0%, #2a1c24 50%, #150d14 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-primary {
    background: linear-gradient(135deg, #1e131d 0%, #2a1c24 50%, #150d14 100%) !important;
}

.text-primary {
    color: #8b5cf6 !important;
}

/* =========================================
   DEMO RIBBON / MUSTERSEITE BADGE
   ========================================= */
   .template-demo-ribbon {
    position: fixed;
    top: 28px;
    right: -78px;
    z-index: 1200;
    width: 320px;
    min-height: 74px;
    transform: rotate(45deg);
    pointer-events: auto;
    isolation: isolate;
}

.template-demo-ribbon__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    width: 100%;
    min-height: 74px;
    padding: 0.78rem 2.7rem 0.72rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.96);
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(30, 19, 29, 0.86) 0%,
            rgba(72, 48, 68, 0.78) 36%,
            rgba(139, 92, 246, 0.54) 70%,
            rgba(30, 19, 29, 0.86) 100%
        );
    background-size: 220% 220%;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.28),
        0 0 34px rgba(139, 92, 246, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    transition:
        background-position 0.85s ease,
        box-shadow 0.45s ease,
        filter 0.45s ease,
        transform 0.45s ease;
    animation: demoRibbonBreath 7s ease-in-out infinite;
}

.template-demo-ribbon__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 28%,
            rgba(255, 255, 255, 0.34) 48%,
            rgba(255, 255, 255, 0.08) 68%,
            transparent 100%
        );
    transform: translateX(-130%) skewX(-18deg);
    animation: demoRibbonShimmer 6.8s ease-in-out infinite;
}

.template-demo-ribbon__inner::after {
    content: '';
    position: absolute;
    inset: 7px 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 22%,
            rgba(255, 255, 255, 0.18) 50%,
            rgba(255, 255, 255, 0.1) 78%,
            rgba(255, 255, 255, 0) 100%
        );
    opacity: 0.65;
}

.template-demo-ribbon__label {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.template-demo-ribbon__subtitle {
    display: block;
    font-size: 0.70rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.template-demo-ribbon:hover .template-demo-ribbon__inner {
    background-position: 100% 50%;
    filter: saturate(1.28) brightness(1.1);
    box-shadow:
        0 16px 44px rgba(0, 0, 0, 0.32),
        0 0 42px rgba(139, 92, 246, 0.28),
        0 0 34px rgba(236, 72, 153, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 0 -1px 0 rgba(0, 0, 0, 0.14);
    animation: demoRibbonChameleon 2.6s linear infinite;
}

.template-demo-ribbon:hover .template-demo-ribbon__inner::before {
    animation-duration: 2.2s;
}

@keyframes demoRibbonShimmer {
    0% {
        transform: translateX(-130%) skewX(-18deg);
        opacity: 0;
    }

    16% {
        opacity: 0.85;
    }

    34% {
        transform: translateX(130%) skewX(-18deg);
        opacity: 0;
    }

    100% {
        transform: translateX(130%) skewX(-18deg);
        opacity: 0;
    }
}

@keyframes demoRibbonBreath {
    0%,
    100% {
        filter: saturate(1) brightness(1);
    }

    50% {
        filter: saturate(1.08) brightness(1.05);
    }
}

@keyframes demoRibbonChameleon {
    0% {
        background:
            linear-gradient(
                135deg,
                rgba(30, 19, 29, 0.88) 0%,
                rgba(139, 92, 246, 0.72) 34%,
                rgba(236, 72, 153, 0.62) 68%,
                rgba(30, 19, 29, 0.88) 100%
            );
    }

    25% {
        background:
            linear-gradient(
                135deg,
                rgba(30, 19, 29, 0.88) 0%,
                rgba(236, 72, 153, 0.68) 34%,
                rgba(245, 158, 11, 0.58) 68%,
                rgba(30, 19, 29, 0.88) 100%
            );
    }

    50% {
        background:
            linear-gradient(
                135deg,
                rgba(30, 19, 29, 0.88) 0%,
                rgba(245, 158, 11, 0.62) 34%,
                rgba(34, 197, 94, 0.54) 68%,
                rgba(30, 19, 29, 0.88) 100%
            );
    }

    75% {
        background:
            linear-gradient(
                135deg,
                rgba(30, 19, 29, 0.88) 0%,
                rgba(34, 197, 94, 0.58) 34%,
                rgba(14, 165, 233, 0.6) 68%,
                rgba(30, 19, 29, 0.88) 100%
            );
    }

    100% {
        background:
            linear-gradient(
                135deg,
                rgba(30, 19, 29, 0.88) 0%,
                rgba(139, 92, 246, 0.72) 34%,
                rgba(236, 72, 153, 0.62) 68%,
                rgba(30, 19, 29, 0.88) 100%
            );
    }
}

@media (max-width: 767.98px) {
    .template-demo-ribbon {
        top: 18px;
        right: -78px;
        width: 270px;
        min-height: 62px;
    }

    .template-demo-ribbon__inner {
        min-height: 62px;
        padding: 0.64rem 2.3rem 0.60rem;
    }

    .template-demo-ribbon__label {
        font-size: 0.76rem;
        letter-spacing: 0.11em;
    }

    .template-demo-ribbon__subtitle {
        font-size: 0.61rem;
        letter-spacing: 0.07em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .template-demo-ribbon__inner,
    .template-demo-ribbon__inner::before {
        animation: none !important;
    }

    .template-demo-ribbon:hover .template-demo-ribbon__inner {
        animation: none !important;
    }
}

section {
    padding: 100px 0;
}

/* =======================================================
   Mein Shop Template
   Shop-spezifische Komponenten auf dem gemeinsamen
   WebDigiTech Demo-Template Shell.
   ======================================================= */

:root {
    --shop-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shop-gradient-accent: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    --shop-text: #333333;
    --shop-text-muted: #667085;
    --shop-surface: #f7f8fc;
    --shop-border: #e4e7f1;
    --shop-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shop-shadow-strong: 0 20px 42px rgba(15, 23, 42, 0.14);
}

body {
    color: var(--shop-text);
    background: #ffffff;
}

.btn-shop-accent {
    color: #ffffff !important;
    border: 0 !important;
    background: var(--shop-gradient-accent) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.3) !important;
}

.btn-shop-accent:hover,
.btn-shop-accent:focus-visible {
    color: #ffffff !important;
    filter: brightness(1.06);
}

.btn-shop-outline {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.68) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-shop-outline:hover,
.btn-shop-outline:focus-visible {
    color: #333333 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(255, 255, 255, 0.94) !important;
}

.shop-hero {
    padding: calc(84px + 48px) 0 72px;
    isolation: isolate;
}

.shop-hero__image {
    object-fit: cover;
    z-index: 0;
}

.shop-hero__overlay {
    z-index: 1;
}

.shop-hero__content {
    z-index: 3;
    max-width: 980px;
}

.shop-hero__eyebrow {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.shop-hero__title {
    font-size: clamp(2.35rem, 6vw, 4.35rem);
    line-height: 1.08;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.shop-hero__lead {
    max-width: 780px;
    font-size: clamp(1.05rem, 2.3vw, 1.45rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.94);
}

.shop-hero__trust li {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.shop-hero__trust i {
    color: #ffffff;
}

.shop-hero__bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.shop-hero__bubbles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    animation: shopBubbleFloat 6s ease-in-out infinite;
}

.shop-hero__bubbles span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
}

.shop-hero__bubbles span:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 62%;
    right: 15%;
    animation-delay: 2s;
}

.shop-hero__bubbles span:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 18%;
    left: 20%;
    animation-delay: 4s;
}

.shop-about__image {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.shop-about__media::before {
    content: "";
    position: absolute;
    inset: -18px auto auto -18px;
    width: 44%;
    height: 44%;
    border-radius: 1.5rem;
    background: var(--shop-gradient-primary);
    opacity: 0.16;
    z-index: 0;
}

.shop-about__media > img,
.shop-about__stat {
    position: relative;
    z-index: 1;
}

.shop-about__stat {
    background: linear-gradient(135deg, #222222 0%, #111827 100%);
    transform: translate(-10%, 15%);
}

.shop-about__stat strong {
    color: #c4b5fd;
}

#contact {
    background: linear-gradient(135deg, rgba(63, 76, 155, 0.96) 0%, rgba(99, 59, 137, 0.96) 100%);
    background-size: cover;
    background-position: center;
}

#contact .section-eyebrow,
#contact h2,
#contact .lead,
#contact .form-label,
#contact .form-check-label,
#contact .form-check-label a {
    color: #ffffff !important;
}

#contact .bg-light {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#contact .bg-light h3,
#contact .bg-light h6,
#contact .bg-light p {
    color: #ffffff !important;
}

#contact form {
    padding: 2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#contact .form-control {
    background: rgba(255, 255, 255, 0.94) !important;
    color: #333333;
}

.custom-footer {
    margin-top: 0 !important;
}

@keyframes shopBubbleFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.72;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@media (max-width: 991.98px) {
    .shop-hero {
        padding-top: calc(76px + 56px);
        min-height: auto !important;
    }

    .shop-about__image {
        min-height: 340px;
    }
}

@media (max-width: 575.98px) {
    .shop-hero__trust {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-hero__trust li {
        justify-content: center;
    }

    #contact form {
        padding: 1.35rem;
    }
}

.shop-products {
    background: #ffffff;
}

.shop-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--shop-border, #e4e7f1);
    border-radius: var(--card-radius, 1.25rem);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.shop-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.34);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
}

.shop-product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 6 / 5;
    background: var(--shop-surface, #f7f8fc);
}

.shop-product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.shop-product-card:hover .shop-product-card__media img {
    transform: scale(1.035);
}

.shop-product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(58, 48, 120, 0.24);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem;
}

.shop-product-card__category {
    display: block;
    margin-bottom: 0.5rem;
    color: #667eea;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-product-card__title {
    margin-bottom: 0.65rem;
    color: #1f2937;
    font-size: 1.3rem;
    line-height: 1.25;
}

.shop-product-card__description {
    flex: 1;
    margin-bottom: 1.2rem;
    color: #667085;
    line-height: 1.65;
}

.shop-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--shop-border, #e4e7f1);
}

.shop-product-card__price {
    color: #1f2937;
    font-size: 1.2rem;
    white-space: nowrap;
}

.shop-buy-button {
    flex: 0 0 auto;
}

.shop-benefits {
    background:
        radial-gradient(circle at 12% 14%, rgba(102, 126, 234, 0.1), transparent 32%),
        radial-gradient(circle at 88% 86%, rgba(118, 75, 162, 0.1), transparent 34%),
        var(--shop-surface, #f7f8fc);
}

.shop-benefit-card {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.14);
    border-radius: var(--card-radius, 1.25rem);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.shop-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shop-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.13);
}

.shop-benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 1.35rem;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 14px 26px rgba(102, 126, 234, 0.24);
    font-size: 1.65rem;
}

.shop-benefit-card__title {
    margin-bottom: 0.8rem;
    color: #1f2937;
    font-size: 1.35rem;
}

.shop-benefit-card__text {
    color: #667085;
    line-height: 1.7;
}

.shop-checkout-modal .modal-content {
    overflow: hidden;
    border-radius: 1.5rem;
}

.shop-checkout-modal .modal-header {
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid var(--shop-border, #e4e7f1);
    background: #ffffff;
}

.shop-checkout-product {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 96px;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border: 1px solid var(--shop-border, #e4e7f1);
    border-radius: 1.1rem;
    background: var(--shop-surface, #f7f8fc);
}

.shop-checkout-product img {
    display: block;
    width: 160px;
    height: 132px;
    object-fit: cover;
    border-radius: 0.9rem;
    background: #ffffff;
}

.shop-checkout-product__content {
    min-width: 0;
}

.shop-checkout-quantity {
    width: 96px;
}

.shop-order-summary {
    padding: 1.25rem;
    border: 1px solid var(--shop-border, #e4e7f1);
    border-radius: 1rem;
    background: var(--shop-surface, #f7f8fc);
}

.shop-order-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    color: #667085;
}

.shop-order-summary strong {
    color: #1f2937;
}

.shop-order-summary__total {
    margin-top: 0.45rem;
    padding-top: 0.9rem !important;
    border-top: 1px solid var(--shop-border, #e4e7f1);
    color: #1f2937 !important;
    font-size: 1.15rem;
    font-weight: 800;
}

.shop-checkout-success {
    max-width: 580px;
    margin: 0 auto;
    padding: 2rem 0 1rem;
}

.shop-checkout-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 16px 34px rgba(102, 126, 234, 0.28);
    font-size: 2rem;
}


@media (max-width: 767.98px) {
    .shop-product-card__footer {
        align-items: flex-end;
    }

    .shop-checkout-product {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .shop-checkout-product img {
        width: 112px;
        height: 96px;
    }

    .shop-checkout-quantity {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .shop-product-card__body {
        padding: 1.15rem;
    }

    .shop-product-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-buy-button {
        width: 100%;
    }

    .shop-benefit-card {
        padding: 1.5rem;
    }

    .shop-checkout-modal .modal-header {
        padding: 1.15rem;
    }

    .shop-checkout-modal .modal-body {
        padding: 1.15rem !important;
    }

    .shop-checkout-product {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 0.9rem;
    }

    .shop-checkout-product img {
        width: 88px;
        height: 78px;
    }
}

@media (hover: none) {
    .shop-product-card:hover,
    .shop-benefit-card:hover {
        transform: none;
    }

    .shop-product-card:hover .shop-product-card__media img {
        transform: none;
    }
}
