/* ========================================
   ГЛОБАЛЬНЫЕ СТИЛИ
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}


/* ========================================
   БЕГУЩАЯ СТРОКА (TICKER)
   ======================================== */

.ticker-wrap {
    width: 100%;
    /* background: linear-gradient(90deg, #dc2f02, #9d0208);
    color: white; */
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-weight: 500;
    font-size: 0.95rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ========================================
   ШАПКА (NAVBAR) И ЛОГОТИП
   ======================================== */

.navbar {
    background-color: #212529 !important;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-bottom: -70px;
    opacity: 0;
    transition: opacity 0.3s ease, margin-bottom 0.3s ease;
    z-index: 1050;
    position: relative;
}

.navbar-brand.visible {
    opacity: 1;
}

.navbar-brand img {
    height: 120px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    margin-bottom: -70px;
}

.navbar.scrolled .navbar-brand img {
    height: 120px;
}

.navbar-toggler-icon {
    height: 1em;
    width: 1em;
}

navbar-toggler:focus {
    box-shadow: none;
}


/* ========================================
   ГЕРОЙ-СЕКЦИЯ (HERO)
   ======================================== */

.hero-section {
    position: relative;
    background: url('/images/banner.png') no-repeat center center/cover;
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* ========================================
   КНОПКИ
   ======================================== */

.btn-hero {
    background-color: #dc2f02;
    color: white;
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-hero:hover {
    background-color: #9d0208;
    transform: scale(1.05);
    color: white;
}

.btn-outline-primary {
    border-color: #dc2f02;
    color: #dc2f02;
}

.btn-outline-primary:hover {
    background-color: #dc2f02;
    border-color: #dc2f02;
    color: white;
}

.btn-catalog {
    background: transparent;
    border: 2px solid #dc2f02;
    color: #dc2f02;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-catalog:hover {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 47, 2, 0.3);
}

.btn-question {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    padding: 14px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 47, 2, 0.3);
    color: white;
}

.btn-question:active {
    transform: scale(0.98);
}

.btn-contact {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    padding: 14px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 47, 2, 0.3);
    color: white;
}

.btn-order {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    padding: 16px 60px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 47, 2, 0.3);
    color: white;
}

.btn-order:active {
    transform: scale(0.98);
}


/* ========================================
   УТИЛИТЫ
   ======================================== */

.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.text-gradient {
    background: linear-gradient(135deg, #585352 0%, #080808 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* ========================================
   БЛОК ПРЕИМУЩЕСТВ (FEATURES)
   ======================================== */

.features-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 47, 2, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card {
    background: white;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc2f02, #9d0208);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px rgba(220, 47, 2, 0.15);
    border-color: rgba(220, 47, 2, 0.1);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
}

.feature-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2f02 0%, #9d0208 100%);
    border-radius: 25px;
    transition: all 0.4s ease;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(220, 47, 2, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 2.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    border-radius: 35px;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(220, 47, 2, 0.4);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-badge {
    display: inline-block;
    margin-top: 15px;
}

.feature-badge span {
    background: linear-gradient(135deg, rgba(220, 47, 2, 0.1) 0%, rgba(157, 2, 8, 0.1) 100%);
    color: #9d0208;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* ========================================
   АНИМАЦИЯ ТЕКСТА БАННЕРА
   ======================================== */

.hero-content h1,
.hero-content p {
    animation: smoothFade 30s infinite ease-in-out;
}

.hero-content h1 {
    animation-delay: 0s;
}

.hero-content p {
    animation-delay: 0.5s;
}

.hero-content .btn-hero {
    opacity: 1;
}

@keyframes smoothFade {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* ========================================
   БЛОК ПОПУЛЯРНЫХ ТОВАРОВ (PRODUCTS)
   ======================================== */

.popular-products {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 40px;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 47, 2, 0.15);
    border-color: rgba(220, 47, 2, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-img-link {
    display: block;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-body {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #212529;
}

.product-desc {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2f02;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 0.9rem;
    color: #adb5bd;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: normal;
}

.product-card .btn-primary {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    border: none;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card .btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(220, 47, 2, 0.4);
}


/* ========================================
   БЛОК FAQ (АККОРДЕОН)
   ======================================== */

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50px;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(220, 47, 2, 0.1);
}

.accordion-header {
    background: white;
}

.accordion-button {
    background: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    color: #212529;
    box-shadow: none;
    border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) i {
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(220, 47, 2, 0.2);
}

.accordion-button i {
    color: #dc2f02;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: #fefefe;
    color: #495057;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-body ul {
    padding-left: 1.2rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}


/* ========================================
   БЛОК "ЗАДАТЬ ВОПРОС"
   ======================================== */

.question-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50px;
}

.question-form-wrapper {
    background: white;
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 0;
}

.form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 12px 20px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #dc2f02;
    box-shadow: 0 0 0 4px rgba(220, 47, 2, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.invalid-feedback {
    font-size: 0.85rem;
    margin-top: 5px;
}


/* ========================================
   КАПЧА
   ======================================== */

.captcha-wrapper {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.captcha-image {
    position: relative;
    display: inline-block;
    background: white;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.captcha-image img {
    display: block;
    height: 50px;
    border-radius: 4px;
}

.captcha-refresh {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.captcha-refresh:hover {
    transform: rotate(180deg) scale(1.1);
}


/* ========================================
   ПОДВАЛ (FOOTER)
   ======================================== */

.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #e0e0e0;
    position: relative;
    border-top: 3px solid #dc2f02;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-site-name {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #dc2f02, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: #adb5bd;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: white;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #dc2f02, #ff6b35);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #dc2f02;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #adb5bd;
}

.footer-contact i {
    width: 25px;
    color: #dc2f02;
    font-size: 1.1rem;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    margin-bottom: 10px;
    /* color: #adb5bd; */
}

.footer-hours span {
    font-weight: 600;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #6c757d;
}

.developer-link {
    color: #dc2f02;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ff6b35;
    text-decoration: underline;
}


/* ========================================
   СТРАНИЦЫ: LEGAL (РЕГУЛЯМИН, ПОЛИТИКА)
   ======================================== */

.legal-content {
    background: #f8f9fa;
    padding: 40px 50px;
    border-radius: 24px;
    border: 1px solid #e9ecef;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #212529;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #dc2f02;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 15px;
}

.legal-content li {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 8px;
}


/* ========================================
   СТРАНИЦЫ: ЗАГОЛОВКИ И ХЛЕБНЫЕ КРОШКИ
   ======================================== */

.page-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0 0 20px 0;
}

.breadcrumb-item a {
    color: #dc2f02;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #9d0208;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    font-size: 1.2rem;
}

/* -- */
.fiolet a {
    color: #7f36a1;
}

.fiolet a:hover {
    color: #3a0d4f;
}

.fiolet.active {
    color: #6c757d;
}

.page-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #212529, #dc2f02);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ========================================
   СТРАНИЦА: КАТАЛОГ (КНОПКИ-КАТЕГОРИИ)
   ======================================== */

.categories-tabs {
    margin-bottom: 20px;
}

.category-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.category-tab {
    display: inline-block;
    background: transparent;
    border: 2px solid #dee2e6;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.category-tab:hover {
    background: rgba(220, 47, 2, 0.1);
    border-color: #dc2f02;
    color: #dc2f02;
    text-decoration: none;
}

.category-tab.active {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    border-color: #dc2f02;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 47, 2, 0.3);
}


/* ========================================
   СТРАНИЦА: КАРТОЧКА ТОВАРА
   ======================================== */

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 24px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnails {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 80px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail.active {
    border-color: #dc2f02;
}

.thumbnail:hover {
    border-color: #dc2f02;
}

.product-info {
    padding: 0 20px;
}

.product-badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-price-large .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2f02;
}

.product-price-large .price-note {
    font-size: 0.9rem;
    color: #6c757d;
}

.product-short-desc {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.option-group {
    margin-bottom: 25px;
}

.option-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
}

.color-options,
.material-options,
.size-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-btn.active {
    border-color: #dc2f02;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #dc2f02;
}

.material-btn,
.size-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.material-btn.active,
.size-btn.active {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    border-color: #dc2f02;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.product-meta {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.meta-item i {
    color: #dc2f02;
    width: 25px;
}

.description-tabs {
    gap: 5px;
}

.description-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px 12px 0 0;
}

.description-tabs .nav-link.active {
    background: #f8f9fa;
    color: #dc2f02;
    border-bottom: 2px solid #dc2f02;
}


/* ========================================
   СТРАНИЦА: КОНТАКТЫ
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50px;
}

.contact-info {
    background: white;
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item h6 {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 1rem;
    color: #212529;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}


/* ========================================
   СТРАНИЦА: ЗАКАЗ (ORDER)
   ======================================== */

.order-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50px;
}

.order-form-wrapper {
    background: white;
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.section-title {
    font-size: 1.2rem;
    color: #212529;
    padding-bottom: 10px;
    border-bottom: 2px solid #dc2f02;
    display: inline-block;
}

.order-form-wrapper .form-control,
.order-form-wrapper .form-select {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 12px 20px;
    font-size: 1rem;
}

.order-form-wrapper .form-control:focus,
.order-form-wrapper .form-select:focus {
    border-color: #dc2f02;
    box-shadow: 0 0 0 4px rgba(220, 47, 2, 0.1);
}

.order-form-wrapper .form-control::file-selector-button {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.order-form-wrapper .form-control::file-selector-button:hover {
    transform: scale(1.02);
}


/* ========================================
   СТРАНИЦА: КОРЗИНА (CART)
   ======================================== */

.cart-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50px;
}

.cart-items {
    background: white;
    border-radius: 24px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: #6c757d;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-minus,
.cart-qty-plus {
    width: 34px;
    height: 34px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-qty-minus:hover,
.cart-qty-plus:hover {
    background: #dc2f02;
    color: white;
    border-color: #dc2f02;
}

.cart-qty-input {
    width: 50px;
    height: 34px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.cart-item-total {
    font-size: 1.1rem;
    font-weight: bold;
    color: #dc2f02;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    color: #dc3545;
}

.cart-summary {
    background: white;
    border-radius: 24px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.cart-total-price {
    font-size: 2rem;
    font-weight: bold;
    color: #dc2f02;
}

.empty-cart i {
    opacity: 0.3;
}


/* ========================================
   БАННЕР COOKIES
   ======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #e0e0e0;
    padding: 20px 0;
    z-index: 9999;
    border-top: 3px solid #dc2f02;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    color: #dc2f02;
    flex-shrink: 0;
}

.cookie-message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #adb5bd;
}

.cookie-message a {
    color: #dc2f02;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-link {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #dc2f02;
    text-decoration: underline;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, #dc2f02, #9d0208);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-accept-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(220, 47, 2, 0.4);
}


/* ========================================
   КНОПКА ПРОКРУТКИ НАВЕРХ (SCROLL TO TOP)
   ======================================== */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #dc2f02;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.scroll-top-btn:hover {
    background-color: #9d0208;
    transform: scale(1.1);
}

/* YouTube */
.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

/* TikTok */
.social-link.tiktok:hover {
    background: #000000;
    color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Twitter / X */
.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

/* Pinterest */
.social-link.pinterest:hover {
    background: #e60023;
    color: white;
}

/* ========================================
   ПОДКАТЕГОРИИ
   ======================================== */

.subcategory-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.subcategory-tab {
    display: inline-block;
    background: transparent;
    border: 2px solid #dee2e6;
    padding: 6px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.subcategory-tab:hover {
    background: rgba(127, 54, 161, 0.1);
    /* фон при наведении с прозрачностью */
    border-color: #7f36a1;
    /* рамка при наведении */
    color: #7f36a1;
    /* текст при наведении */
    text-decoration: none;
}

.subcategory-tab.active {
    background: linear-gradient(135deg, #7f36a1, #5a2678);
    /* градиент */
    border-color: #7f36a1;
    color: white;
    box-shadow: 0 4px 12px rgba(127, 54, 161, 0.35);
}


/*  */

.thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(127, 54, 161, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-thumbnail:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(127, 54, 161, 1);
}

/* ========================================
   SWEETALERT - ПРИНУДИТЕЛЬНЫЕ СТИЛИ
   ======================================== */

.swal2-popup {
    background: #1a1a1a !important;
    border-radius: 24px !important;
    border: 2px solid #7f36a1 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
}

.swal2-title {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
}

.swal2-content {
    color: #e0e0e0 !important;
    font-size: 1.05rem !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #7f36a1, #5a2678) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 40px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(127, 54, 161, 0.4) !important;
}

.swal2-confirm:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(127, 54, 161, 0.6) !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: #7f36a1 !important;
}

.swal2-icon.swal2-success .swal2-success-line-tip,
.swal2-icon.swal2-success .swal2-success-line-long {
    background-color: #7f36a1 !important;
}

.swal2-icon.swal2-error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.swal2-icon.swal2-error .swal2-x-mark-line {
    background-color: #dc3545 !important;
}

/* ========================================
   CHECKOUT
   ======================================== */

.checkout-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50px;
}

.checkout-form-wrapper {
    background: white;
    padding: 40px 45px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.checkout-form-wrapper .form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 12px 20px;
    font-size: 1rem;
}

.checkout-form-wrapper .form-control:focus {
    border-color: #7f36a1;
    box-shadow: 0 0 0 4px rgba(127, 54, 161, 0.1);
}

.checkout-form-wrapper .form-control.is-invalid {
    border-color: #dc3545;
}

.checkout-form-wrapper .form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.checkout-summary {
    background: white;
    border-radius: 24px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.checkout-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}


/* ======================================== */
/* LIGHTBOX */
/* ======================================== */

.lightbox-overlay {
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-overlay .lightbox-close:hover {
    color: #7f36a1;
    transform: rotate(90deg);
}

.lightbox-overlay .lightbox-arrow:hover {
    color: #7f36a1 !important;
    transform: translateY(-50%) scale(1.2);
}

.lightbox-overlay .lightbox-arrow-left:hover {
    transform: translateY(-50%) scale(1.2) translateX(-5px);
}

.lightbox-overlay .lightbox-arrow-right:hover {
    transform: translateY(-50%) scale(1.2) translateX(5px);
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}