:root {
    --primary: #009688;
    --secondary: #4DD0E1;
    --accent: #00BFA5;
    --bg-gradient: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    --glass: rgba(255, 255, 255, 0.45);
    --text-primary: #1A374D;
    --text-secondary: #546E7A
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden
}

.text-muted {
    color: var(--text-secondary) !important
}

.glass-morphism {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07)
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--primary);
    transition: all 0.3s ease-out
}

.btn-glass:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 191, 165, 0.3);
    color: var(--accent)
}

.section-padding {
    padding: 80px 0
}

.card-glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: transform 0.3s ease-out
}

.card-glass:hover {
    transform: scale(1.02)
}

/* ===== header ===== */
.debix-header .navbar {
    background-color: #F8FDFF;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 150, 136, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.debix-header .debix-logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.debix-header .debix-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1A374D;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.debix-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #546E7A;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.debix-header .nav-link:hover {
    color: #009688;
}

.debix-header .debix-cart-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(0, 150, 136, 0.1);
    border-radius: 12px;
    color: #009688;
    transition: all 0.3s ease;
    text-decoration: none;
}

.debix-header .debix-cart-trigger:hover {
    background: #009688;
    color: #FFFFFF;
    transform: scale(1.05);
}

.debix-header .debix-cart-trigger .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.65rem;
    padding: 0.35em 0.5em;
    border: 2px solid #F8FDFF;
}

.debix-header .navbar-toggler {
    border: none;
    color: #1A374D;
    padding: 0.5rem;
}

.debix-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .debix-header .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 10;
    }

    .debix-header .navbar-nav {
        padding-top: 0;
    }

    .debix-header .nav-item {
        margin: 0 5px;
    }
}

@media (max-width: 991.98px) {
    .debix-header .navbar-collapse {
        background: #F8FDFF;
        border-top: 1px solid rgba(0, 150, 136, 0.05);
        margin-top: 10px;
        padding: 1rem 0;
    }

    .debix-header .navbar-brand {
        margin-right: 0;
    }

    .debix-header .debix-cart-action {
        order: 3;
    }

    .debix-header .navbar-toggler {
        order: 1;
    }

    .debix-header .navbar-brand {
        order: 2;
    }

    .debix-header .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
    }
}

/* ===== hero ===== */
.hero-section {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 150, 136, 0.05);
    user-select: none;
    z-index: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.hero-section .promo-visual-container {
    z-index: 2;
    height: 500px;
}

.hero-section .promo-layer {
    position: absolute;
    transition: transform 0.3s ease-out;
}

.hero-section .promo-layer-1 {
    width: 80%;
    top: 10%;
    left: 0;
    z-index: 1;
}

.hero-section .promo-layer-2 {
    bottom: 5%;
    right: 5%;
    width: 280px;
    z-index: 3;
}

.hero-section .promo-layer-3 {
    top: 0;
    right: 15%;
    width: 150px;
    z-index: 2;
    transform: rotate(-10deg);
}

.hero-section .glass-accent-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.hero-section .glass-panel {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.hero-section .product-preview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px 0 rgba(31, 38, 135, 0.1);
}

.hero-section .btn-primary {
    background-color: #009688;
    border-color: #009688;
    color: #ffffff;
}

.hero-section .btn-primary:hover {
    background-color: #00BFA5;
    border-color: #00BFA5;
    transform: scale(1.02);
}

.hero-section .text-primary {
    color: #009688 !important;
}

.hero-section .text-dark {
    color: #1A374D !important;
}

.hero-section .text-secondary {
    color: #546E7A !important;
}

@media (max-width: 991.98px) {
    .hero-bg-text {
        font-size: 8rem;
    }

    .hero-section .promo-visual-container {
        height: 350px;
        margin-top: 2rem;
    }

    .hero-section .promo-layer-1 {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-bg-text {
        display: none;
    }
}

/* ===== beliebte_sim-karten ===== */
.products-grid-section {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 100px;
}

.products-grid-section .section-title {
    color: #1A374D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
}

.products-grid-section .section-subtitle {
    color: #546E7A;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.products-grid-section .btn-filter {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #1A374D;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.products-grid-section .btn-filter:hover,
.products-grid-section .btn-filter.active {
    background: #009688;
    color: #FFFFFF;
    border-color: #009688;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
}

.products-grid-section .product-card-glass {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.products-grid-section .product-card-glass:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

.products-grid-section .product-img-box {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.products-grid-section .product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-grid-section .product-name {
    color: #1A374D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.products-grid-section .product-rating {
    color: #00BFA5;
    font-size: 0.9rem;
}

.products-grid-section .product-desc {
    color: #546E7A;
    font-size: 0.9rem;
    line-height: 1.5;
}

.products-grid-section .product-specs li {
    color: #1A374D;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.products-grid-section .product-specs i {
    color: #009688;
    width: 20px;
}

.products-grid-section .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #009688;
}

.products-grid-section .btn-buy {
    background: #009688;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.products-grid-section .btn-buy:hover {
    background: #00796B;
    color: #FFFFFF;
}

.products-grid-section .btn-details {
    background: transparent;
    border: 1px solid #009688;
    color: #009688;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.products-grid-section .btn-details:hover {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
}

@media (max-width: 767px) {
    .products-grid-section .section-title {
        font-size: 1.5rem;
    }

    .products-grid-section .product-card-glass {
        margin-bottom: 1rem;
    }
}

/* ===== top_tarife ===== */
.tariffs-grid-block {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.tariffs-grid-block__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1A374D;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tariffs-grid-block__subtitle {
    color: #546E7A;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tariffs-grid-block__card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    overflow: hidden;
}

.tariffs-grid-block__card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

.tariffs-grid-block__img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tariffs-grid-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tariffs-grid-block__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #009688, #4DD0E1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tariffs-grid-block__body {
    padding: 1.5rem;
}

.tariffs-grid-block__card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1A374D;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tariffs-grid-block__rating {
    color: #00BFA5;
    font-size: 0.9rem;
}

.tariffs-grid-block__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #009688;
    margin-bottom: 1rem;
}

.tariffs-grid-block__price span {
    font-size: 0.9rem;
    color: #546E7A;
    font-weight: 400;
}

.tariffs-grid-block__specs {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.tariffs-grid-block__specs li {
    color: #546E7A;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.tariffs-grid-block__specs li i {
    color: #00BFA5;
    margin-right: 10px;
    font-size: 0.8rem;
}

.tariffs-grid-block__status {
    font-size: 0.85rem;
    color: #4CAF50;
    display: flex;
    align-items: center;
}

.tariffs-grid-block__status i {
    font-size: 0.6rem;
    margin-right: 8px;
}

.tariffs-grid-block__btn-info {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #009688;
    color: #009688;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
}

.tariffs-grid-block__btn-info:hover {
    background: #009688;
    color: #fff;
}

.tariffs-grid-block__btn-cart {
    background: linear-gradient(45deg, #009688, #00BFA5);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.2);
    transition: all 0.3s ease;
}

.tariffs-grid-block__btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .tariffs-grid-block__title {
        font-size: 1.5rem;
    }

    .tariffs-grid-block__subtitle {
        font-size: 1rem;
    }

    .tariffs-grid-block__card-title {
        font-size: 1.1rem;
    }

    .tariffs-grid-block__body {
        padding: 1.25rem;
    }
}

/* ===== vorteile ===== */
.debix-benefits-section {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    position: relative;
    overflow: hidden;
}

.debix-benefits-section .benefit-main-title {
    color: #1A374D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
}

.debix-benefits-section .benefit-subtitle {
    color: #546E7A;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.debix-benefits-section .benefit-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px 25px;
    height: 100%;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.debix-benefits-section .benefit-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

.debix-benefits-section .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #009688;
    color: #FFFFFF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: background 0.3s ease;
}

.debix-benefits-section .benefit-card:hover .icon-wrapper {
    background: #00BFA5;
}

.debix-benefits-section .benefit-card-title {
    color: #1A374D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.debix-benefits-section .benefit-card-text {
    color: #546E7A;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .debix-benefits-section .benefit-main-title {
        font-size: 16px;
    }

    .debix-benefits-section .benefit-card-title {
        font-size: 14px;
    }

    .debix-benefits-section .benefit-subtitle {
        font-size: 14px;
    }

    .debix-benefits-section .benefit-card {
        padding: 30px 20px;
    }
}

/* ===== footer ===== */
.debix-footer {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    position: relative;
    overflow: hidden;
}

.debix-footer__glass-panel {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.debix-footer__logo {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.debix-footer__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A374D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.debix-footer__description {
    font-size: 14px;
    color: #546E7A;
    line-height: 1.6;
}

.debix-footer__link {
    font-size: 14px;
    color: #546E7A;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
}

.debix-footer__link:hover {
    color: #009688;
    transform: translateX(4px);
}

.debix-footer__bottom {
    border-color: rgba(0, 150, 136, 0.1) !important;
}

.debix-footer__copyright {
    font-size: 13px;
    color: #546E7A;
}

.debix-footer__payments {
    font-size: 28px;
    color: #1A374D;
    opacity: 0.8;
}

.debix-footer__payments i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.debix-footer__payments i:hover {
    transform: scale(1.1);
    color: #009688;
}

@media (max-width: 767.98px) {
    .debix-footer__heading {
        font-size: 14px;
        margin-bottom: 1rem !important;
    }

    .debix-footer__link {
        font-size: 13px;
    }

    .debix-footer__glass-panel {
        padding: 2rem 1.5rem !important;
    }
}

.debix-page-content {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 100vh;
}

.debix-hero__glass {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.debix-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1A374D;
}

.debix-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.debix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 150, 136, 0.15);
}

.debix-card__img-wrapper {
    height: 200px;
    overflow: hidden;
}

.debix-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.debix-card:hover .debix-card__img {
    transform: scale(1.05);
}

.debix-card__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1A374D;
    font-size: 1.25rem;
}

.debix-card__description {
    color: #546E7A;
    font-size: 0.95rem;
    line-height: 1.5;
}

.debix-card__price {
    color: #009688;
    font-weight: 800;
}

.debix-btn-cart {
    background-color: #009688;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.debix-btn-cart:hover {
    background-color: #00BFA5;
    color: #FFFFFF;
    transform: scale(1.05);
}

.debix-modal-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.debix-btn-primary {
    background: #009688;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
}


/* ===== PAGE: contacts ===== */
.contacts-block { padding: 80px 0; background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%); font-family: 'Inter', sans-serif; } .contacts-block .text-primary { color: #009688 !important; } .contacts-block .glass-card { background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); } .contacts-block .icon-box { width: 50px; height: 50px; background: rgba(0, 150, 136, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #009688; font-size: 1.25rem; } .contacts-block .info-card { background: #FFFFFF; border-radius: 20px; border: 1px solid #E1F5FE; transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; } .contacts-block .info-card:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0, 150, 136, 0.1); } .contacts-block .info-icon { color: #4DD0E1; } .contacts-block .help-banner { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(8px); border: 1px solid #B2EBF2; } .contacts-block .btn-primary { background: #009688; border: none; font-weight: 600; border-radius: 10px; transition: all 0.3s ease; } .contacts-block .btn-primary:hover { background: #00BFA5; transform: scale(1.02); box-shadow: 0 5px 15px rgba(0, 150, 136, 0.3); } .contacts-block .image-container img { height: 400px; object-fit: cover; } @media (max-width: 768px) { .contacts-block { padding: 40px 0; } .contacts-block h1 { font-size: 1.5rem; } .contacts-block h2 { font-size: 1.25rem; } .contacts-block .image-container img { height: 250px; } }

/* ===== PAGE: privacy ===== */
.privacy-page-block { padding: 80px 0; background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%); min-height: 100vh; font-family: 'Inter', sans-serif; } .privacy-page-block .glass-panel { background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); } .privacy-page-block .text-primary { color: #009688 !important; } .privacy-page-block .text-secondary { color: #546E7A !important; } .privacy-page-block .text-accent { color: #00BFA5 !important; } .privacy-page-block .font-secondary { font-family: 'Montserrat', sans-serif; } .privacy-page-block .privacy-nav-card { position: sticky; top: 100px; z-index: 10; } .privacy-page-block .nav-link { color: #1A374D; padding: 12px 15px; border-radius: 10px; transition: all 0.3s ease; margin-bottom: 5px; font-weight: 500; } .privacy-page-block .nav-link:hover { background: rgba(0, 150, 136, 0.1); color: #009688; transform: translateX(5px); } .privacy-page-block .nav-link.active { background: #009688; color: #ffffff !important; box-shadow: 0 4px 15px rgba(0, 150, 136, 0.2); } .privacy-page-block h2 { letter-spacing: -0.5px; } .privacy-page-block p { color: #546E7A; line-height: 1.8; } .privacy-page-block .list-unstyled li { display: flex; align-items: flex-start; color: #1A374D; font-weight: 500; } @media (max-width: 991.98px) { .privacy-page-block { padding: 40px 0; } .privacy-page-block .privacy-nav-card { position: relative; top: 0; margin-bottom: 30px; } }

/* ===== PAGE: terms ===== */
.debix-terms-container {
  background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
  min-height: 80vh;
  font-family: 'Inter', sans-serif;
}

.debix-terms-container .glass-panel {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.debix-terms-container .font-secondary {
  font-family: 'Montserrat', sans-serif;
}

.debix-terms-container .text-primary {
  color: #009688 !important;
}

.debix-terms-container .debix-toc-wrapper {
  top: 100px;
  z-index: 10;
}

.debix-terms-container .nav-link {
  color: #546E7A;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  padding-left: 1rem !important;
}

.debix-terms-container .nav-link:hover {
  color: #009688;
  padding-left: 1.25rem !important;
}

.debix-terms-container .nav-link.active {
  color: #009688;
  font-weight: 700;
  border-left-color: #00BFA5;
}

.debix-terms-container .debix-content-body h2 {
  border-bottom: 2px solid rgba(0, 150, 136, 0.1);
  padding-bottom: 0.5rem;
}

.debix-terms-container .debix-content-body p {
  line-height: 1.8;
  color: #1A374D;
}

@media (max-width: 767px) {
  .debix-terms-container .debix-content-body h1 {
    font-size: 1.25rem;
  }
  .debix-terms-container .debix-content-body h2 {
    font-size: 1.1rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.dbx-disclaimer {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.dbx-disclaimer .dbx-glass-container {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.dbx-disclaimer .dbx-heading-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #1A374D;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.dbx-disclaimer .dbx-heading-primary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #009688;
    border-radius: 2px;
}

.dbx-disclaimer .dbx-heading-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #009688;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.dbx-disclaimer .dbx-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #546E7A;
    font-style: italic;
}

.dbx-disclaimer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1A374D;
    margin-bottom: 1rem;
}

.dbx-disclaimer .text-primary-teal {
    color: #009688 !important;
}

.dbx-disclaimer .dbx-search-box .form-control {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 150, 136, 0.2);
    padding: 0.75rem 1rem;
    color: #1A374D;
    border-radius: 0 10px 10px 0;
}

.dbx-disclaimer .dbx-search-box .input-group-text {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 150, 136, 0.2);
    border-radius: 10px 0 0 10px;
}

.dbx-disclaimer .dbx-search-box .form-control:focus {
    background: #FFFFFF;
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 136, 0.1);
    border-color: #009688;
}

@media (max-width: 767.98px) {
    .dbx-disclaimer .dbx-heading-primary {
        font-size: 18px !important;
    }
    .dbx-disclaimer .dbx-heading-secondary {
        font-size: 16px !important;
    }
    .dbx-disclaimer p {
        font-size: 14px !important;
    }
    .dbx-disclaimer .dbx-glass-container {
        padding: 20px !important;
    }
}

/* ===== PAGE: refound ===== */
.refound-content-block {
  background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
  min-height: 60vh;
}

.refound-content-block .glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.refound-content-block .text-primary {
  color: #009688 !important;
}

.refound-content-block .text-secondary {
  color: #546E7A !important;
}

.refound-content-block .content-text {
  color: #1A374D;
  line-height: 1.8;
}

.refound-content-block .policy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 150, 136, 0.1);
  padding-bottom: 10px;
}

.refound-content-block .custom-list {
  list-style: none;
  padding-left: 0;
}

.refound-content-block .custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.refound-content-block .custom-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #00BFA5;
}

@media (max-width: 768px) {
  .refound-content-block .glass-card {
    padding: 25px 20px !important;
  }
  .refound-content-block h1 {
    font-size: 1.5rem;
  }
  .refound-content-block h2 {
    font-size: 1.2rem;
  }
}

/* ===== PAGE: delivery ===== */
.delivery-info-section {
  background: #F8FDFF;
  font-family: 'Inter', sans-serif;
  color: #1A374D;
}

.delivery-info-section__title {
  color: #009688;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
}

.delivery-info-section__card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.delivery-info-section__card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

.delivery-info-section__card.highlight {
  border: 2px solid #009688;
}

.delivery-info-section__icon-wrapper {
  color: #009688;
}

.delivery-info-section .text-accent {
  color: #00BFA5;
}

.delivery-info-section__image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.delivery-info-section__accordion-box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.delivery-info-section .accordion-button {
  background: transparent !important;
  color: #1A374D !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(0, 150, 136, 0.1) !important;
  padding: 1.25rem 1rem;
}

.delivery-info-section .accordion-button:not(.collapsed) {
  color: #009688 !important;
}

.delivery-info-section .accordion-item {
  border: none;
  background: transparent;
}

@media (max-width: 768px) {
  .delivery-info-section__title {
    font-size: 1.75rem;
  }
  .delivery-info-section__image-container img {
    height: 250px;
  }
}

/* ===== PAGE: impressum ===== */
.impressum-block {
  background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
  min-height: 80vh;
  font-family: 'Inter', sans-serif;
}

.impressum-block .glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.impressum-block .section-title {
  font-family: 'Montserrat', sans-serif;
  color: #009688;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
}

.impressum-block .section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #00BFA5;
  border-radius: 2px;
}

.impressum-block .divider {
  height: 3px;
  width: 60px;
  background: #00BFA5;
  border-radius: 2px;
}

.impressum-block .text-primary {
  color: #009688 !important;
}

.impressum-block .text-secondary {
  color: #546E7A !important;
  line-height: 1.8;
}

.impressum-block .text-muted {
  color: #B0BEC5 !important;
}

@media (max-width: 768px) {
  .impressum-block .glass-card {
    padding: 2rem !important;
    border-radius: 15px;
  }
  .impressum-block h1 {
    font-size: 1.5rem !important;
  }
  .impressum-block .section-title {
    font-size: 1.25rem !important;
  }
}

.glass-comment {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: transform 0.3s ease-out;
}

.glass-comment:hover {
    transform: scale(1.01);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.text-dark-blue {
    color: #1A374D;
}

.text-muted-blue {
    color: #546E7A;
}

.text-accent-teal {
    color: #00BFA5;
}

.text-teal {
    color: #009688;
}

.bg-aqua-soft {
    background-color: rgba(77, 208, 225, 0.15);
}

.comment-text {
    line-height: 1.6;
    font-size: 0.95rem;
}

.hover-glow:hover {
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.3);
    opacity: 0.8;
}

.border-aqua-line {
    border-color: rgba(77, 208, 225, 0.4) !important;
}

.avatar-circle-sm {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.comment-reply-wrapper {
    position: relative;
}

.comment-reply-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 15px;
    height: 2px;
    background: rgba(77, 208, 225, 0.4);
}


/* ===== PAGE TEMPLATE: catalog ===== */
.glass-aqua-theme {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.debix-detail-page .text-teal {
    color: #009688 !important;
}

.debix-detail-page .text-dark-blue {
    color: #1A374D !important;
}

.debix-detail-page .text-muted-blue {
    color: #546E7A !important;
}

.debix-detail-page .text-accent-teal {
    color: #00BFA5 !important;
}

.debix-detail-page .bg-aqua-soft {
    background-color: rgba(77, 208, 225, 0.15) !important;
}

.debix-detail-page .btn-teal {
    background-color: #009688;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.debix-detail-page .btn-teal:hover {
    background-color: #00897B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);
    color: #FFFFFF;
}

.debix-detail-page .btn-outline-teal {
    border: 2px solid #009688;
    color: #009688;
    font-weight: 600;
}

.debix-detail-page .btn-outline-teal:hover {
    background-color: #009688;
    color: #FFFFFF;
}

.debix-detail-page .glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.debix-detail-page .debix-article-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1A374D;
    margin-top: 2rem;
}

.debix-detail-page .debix-article-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.debix-detail-page .accordion-button:not(.collapsed) {
    background-color: rgba(77, 208, 225, 0.1);
    color: #009688;
}

.debix-detail-page .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 150, 136, 0.2);
}

.debix-detail-page .hover-glow:hover {
    color: #00BFA5 !important;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.2);
}

.debix-detail-page .avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
}

.debix-detail-page .avatar-circle-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.9rem;
}

.debix-detail-page .glass-comment {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
}

.debix-detail-page .border-aqua-line {
    border-color: #4DD0E1 !important;
}

.debix-detail-page .form-control {
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 136, 0.1);
    padding: 0.75rem 1rem;
}

.debix-detail-page .form-control:focus {
    border-color: #009688;
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 136, 0.1);
}

@media (max-width: 768px) {
    .debix-detail-page .display-5 {
        font-size: 1.75rem;
    }

    .debix-detail-page .lead {
        font-size: 1rem;
    }

    .debix-detail-page .comment-reply-wrapper {
        ms: 2 !important;
        ps: 3 !important;
    }
}

/* ===== PAGE TEMPLATE: tariff ===== */
.glass-aqua-theme {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.debix-detail-page .text-teal {
    color: #009688 !important;
}

.debix-detail-page .text-dark-blue {
    color: #1A374D !important;
}

.debix-detail-page .text-muted-blue {
    color: #546E7A !important;
}

.debix-detail-page .text-accent-teal {
    color: #00BFA5 !important;
}

.debix-detail-page .bg-aqua-soft {
    background-color: rgba(77, 208, 225, 0.15) !important;
}

.debix-detail-page .btn-teal {
    background-color: #009688;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.debix-detail-page .btn-teal:hover {
    background-color: #00897B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);
    color: #FFFFFF;
}

.debix-detail-page .btn-outline-teal {
    border: 2px solid #009688;
    color: #009688;
    font-weight: 600;
}

.debix-detail-page .btn-outline-teal:hover {
    background-color: #009688;
    color: #FFFFFF;
}

.debix-detail-page .glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.debix-detail-page .debix-article-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1A374D;
    margin-top: 2rem;
}

.debix-detail-page .debix-article-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.debix-detail-page .accordion-button:not(.collapsed) {
    background-color: rgba(77, 208, 225, 0.1);
    color: #009688;
}

.debix-detail-page .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 150, 136, 0.2);
}

.debix-detail-page .hover-glow:hover {
    color: #00BFA5 !important;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.2);
}

.debix-detail-page .avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
}

.debix-detail-page .avatar-circle-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.9rem;
}

.debix-detail-page .glass-comment {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
}

.debix-detail-page .border-aqua-line {
    border-color: #4DD0E1 !important;
}

.debix-detail-page .form-control {
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 136, 0.1);
    padding: 0.75rem 1rem;
}

.debix-detail-page .form-control:focus {
    border-color: #009688;
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 136, 0.1);
}

@media (max-width: 768px) {
    .debix-detail-page .display-5 {
        font-size: 1.75rem;
    }

    .debix-detail-page .lead {
        font-size: 1rem;
    }

    .debix-detail-page .comment-reply-wrapper {
        ms: 2 !important;
        ps: 3 !important;
    }
}

/* ===== PAGE TEMPLATE: services ===== */
.glass-aqua-theme {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.debix-detail-page .text-teal {
    color: #009688 !important;
}

.debix-detail-page .text-dark-blue {
    color: #1A374D !important;
}

.debix-detail-page .text-muted-blue {
    color: #546E7A !important;
}

.debix-detail-page .text-accent-teal {
    color: #00BFA5 !important;
}

.debix-detail-page .bg-aqua-soft {
    background-color: rgba(77, 208, 225, 0.15) !important;
}

.debix-detail-page .btn-teal {
    background-color: #009688;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.debix-detail-page .btn-teal:hover {
    background-color: #00897B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);
    color: #FFFFFF;
}

.debix-detail-page .btn-outline-teal {
    border: 2px solid #009688;
    color: #009688;
    font-weight: 600;
}

.debix-detail-page .btn-outline-teal:hover {
    background-color: #009688;
    color: #FFFFFF;
}

.debix-detail-page .glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.debix-detail-page .debix-article-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1A374D;
    margin-top: 2rem;
}

.debix-detail-page .debix-article-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.debix-detail-page .accordion-button:not(.collapsed) {
    background-color: rgba(77, 208, 225, 0.1);
    color: #009688;
}

.debix-detail-page .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 150, 136, 0.2);
}

.debix-detail-page .hover-glow:hover {
    color: #00BFA5 !important;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.2);
}

.debix-detail-page .avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
}

.debix-detail-page .avatar-circle-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.9rem;
}

.debix-detail-page .glass-comment {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
}

.debix-detail-page .border-aqua-line {
    border-color: #4DD0E1 !important;
}

.debix-detail-page .form-control {
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 136, 0.1);
    padding: 0.75rem 1rem;
}

.debix-detail-page .form-control:focus {
    border-color: #009688;
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 136, 0.1);
}

@media (max-width: 768px) {
    .debix-detail-page .display-5 {
        font-size: 1.75rem;
    }

    .debix-detail-page .lead {
        font-size: 1rem;
    }

    .debix-detail-page .comment-reply-wrapper {
        ms: 2 !important;
        ps: 3 !important;
    }
}

/* ===== PAGE TEMPLATE: support ===== */
.glass-aqua-theme {
    background: linear-gradient(135deg, #e0f2f1 0%, #e1f5fe 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.debix-detail-page .text-teal {
    color: #009688 !important;
}

.debix-detail-page .text-dark-blue {
    color: #1A374D !important;
}

.debix-detail-page .text-muted-blue {
    color: #546E7A !important;
}

.debix-detail-page .text-accent-teal {
    color: #00BFA5 !important;
}

.debix-detail-page .bg-aqua-soft {
    background-color: rgba(77, 208, 225, 0.15) !important;
}

.debix-detail-page .btn-teal {
    background-color: #009688;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.debix-detail-page .btn-teal:hover {
    background-color: #00897B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);
    color: #FFFFFF;
}

.debix-detail-page .btn-outline-teal {
    border: 2px solid #009688;
    color: #009688;
    font-weight: 600;
}

.debix-detail-page .btn-outline-teal:hover {
    background-color: #009688;
    color: #FFFFFF;
}

.debix-detail-page .glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.debix-detail-page .debix-article-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1A374D;
    margin-top: 2rem;
}

.debix-detail-page .debix-article-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.debix-detail-page .accordion-button:not(.collapsed) {
    background-color: rgba(77, 208, 225, 0.1);
    color: #009688;
}

.debix-detail-page .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 150, 136, 0.2);
}

.debix-detail-page .hover-glow:hover {
    color: #00BFA5 !important;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.2);
}

.debix-detail-page .avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
}

.debix-detail-page .avatar-circle-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.9rem;
}

.debix-detail-page .glass-comment {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
}

.debix-detail-page .border-aqua-line {
    border-color: #4DD0E1 !important;
}

.debix-detail-page .form-control {
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 136, 0.1);
    padding: 0.75rem 1rem;
}

.debix-detail-page .form-control:focus {
    border-color: #009688;
    box-shadow: 0 0 0 0.25rem rgba(0, 150, 136, 0.1);
}

@media (max-width: 768px) {
    .debix-detail-page .display-5 {
        font-size: 1.75rem;
    }

    .debix-detail-page .lead {
        font-size: 1rem;
    }

    .debix-detail-page .comment-reply-wrapper {
        ms: 2 !important;
        ps: 3 !important;
    }
}