:root {
    --primary-color: #ff4d30;
    --primary-hover: #e6452b;
    --primary-glow: rgba(255, 77, 48, 0.4);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-on-dark: #f8fafc;
    --bg-main: #ffffff;
    --bg-light: #f1f5f9;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --card-bg: #ffffff;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 99px;
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.2s ease;
    --container-width: 1320px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 40px -15px rgb(0 0 0 / 0.1), 0 10px 15px -10px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 40px 80px -20px rgba(0, 0, 0, 0.12)
}

body.dark-mode {
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --bg-main: #020617;
    --bg-light: #0f172a;
    --border-color: #1e293b;
    --white: #0f172a;
    --card-bg: #1e293b;
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    background-color: var(--bg-main)
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition)
}

.theme-toggle-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: rotate(15deg)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

section {
    padding: 100px 0;
    position: relative
}

section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    filter: blur(60px);
    pointer-events: none
}

section:nth-child(even)::before {
    right: -100px;
    top: 10%
}

section:nth-child(odd)::before {
    left: -100px;
    bottom: 10%
}

html {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
    border: 2px solid #f1f1f1
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color)
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition)
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px
}

header {
    background: rgba(var(--white-rgb), 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000
}

:root {
    --white-rgb: 255, 255, 255
}

body.dark-mode {
    --white-rgb: 15, 23, 42
}

.top-bar {
    background: #000000;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.top-bar-left,
.top-bar-right,
.top-bar-center {
    display: flex;
    align-items: center;
    gap: 15px
}

.top-bar i {
    color: var(--primary-color)
}

.top-bar .divider {
    color: #334155;
    margin: 0 5px
}

.top-bar a:hover {
    color: var(--white)
}

.top-phone {
    color: var(--white);
    font-weight: 700
}

.promo-text {
    background: linear-gradient(90deg, #ff4d30, #ff8c30);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase
}

.main-header {
    padding: 20px 0
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    flex-shrink: 0
}

.logo span {
    color: var(--primary-color)
}

.search-bar {
    flex: 1;
    position: relative;
    max-width: 600px
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    background: var(--bg-light);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px
}

.search-bar input:focus {
    background: var(--white);
    border-color: var(--primary-color)
}

.header-actions {
    display: flex;
    gap: 25px;
    align-items: center
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 13px
}

.action-item i {
    font-size: 20px
}

.nav-bar {
    padding: 10px 0
}

.nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-links {
    display: flex;
    gap: 30px
}

.nav-links a {
    font-weight: 500;
    font-size: 15px
}

.nav-links a:hover {
    color: var(--primary-color)
}

.pre-order-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px
}

.pre-order-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px)
}

.breadcrumbs {
    padding: 24px 0;
    font-size: 13px;
    color: var(--text-muted)
}

.breadcrumbs span {
    margin: 0 8px
}

.breadcrumbs a:hover {
    color: var(--text-main)
}

.breadcrumbs .current {
    color: var(--text-main);
    font-weight: 500
}

.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px
}

.product-gallery {
    position: relative;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-gallery img {
    max-height: 80%;
    object-fit: contain
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow)
}

.product-info h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px
}

.description-short {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px
}

.product-features {
    margin-bottom: 40px
}

.product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold
}

.purchase-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px
}

.quantity-selector {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden
}

.quantity-selector button {
    padding: 12px 18px;
    background: var(--bg-light);
    font-size: 18px
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 600
}

.add-to-cart {
    flex: 1;
    background: #1a1a1a;
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease
}

.add-to-cart:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2)
}

.meta-info {
    font-size: 14px;
    color: var(--text-muted)
}

.meta-info span {
    color: var(--text-main);
    font-weight: 500
}

.tabs-container {
    margin-bottom: 80px
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px
}

.tab-btn {
    padding: 15px 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-muted);
    background: none
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color)
}

.tab-content {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.tab-content.active {
    display: block
}

.related-section {
    margin-bottom: 100px
}

.related-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.product-card {
    background: transparent !important;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
    border-color: var(--primary-color)
}

.card-img {
    background: var(--light-bg) !important;
    /* MATCH SITE BACKGROUND FOR BLENDING */
    border-radius: var(--radius-sm);
    aspect-ratio: 1/1;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative
}

.card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition)
}

.product-card:hover .card-img::after {
    opacity: 1
}

.card-img img {
    width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    mix-blend-mode: multiply !important;
    filter: brightness(1.05) contrast(1.05) !important;
}

.product-card:hover .card-img img {
    transform: scale(1.1) rotate(2deg)
}

.is-placeholder {
    object-fit: contain !important;
    padding: 20px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: var(--transition)
}

.product-card:hover .is-placeholder,
.thumb-item:hover .is-placeholder {
    opacity: 0.8;
    filter: grayscale(0.5)
}

.has-placeholder {
    background: transparent !important
}

.card-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px
}

.card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.btn-small {
    padding: 12px 20px;
    background: var(--bg-dark);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    width: 100%;
    margin-top: auto
}

.btn-small:hover {
    background: var(--primary-color);
    box-shadow: 0 10px 20px var(--primary-glow);
    transform: translateY(-2px)
}

.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 60px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px
}

.feature-icon {
    font-size: 32px;
    color: var(--text-muted)
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 700
}

.feature-text p {
    font-size: 13px;
    color: var(--text-muted)
}

footer {
    padding: 80px 0 40px;
    background: var(--white)
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 60px
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted)
}

.footer-col ul li a:hover {
    color: var(--primary-color)
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted)
}

.payment-methods {
    display: flex;
    gap: 10px
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: #f5f5f5;
    border-radius: 4px
}

@media (max-width:1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .main-header .container {
        flex-wrap: wrap
    }

    .search-bar {
        order: 3;
        max-width: 100%
    }

    .nav-links {
        display: none
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .features-bar {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center
    }
}

.catalog-section {
    padding: 40px 0
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px
}

.category-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color)
}

.cart-overlay {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 11000;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px;
    display: flex;
    flex-direction: column
}

.cart-overlay.active {
    right: 0
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color)
}

.cart-content {
    flex: 1;
    overflow-y: auto
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f9f9f9
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: var(--bg-light);
    border-radius: 4px
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px
}

.cart-item-info .price {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 700
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-color)
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px
}

.checkout-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    display: block
}

.close-cart {
    font-size: 24px;
    color: var(--text-muted)
}

.seo-text {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    line-height: 1.8
}

.seo-text h2 {
    margin-bottom: 20px;
    font-weight: 700
}

.seo-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 15px
}

@media (max-width:480px) {
    .cart-overlay {
        width: 100%
    }
}

.modal-desc img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0
}

.modal-desc table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0
}

.modal-desc td,
.modal-desc th {
    border: 1px solid #eee;
    padding: 8px;
    font-size: 13px
}

.modal-desc p {
    margin-bottom: 10px
}

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(8px)
}

.product-modal.active {
    display: flex
}

.modal-container {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5)
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    transition: 0.3s
}

.close-modal:hover {
    color: #ff4d30;
    transform: rotate(90deg)
}

.modal-gallery img {
    width: 100%;
    border-radius: 12px;
    background: #f9f9f9;
    aspect-ratio: 1/1;
    object-fit: contain
}

.modal-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2
}

.modal-price {
    font-size: 30px;
    color: #ff4d30;
    font-weight: 800;
    margin-bottom: 25px
}

.modal-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px
}

.modal-desc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0
}

.modal-desc table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0
}

.modal-desc th,
.modal-desc td {
    border: 1px solid #eee;
    padding: 12px;
    font-size: 14px;
    text-align: left
}

.modal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.modal-features li {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    font-weight: 500
}

@media (max-width:900px) {
    .modal-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px
    }
}

.product-card .card-img {
    position: relative;
    overflow: hidden
}

.quick-view-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255, 77, 48, 0.9);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer
}

.product-card:hover .quick-view-overlay {
    bottom: 0
}

.product-card h3 {
    cursor: pointer
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color)
}

.toolbar-left {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500
}

.toolbar-left strong {
    color: var(--text-main);
    font-weight: 800
}

.view-toggles {
    display: flex;
    gap: 12px
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: #fff;
    color: #94a3b8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px
}

.view-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: #fff
}

.view-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 77, 48, 0.2)
}

@media (max-width:600px) {
    .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px
    }

    .view-toggles {
        display: none
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px
}

.burger-menu {
    background: var(--text-main);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 0.3s
}

.burger-menu:hover {
    background: var(--primary-color);
    transform: translateY(-2px)
}

.side-catalog {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 10000;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column
}

.side-catalog.active {
    left: 0
}

.catalog-sidebar-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.catalog-sidebar-header h3 {
    font-size: 20px;
    font-weight: 800
}

.close-catalog {
    font-size: 24px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer
}

.catalog-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0
}

.search-sidebar {
    padding: 0 30px 20px
}

.search-sidebar input {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px
}

.sidebar-category-list {
    list-style: none
}

.sidebar-category-list li {
    padding: 0 20px
}

.sidebar-category-list a {
    display: block;
    padding: 15px 10px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid #f9f9f9;
    transition: 0.2s
}

.sidebar-category-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 20px
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none
}

.sidebar-overlay.active {
    display: block
}

.catalog-sidebar-footer {
    padding: 30px;
    background: var(--bg-light);
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase
}

@media (max-width:480px) {
    .side-catalog {
        width: 100%;
        left: -100%
    }
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: fit-content;
    overflow: hidden;
    background: #fff
}

.qty-ctrl button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    font-weight: bold;
    font-size: 18px
}

.qty-ctrl button:hover {
    background: #e0e0e0
}

.qty-ctrl span {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px
}

.product-page-qty {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600
}

.pro-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02)
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.burger-menu {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13px
}

.search-bar {
    flex: 1;
    position: relative;
    max-width: 550px;
    display: flex;
    align-items: center
}

.search-bar input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: #f6f6f6;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s
}

.search-bar input:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 77, 48, 0.1)
}

.search-icon {
    position: absolute;
    left: 18px;
    color: #999;
    font-size: 16px;
    pointer-events: none
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px
}

.action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #333
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f6f6f6;
    border-radius: 10px
}

.cart-icon-wrapper i {
    font-size: 18px
}

.cart-icon-wrapper #cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-weight: 800
}

.category-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: none;
    justify-content: flex-start
}

.filter-btn {
    white-space: nowrap;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555
}

.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color)
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 50px
}

.filter-sidebar {
    background: var(--card-bg);
    padding: 0;
    position: sticky;
    top: 100px;
    height: fit-content
}

.filter-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}

.filter-block h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: 0.2s
}

.filter-checkbox:hover {
    color: var(--primary-color)
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #ddd;
    cursor: pointer;
    accent-color: var(--primary-color)
}

@media (max-width:1024px) {
    .catalog-layout {
        grid-template-columns: 1fr
    }

    .filter-sidebar {
        display: none
    }
}

.experts-section {
    padding: 100px 0;
    background: var(--bg-light)
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto
}

.expert-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm)
}

.expert-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md)
}

.expert-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    padding: 3px;
    background: #fff
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.status-dot {
    width: 14px;
    height: 14px;
    background: #22c55e;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4)
}

.expert-info {
    flex: 1
}

.expert-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px
}

.expert-info .role {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block
}

.expert-contact {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.contact-link {
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast)
}

.contact-link i {
    color: var(--primary-color);
    width: 14px;
    text-align: center
}

.contact-link:hover {
    color: var(--primary-color)
}

.contact-link.wa {
    color: #25D366;
    font-weight: 700
}

@media (max-width:1200px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px
    }
}

@media (max-width:768px) {
    .experts-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:1100px) {
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px
    }
}

@media (max-width:768px) {
    .experts-grid {
        grid-template-columns: 1fr
    }

    .experts-section {
        padding: 60px 0
    }
}

.manager-widget {
    margin-top: 40px;
    padding: 25px;
    background: var(--bg-light);
    border: 1px dashed var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px
}

.manager-widget-avatar {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    color: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08)
}

.manager-widget-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important
}

.manager-widget-content h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-main)
}

.manager-widget-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4
}

.widget-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s
}

.widget-contact-btn:hover {
    border-bottom-color: var(--primary-color)
}

.social-floating-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15)
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25)
}

.social-btn.whatsapp {
    background: #25d366
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%)
}

.social-btn.facebook {
    background: #1877f2
}

.social-btn.tiktok {
    background: #010101
}

.social-btn.youtube {
    background: #ff0000
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px
}

.footer-social-btn {
    color: #fff;
    font-size: 22px;
    transition: 0.2s;
    opacity: 0.7
}

.footer-social-btn:hover {
    opacity: 1;
    color: var(--primary-color)
}

@media (max-width:768px) {
    .social-floating-bar {
        right: 10px
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 18px
    }
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px
}

.thumb-item {
    width: 80px;
    height: 80px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
    object-fit: cover
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--primary-color);
    transform: translateY(-2px)
}

#main-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03)
}

.modal-gallery .thumb-item {
    width: 60px;
    height: 60px
}

.modal-gallery #modal-main-img {
    max-height: 400px;
    object-fit: contain
}

.price-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.price-notice i {
    color: #f39c12;
    font-size: 14px
}

.price-notice-banner {
    background: #fffcf0;
    border: 1px solid #ffeeba;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #856404
}

.price-notice-banner i {
    font-size: 18px;
    color: #f39c12
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0
}

.toolbar-left {
    font-size: 14px;
    color: #64748b;
    font-weight: 500
}

.toolbar-left strong {
    color: #1a1a1a;
    font-weight: 700
}

.view-toggles {
    display: flex;
    gap: 4px;
    background: #f8fafc;
    padding: 3px;
    border-radius: 8px;
    border: 1px solid #e2e8f0
}

.view-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: transparent;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none
}

.view-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
}

.view-btn.active {
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)
}

.grid-size-control {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px
}

.grid-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin: 0
}

.grid-label i {
    color: var(--primary-color);
    font-size: 16px
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px
}

.slider-indicator {
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.slider-indicator:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35)
}

.grid-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 6px;
    background: linear-gradient(to right, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    position: relative
}

.grid-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: all 0.2s ease;
    border: 3px solid #fff
}

.grid-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6)
}

.grid-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1)
}

.grid-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: all 0.2s ease;
    border: 3px solid #fff
}

.grid-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6)
}

.grid-slider::-moz-range-thumb:active {
    cursor: grabbing
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    width: 200px;
    position: absolute;
    top: 24px;
    left: 44px;
    pointer-events: none
}

.slider-labels span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-align: center;
    min-width: 20px
}

.slider-labels span i {
    font-size: 13px
}

.products-grid {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.products-grid.grid-cols-1 {
    grid-template-columns: 1fr !important
}

.products-grid.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important
}

.products-grid.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important
}

.products-grid.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important
}

.products-grid.grid-cols-5 {
    grid-template-columns: repeat(5, 1fr) !important
}

.products-grid.grid-cols-6 {
    grid-template-columns: repeat(6, 1fr) !important
}

@media (max-width:1024px) {

    .grid-slider,
    .slider-labels {
        width: 160px
    }

    .slider-labels {
        left: 44px
    }
}

@media (max-width:768px) {
    .catalog-toolbar {
        flex-direction: column;
        gap: 15px
    }

    .grid-size-control {
        width: 100%;
        justify-content: space-between
    }

    .grid-slider,
    .slider-labels {
        width: 180px
    }

    .products-grid.grid-cols-4,
    .products-grid.grid-cols-5,
    .products-grid.grid-cols-6 {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

@media (max-width:480px) {
    .grid-label {
        font-size: 12px
    }

    .grid-slider,
    .slider-labels {
        width: 140px
    }

    .products-grid.grid-cols-3,
    .products-grid.grid-cols-4,
    .products-grid.grid-cols-5,
    .products-grid.grid-cols-6 {
        grid-template-columns: 1fr !important
    }
}

.products-grid.list-view {
    display: flex !important;
    flex-direction: column;
    gap: 20px
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    gap: 25px
}

.products-grid.list-view .card-img {
    width: 180px;
    height: 180px;
    margin-bottom: 0;
    flex-shrink: 0
}

.products-grid.list-view .card-info {
    flex: 1;
    text-align: left;
    padding: 0
}

.products-grid.list-view .card-price {
    font-size: 24px;
    margin: 10px 0
}

.products-grid.list-view .price-notice {
    margin-bottom: 20px !important
}

@media (max-width:768px) {
    .products-grid.list-view .product-card {
        flex-direction: column;
        text-align: center
    }

    .products-grid.list-view .card-info {
        text-align: center
    }
}

.pro-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888
}

.pro-breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none
}

.pro-breadcrumbs a:hover {
    text-decoration: underline
}

.pro-breadcrumbs i {
    font-size: 10px
}

.filter-radio {
    display: block;
    margin-bottom: 10px;
    cursor: pointer
}

.filter-radio input {
    margin-right: 10px
}

.filter-radio span {
    font-size: 14px;
    color: var(--text-main)
}

.series-hub {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #eee;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02)
}

.series-hub h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main)
}

.series-hub .hub-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px
}

.hub-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px
}

.hub-specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px
}

.hub-specs-table td:first-child {
    font-weight: 700;
    color: #333;
    width: 40%
}

.manager-widget-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #eee;
    margin: 20px 0
}

.manager-widget-simple img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover
}

.manager-widget-simple h5 {
    margin: 0 0 5px 0;
    font-size: 16px
}

.manager-widget-simple p {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #666
}

.manager-widget-simple a {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 100px 0;
    color: #999
}

.no-results a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none
}

.filter-sidebar {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
    height: fit-content
}

.filter-block {
    margin-bottom: 30px
}

.filter-block h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    border-left: 3px solid var(--primary-color);
    padding-left: 12px
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px
}

.filter-options::-webkit-scrollbar {
    width: 4px
}

.filter-options::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 0;
    transition: 0.2s
}

.filter-checkbox:hover {
    color: var(--primary-color)
}

.filter-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer
}

.filter-checkbox span {
    font-size: 14px;
    color: #555
}

.no-filters {
    font-size: 12px;
    color: #999;
    font-style: italic
}

.series-hub {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03)
}

.hub-header {
    border-bottom: 2px solid #f7fafc;
    padding-bottom: 30px;
    margin-bottom: 30px
}

.hub-standard {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block
}

.series-hub h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px
}

.hub-main-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: var(--text-main)
}

.marking-box {
    background: #f8fafc;
    border-left: 4px solid #4a5568;
    padding: 20px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 18px;
    margin: 20px 0
}

.marking-box code {
    color: #e53e3e;
    font-weight: 700
}

.marking-box p {
    font-family: sans-serif;
    font-size: 13px;
    color: #718096;
    margin-top: 10px
}

.hub-info-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px
}

.hub-info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    margin-bottom: 20px
}

.hub-faq-item {
    margin-bottom: 15px
}

.hub-faq-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #4a5568
}

.hub-faq-item p {
    font-size: 13px;
    color: #718096;
    line-height: 1.5
}

.hub-cta-box {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #fff;
    border-radius: 12px;
    padding: 25px
}

.hub-cta-box h4 {
    margin-bottom: 10px
}

.hub-cta-box p {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 20px
}

.hub-models-title {
    text-align: center;
    margin: 60px 0 40px 0
}

.hub-models-title h2 {
    font-size: 28px;
    font-weight: 800
}

.hub-models-title p {
    color: #718096
}

.search-bar {
    position: relative
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    z-index: 2000;
    overflow: hidden;
    display: none
}

.search-results-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.search-section-label {
    background: #f8fafc;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #f1f5f9
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #f8fafc
}

.suggestion-item:last-child {
    border-bottom: none
}

.suggestion-item:hover {
    background: #f1f5f9
}

.suggestion-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #fdfdfd
}

.suggestion-item .sugg-info {
    flex: 1
}

.suggestion-item .sugg-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px
}

.suggestion-item .sugg-meta {
    font-size: 12px;
    color: #64748b
}

.suggestion-item .sugg-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 13px
}

.all-results-link {
    display: block;
    padding: 12px;
    text-align: center;
    background: #fff;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid #f1f5f9;
    text-decoration: none
}

.all-results-link:hover {
    background: var(--primary-color);
    color: #fff
}

.tech-hub-section {
    padding: 80px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color)
}

.tech-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.tech-card {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: 0.3s
}

.tech-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color)
}

.tech-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px
}

.tech-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main)
}

.tech-card p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6
}

.tech-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.tech-link:after {
    content: '\2192';
    transition: 0.2s
}

.tech-link:hover:after {
    padding-left: 5px
}

@media (max-width:1024px) {
    .tech-resources-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .tech-resources-grid {
        grid-template-columns: 1fr
    }
}

.analogs-section {
    padding: 100px 0;
    background: #1a202c;
    color: #fff;
    overflow: hidden
}

.analogs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.analogs-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px
}

.analogs-text p {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 40px;
    line-height: 1.6
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.brand-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 14px;
    color: #e2e8f0;
    transition: 0.3s
}

.brand-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff
}

.analogs-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color)
}

.stat-box strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color)
}

.stat-box span {
    font-size: 14px;
    color: #cbd5e1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px
}

@media (max-width:1024px) {
    .analogs-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center
    }

    .brands-grid {
        justify-content: center
    }
}

.calc-section {
    padding: 80px 0;
    background: var(--bg-light)
}

.calc-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 40px
}

.calc-header {
    text-align: center;
    margin-bottom: 40px
}

.calc-header i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px
}

.calc-header h3 {
    font-size: 24px;
    font-weight: 800
}

.calc-header p {
    color: var(--text-muted)
}

.calc-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 30px
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted)
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s
}

.input-group input:focus {
    border-color: var(--primary-color);
    outline: none
}

.calc-result {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    text-align: center
}

.calc-result span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px
}

.calc-result strong {
    font-size: 20px;
    color: var(--primary-color)
}

.calc-footer {
    text-align: center
}

@media (max-width:768px) {
    .calc-body {
        grid-template-columns: 1fr
    }
}

.solutions-section {
    padding: 80px 0;
    background: var(--bg-light)
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.solution-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 400px;
    cursor: pointer
}

.solution-banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.solution-item:hover .solution-banner {
    transform: scale(1.1)
}

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff
}

.solution-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px
}

.solution-overlay p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5
}

.solution-tag {
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content
}

@media (max-width:900px) {
    .solutions-grid {
        grid-template-columns: 1fr
    }

    .solution-item {
        height: 300px
    }
}

.seo-text {
    padding: 60px 0;
    background: var(--white)
}

.seo-text p {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px
}

.trust-section {
    padding: 100px 0;
    background: var(--bg-light)
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0.6;
    filter: grayscale(1)
}

.logo-item {
    font-size: 20px;
    font-weight: 900;
    color: #475569;
    letter-spacing: 2px
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.project-mini-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: 0.3s
}

.project-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06)
}

.project-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative
}

.project-content {
    padding: 25px
}

.project-loc {
    display: block;
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px
}

.project-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c
}

.project-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6
}

@media (max-width:1024px) {
    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px
    }

    .projects-showcase {
        grid-template-columns: 1fr
    }
}

.mega-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible
}

.mega-menu-catalog {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    max-width: 100%;
    max-height: 80vh;
    background: var(--card-bg);
    z-index: 999;
    overflow-y: auto;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0 40px
}

.mega-menu-catalog.active {
    top: 140px
}

.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 2px solid #edf2f7;
    margin-bottom: 30px
}

.mega-menu-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main)
}

.mega-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 10px;
    transition: 0.2s
}

.mega-menu-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg)
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    align-items: start
}

.mega-menu-column h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color)
}

.mega-menu-column h4 i {
    font-size: 20px;
    color: var(--primary-color)
}

.mega-menu-section {
    margin-bottom: 25px
}

.mega-menu-section h5 {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 15px;
    letter-spacing: 0.8px
}

.mega-menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.mega-menu-section ul li {
    margin-bottom: 6px
}

.mega-menu-section ul li a {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    display: block;
    padding: 6px 0;
    padding-left: 0;
    border-left: 3px solid transparent
}

.mega-menu-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 12px;
    border-left-color: var(--primary-color)
}

@media (max-width:1200px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:768px) {
    .mega-menu-catalog {
        width: 100%
    }

    .mega-menu-grid {
        grid-template-columns: 1fr
    }
}

.card-qty-wrapper {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-top: 15px
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-light);
    flex-shrink: 0
}

.qty-ctrl button {
    width: 24px;
    height: 36px;
    background: var(--bg-light);
    border: none;
    color: #64748b;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
    padding: 0
}

.qty-ctrl button:hover {
    background: #e2e8f0;
    color: #1a1a1a
}

.qty-ctrl span {
    min-width: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    padding: 0 2px
}

.card-qty-wrapper .btn-small {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0.5px;
    height: 38px;
    padding: 0
}

.product-card {
    display: flex !important;
    flex-direction: column;
    height: 100%
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column
}

.card-qty-wrapper {
    margin-top: auto !important;
    padding-top: 15px
}

.ql-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: 0.2s
}

.ql-tag:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateY(-1px)
}

.layout-customizer {
    position: fixed;
    left: -280px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: #fff;
    box-shadow: 5px 0 35px rgba(0, 0, 0, 0.12);
    z-index: 20000;
    border-radius: 0 12px 12px 0;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 25px;
    border: 1px solid #e2e8f0;
    border-left: none
}

.layout-customizer.active {
    left: 0;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.15)
}

.layout-toggle {
    position: absolute;
    right: -48px;
    top: 20px;
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #333;
    font-size: 20px;
    transition: background 0.2s
}

.layout-toggle:hover {
    background: #333
}

.layout-customizer h4 {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px
}

.setting-group {
    margin-bottom: 25px
}

.setting-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.layout-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    outline: none;
    margin-bottom: 10px
}

.layout-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s
}

.layout-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1)
}

.width-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600
}

#current-width-label {
    color: #1a1a1a;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px
}

.layout-presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.preset-btn {
    padding: 12px;
    border: 1px solid #e2e8f0;
    background: #fafafa;
    border-radius: 8px;
    font-size: 16px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.preset-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05)
}

.preset-btn.active {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2)
}

.preset-btn.active i {
    transform: scale(1.1)
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10002
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0)
}

.scroll-to-top:hover {
    background: var(--primary-color, #ff4d30);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 77, 48, 0.3)
}

.scroll-to-top i {
    transition: transform 0.3s ease
}

.scroll-to-top:hover i {
    transform: translateY(-2px)
}

@media (max-width:768px) {
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px
    }
}

.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.skeleton-card {
    height: 380px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0
}

.skeleton-img {
    height: 180px;
    margin-bottom: 20px
}

.skeleton-title {
    height: 24px;
    width: 80%;
    margin-bottom: 12px
}

.skeleton-price {
    height: 20px;
    width: 40%
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1)
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0)
}

.pro-wa-widget {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    padding: 18px 22px;
    width: 320px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10000;
    transform: translateX(150%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer
}

.pro-wa-widget.show {
    transform: translateX(0)
}

.wa-manager-photo {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px
}

.wa-manager-photo img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    margin: 0 !important
}

.wa-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 2
}

.wa-status-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    animation: wa-pulse 2s infinite
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

.wa-text {
    flex: 1
}

.wa-text h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px
}

.wa-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    transition: all 0.3s ease;
    min-height: 36px;
    display: flex;
    align-items: center
}

#wa-dynamic-msg.typing {
    font-style: italic;
    color: #94a3b8
}

.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px
}

.typing-dots span {
    width: 3px;
    height: 3px;
    background: #94a3b8;
    border-radius: 50%;
    display: inline-block;
    animation: typing-bounce 1.4s infinite ease-in-out both
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s
}

@keyframes typing-bounce {

    0%,
    80%,
    100% {
        transform: scale(0)
    }

    40% {
        transform: scale(1)
    }
}

.wa-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.wa-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.2s
}

.wa-close:hover {
    transform: scale(1.1);
    background: #ef4444
}

.seo-dynamic-section {
    padding: 60px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0
}

.seo-box {
    max-width: 900px;
    margin: 0 auto
}

.seo-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 15px
}

.seo-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px
}

.seo-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    text-align: justify
}

img {
    max-width: 100%;
    height: auto;
    font-family: 'object-fit:cover;';
    object-fit: cover
}

.fas,
.fab {
    display: inline-block;
    width: 1.1em;
    text-align: center
}

@keyframes wa-widget-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.3)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1)
    }
}

.pro-wa-widget.pulse {
    animation: wa-widget-pulse 1s ease-in-out
}

.product-card.reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important
}

.special-offer-card {
    grid-column: 1 / -1;
    display: flex;
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: white;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.offer-visual {
    flex: 1.2;
    min-height: 350px;
    background: url('assets/img/ch63-offer.png') center/cover no-repeat;
    position: relative
}

.offer-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 1) 100%)
}

.offer-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2
}

.offer-badge {
    background: #f59e0b;
    color: #0f172a;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px
}

.offer-info h2 {
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.2
}

.offer-info h2 span {
    color: #f59e0b
}

.offer-info p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5
}

.offer-pros {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    gap: 12px
}

.offer-pros li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #e2e8f0
}

.offer-pros li i {
    color: #f59e0b
}

.offer-cta {
    background: #2563eb;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s
}

.offer-cta:hover {
    background: #1d4ed8;
    transform: translateY(-2px)
}

@media (max-width:768px) {
    .special-offer-card {
        flex-direction: column
    }

    .offer-visual {
        min-height: 250px
    }

    .offer-visual::after {
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 1) 100%)
    }

    .offer-info {
        padding: 30px 20px
    }
}

.social-floating-sidebar {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10001
}

.social-floating-item {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    border: none
}

.social-floating-item:hover {
    transform: scale(1.1) translateX(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3)
}

.social-floating-item.whatsapp,
.social-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2)
}

.social-floating-item.telegram,
.social-btn.telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.2)
}

.social-floating-item.instagram,
.social-btn.instagram {
    background: rgba(228, 64, 95, 0.1);
    color: #e4405f;
    border: 1px solid rgba(228, 64, 95, 0.2)
}

.social-floating-item.facebook,
.social-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
    border: 1px solid rgba(24, 119, 242, 0.2)
}

.social-floating-item.youtube,
.social-btn.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    border: 1px solid rgba(255, 0, 0, 0.2)
}

.social-floating-item.tiktok,
.social-btn.tiktok {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.2)
}

.social-floating-item:hover.whatsapp,
.social-btn.whatsapp:hover {
    background: #25D366;
    color: #fff
}

.social-floating-item:hover.telegram,
.social-btn.telegram:hover {
    background: #0088cc;
    color: #fff
}

.social-floating-item:hover.instagram,
.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff
}

.social-floating-item:hover.facebook,
.social-btn.facebook:hover {
    background: #1877F2;
    color: #fff
}

.social-floating-item:hover.youtube,
.social-btn.youtube:hover {
    background: #FF0000;
    color: #fff
}

.social-floating-item:hover.tiktok,
.social-btn.tiktok:hover {
    background: #000;
    color: #fff
}

.pro-footer {
    background: #0f172a;
    color: #f8fafc;
    padding: 80px 0 30px;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden
}

.pro-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255, 77, 48, 0.05) 0%, transparent 70%);
    pointer-events: none
}

.pro-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px
}

.footer-col h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color)
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col ul li {
    margin-bottom: 15px
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px
}

.footer-about-text {
    color: #94a3b8;
    line-height: 1.6;
    margin: 20px 0 25px;
    font-size: 15px;
    max-width: 350px
}

.footer-cert-badges {
    display: flex;
    gap: 15px
}

.cert-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px
}

.cert-badge i {
    color: var(--primary-color)
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 20px !important
}

.footer-contacts li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px
}

.footer-social-row {
    display: flex;
    gap: 12px;
    margin-top: 25px
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 48, 0.3)
}

.social-icon.wa:hover,
.social-icon.whatsapp:hover {
    background: #25D366 !important
}

.social-icon.ig:hover,
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important
}

.social-icon.fb:hover,
.social-icon.facebook:hover {
    background: #1877F2 !important
}

.social-icon.yt:hover,
.social-icon.youtube:hover {
    background: #FF0000 !important
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease
}

.social-links a:hover {
    transform: translateY(-3px)
}

.social-links a.whatsapp:hover {
    background: #25D366
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%)
}

.social-links a.facebook:hover {
    background: #1877F2
}

.social-links a.youtube:hover {
    background: #FF0000
}

.social-links a.telegram:hover {
    background: #0088cc
}

.social-links a.tiktok:hover {
    background: #000
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 14px
}

.payment-partners {
    display: flex;
    gap: 20px;
    font-size: 24px;
    color: #475569
}

.payment-partners i:hover {
    color: #fff
}

@media (max-width:1024px) {
    .pro-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
}

@media (max-width:768px) {
    .pro-footer .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px
    }
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--white);
    color: var(--text-main);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 1px solid var(--border-color)
}

.cart-sidebar.active {
    right: 0
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white)
}

.cart-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s
}

.cart-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg)
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #475569
}

.cart-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3
}

.cart-empty p {
    font-size: 16px
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: var(--transition);
    border: 1px solid transparent
}

.cart-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateX(-5px)
}

.cart-item-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--white);
    padding: 5px;
    border: 1px solid var(--border-color)
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.cart-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 4px
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color)
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 8px;
    padding: 4px 8px;
    border: 1px solid var(--border-color)
}

.cart-item-qty button {
    width: 24px;
    height: 24px;
    border: none;
    background: #e2e8f0;
    color: #475569;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s
}

.cart-item-qty button:hover {
    background: var(--primary-color);
    color: #fff
}

.cart-item-qty span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 14px
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: 0.2s
}

.cart-item-remove:hover {
    transform: scale(1.2)
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05)
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700
}

.cart-total span:last-child {
    color: var(--primary-color);
    font-size: 24px
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition)
}

.checkout-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 77, 48, 0.3)
}

body.dark-mode .checkout-btn {
    background: var(--primary-color)
}

body.dark-mode .checkout-btn:hover {
    background: var(--primary-hover)
}

.btn-continue-shopping {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease
}

.btn-continue-shopping:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-color: var(--primary-color)
}

@media (max-width:768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%
    }
}

.analogs-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%)
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px
}

.brand-item {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    transition: var(--transition)
}

.brand-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.analogs-stats {
    display: flex;
    gap: 20px;
    align-items: center
}

.stat-box {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition)
}

.stat-box:hover {
    transform: scale(1.02)
}

.stat-box.primary {
    background: linear-gradient(135deg, #ff4d30 0%, #ff8c30 100%);
    box-shadow: 0 20px 40px rgba(255, 77, 48, 0.2)
}

.stat-box.dark {
    background: linear-gradient(135deg, #1e293b 0%, #020617 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15)
}

.calc-section {
    padding: 60px 0;
    background: #f8fafc
}

.calc-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid var(--border-color)
}

.calc-header {
    text-align: center;
    margin-bottom: 30px
}

.calc-header i {
    font-size: 44px;
    color: #ff4d30;
    margin-bottom: 15px
}

.calc-result {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 35px;
    border: 2px dashed var(--primary-color)
}

.result-label {
    display: block;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px
}

#result-nm {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 900
}

.tech-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.tech-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color)
}

.tech-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px
}

.tech-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px
}

.tech-link:hover {
    text-decoration: underline
}

body.layout-full {
    --container-width: 95%
}

.filter-block h3 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    border-left: 3px solid #ff4d30;
    padding-left: 12px;
    margin-bottom: 20px;
    letter-spacing: 0.5px
}

.filter-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0
}

.filter-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9
}

.filter-header-mobile h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1e293b
}

.filter-close-btn {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s
}

.filter-close-btn:hover {
    background: #ff4d30;
    color: white
}

.filter-block {
    margin-bottom: 35px
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s
}

.filter-options label:hover {
    color: #ff4d30
}

.category-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    justify-content: flex-start
}

.filter-btn {
    padding: 8px 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease
}

.filter-btn:hover {
    border-color: #ff4d30;
    color: #ff4d30
}

.filter-btn.active {
    background: #ff4d30;
    color: #fff;
    border-color: #ff4d30;
    box-shadow: 0 4px 12px rgba(255, 77, 48, 0.3)
}

body.layout-medium {
    --container-width: 1000px
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.products-grid.grid-2-view {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important
}

body.grid-4 .products-grid,
.products-grid.grid-4-view {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important
}

.products-grid.grid-5-view {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px !important
}

.products-grid.list-view {
    grid-template-columns: 1fr !important
}

@media (max-width:1200px) {

    body.grid-4 .products-grid,
    .products-grid.grid-4-view {
        grid-template-columns: repeat(3, 1fr) !important
    }
}

@media (max-width:900px) {

    body.grid-4 .products-grid,
    .products-grid.grid-4-view {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

@media (max-width:1024px) {
    body.layout-medium .container {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important
    }
}

@media (max-width:600px) {

    .products-grid.grid-2-view,
    .products-grid.grid-4-view {
        grid-template-columns: 1fr !important
    }
}

.mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    align-items: center;
    gap: 10px;
    border: 2px solid #fff;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s
}

.mobile-filter-btn:hover {
    transform: translateX(-50%) scale(1.05);
    background: var(--primary-color)
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease
}

.product-card:hover {
    border-color: #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05)
}

.product-card .card-price {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 12px 0 5px
}

.price-notice {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px
}

.price-notice i {
    color: #ff8c30;
    font-size: 12px
}

.card-qty-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto
}

.qty-ctrl {
    display: flex;
    background: #f1f5f9;
    border-radius: 6px;
    height: 38px;
    align-items: center;
    overflow: hidden
}

.qty-ctrl button {
    width: 30px;
    height: 100%;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 16px;
    cursor: pointer
}

.qty-ctrl button:hover {
    background: #e2e8f0
}

.qty-ctrl span {
    min-width: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 13px
}

.btn-card {
    flex: 1;
    height: 38px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.btn-card:hover {
    background: #ff4d30
}

.mobile-filter-btn i {
    font-size: 16px;
    color: var(--primary-color)
}

.mobile-filter-btn:hover i {
    color: #fff
}

@media (max-width:1024px) {
    .filter-sidebar {
        display: block !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        z-index: 12000;
        background: #fff;
        padding: 20px 20px 80px 20px;
        overflow-y: auto;
        transition: left 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.2)
    }

    .filter-sidebar.active {
        left: 0
    }

    .filter-sidebar::before {
        content: 'Фильтры';
        display: block;
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
        color: #1a1a1a
    }

    .mobile-filter-btn {
        display: flex
    }
}

@media (max-width:768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 5px 0
    }

    .top-bar-left,
    .top-bar-center,
    .top-bar .divider {
        display: none !important
    }

    .top-bar-right {
        justify-content: center;
        width: 100%;
        font-size: 12px
    }

    .header-main-row {
        gap: 10px;
        flex-wrap: wrap;
        padding-bottom: 5px
    }

    .header-left {
        gap: 10px
    }

    .burger-menu {
        padding: 8px 12px
    }

    .burger-menu span {
        display: none
    }

    .logo {
        font-size: 20px
    }

    .logo span {
        font-size: 14px
    }

    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 5px
    }

    .header-actions span {
        display: none
    }

    .hero-title {
        font-size: 32px !important
    }

    .hero-subtitle {
        font-size: 15px !important
    }

    .toolbar-left {
        width: 100%;
        text-align: center;
        margin-bottom: 10px
    }

    .catalog-toolbar {
        flex-direction: column
    }

    .view-toggles {
        display: none
    }
}

@media (max-width:480px) {
    .cart-overlay {
        width: 100%;
        right: -100%
    }

    .side-catalog {
        width: 100%;
        left: -100%
    }
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden
}

.page-header h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
    letter-spacing: -1px;
    position: relative;
    z-index: 2
}

.page-desc {
    max-width: 800px;
    margin: 0 auto;
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    z-index: 2
}

.breadcrumb-nav {
    padding: 15px 0;
    background: transparent;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px
}

.series-nav-section {
    margin-bottom: 80px
}

.series-nav-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: #0f172a
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px
}

.series-tag-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

.series-tag-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08)
}

.series-code {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    display: block
}

.series-count {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 77, 48, 0.1);
    padding: 6px 12px;
    border-radius: 20px
}

.product-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent
}

.card-img {
    position: relative;
    padding: 20px;
    background: #f8fafc;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center
}

.card-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease
}

.product-card:hover .card-img img {
    transform: scale(1.05)
}

.card-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.card-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    flex-grow: 1
}

.card-price {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px
}

.price-notice {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px
}

.card-actions {
    margin-top: auto
}

.btn-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 0 4px;
    height: 38px;
    background: #1e293b;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: all 0.2s;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
    cursor: pointer
}

.btn-card:hover {
    background: var(--primary-color);
    color: #fff
}

.btn-card i {
    font-size: 14px
}

.layout-scaler-widget {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-280px);
    z-index: 10001;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: auto;
    width: auto;
    background: transparent !important;
    padding: 0;
    margin: 0
}

.layout-scaler-widget.active {
    transform: translateY(-50%) translateX(0)
}

.scaler-toggle-btn {
    width: 52px;
    height: 52px;
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 10px 5px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    flex-shrink: 0
}

.scaler-toggle-btn:hover {
    background: #000;
    padding-left: 5px
}

.layout-scaler-widget.active .scaler-toggle-btn {
    background: #000
}

.scaler-main-content {
    background: #ffffff !important;
    width: 280px;
    padding: 24px;
    border-radius: 0 16px 16px 0;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: none;
    box-sizing: border-box;
    flex-shrink: 0;
    height: auto
}

.scaler-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px
}

.scaler-section {
    padding-top: 15px;
    border-top: none;
    margin-bottom: 25px
}

.scaler-label {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px
}

.scaler-slider-container {
    padding: 0 5px
}

#layout-width-slider {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 15px;
    cursor: pointer
}

#layout-width-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: 0.2s
}

.scaler-range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8
}

.current-width-badge {
    background: #f1f5f9;
    color: #1e293b;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700
}

.scaler-presets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.preset-btn {
    height: 52px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s
}

.preset-btn:hover {
    background: #fff;
    border-color: #cbd5e1;
    color: #000
}

.preset-btn.active {
    background: #fff;
    border: 2px solid #1e293b;
    color: #000
}

@media (max-width:1024px) {
    .layout-scaler-widget {
        display: none
    }
}

.category-menu {
    display: flex;
    flex-direction: column;
    margin-top: 10px
}

.category-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    margin-bottom: 2px;
    cursor: pointer
}

.category-menu-item:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    padding-left: 20px
}

.category-menu-item.active {
    background: var(--primary-color);
    color: #fff
}

.category-menu-item i {
    font-size: 12px;
    opacity: 0.7
}

.category-menu-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px
}

.filter-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9
}

.filter-block:last-child {
    border-bottom: none
}

.products-grid.grid-5-view .product-card {
    border-radius: 12px
}

.products-grid.grid-5-view .card-info {
    padding: 15px
}

.products-grid.grid-5-view .card-info h3 {
    font-size: 14px
}

.products-grid.grid-5-view .card-price {
    font-size: 16px
}

@media (max-width:1024px) {
    .products-grid.grid-5-view {
        grid-template-columns: repeat(4, 1fr) !important
    }

    .filter-header-mobile {
        display: flex
    }

    .filter-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 300px;
        height: 100%;
        z-index: 1000;
        overflow-y: auto;
        transition: 0.3s ease;
        border-radius: 0 12px 12px 0;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1)
    }

    .filter-sidebar.active {
        left: 0
    }
}

.hero-section {
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(255, 77, 48, 0.15) 0%, transparent 50%), radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), linear-gradient(135deg, #0f172a 0%, #020617 100%);
    overflow: hidden;
    color: #fff;
    padding: 100px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)), radial-gradient(1.5px 1.5px at 100px 150px, #ffffff, rgba(0, 0, 0, 0)), radial-gradient(1px 1px at 250px 200px, #ffffff, rgba(0, 0, 0, 0));
    background-size: 300px 300px;
    opacity: 0.1;
    animation: drift 60s linear infinite;
    pointer-events: none
}

@keyframes drift {
    from {
        background-position: 0 0
    }

    to {
        background-position: 300px 600px
    }
}

.hero-container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: var(--container-width, 1320px);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    transition: max-width 0.3s ease
}

.hero-container-flex.w-full {
    max-width: 95%
}

.hero-content {
    flex: 0 0 540px;
    animation: slideUpFade 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3)
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 2000px
}

.hero-floating-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 48, 0.25) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    animation: pulseGlow 8s infinite alternate ease-in-out
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9) translate(0, 0);
        opacity: 0.5
    }

    50% {
        transform: scale(1.1) translate(20px, -20px);
        opacity: 0.8
    }

    100% {
        transform: scale(1) translate(-10px, 10px);
        opacity: 0.6
    }
}

.hero-product-img {
    width: 110%;
    max-width: 900px;
    height: auto;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.9));
    animation: premiumFloat 10s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.3s ease
}

.hero-product-img:hover {
    transform: scale(1.02) rotateY(10deg)
}

@keyframes premiumFloat {
    0% {
        transform: translateY(0) rotate(-2deg)
    }

    50% {
        transform: translateY(-30px) rotate(2deg)
    }

    100% {
        transform: translateY(0) rotate(-2deg)
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 77, 48, 0.15);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 77, 48, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(255, 77, 48, 0.2);
    animation: badgeGlow 4s infinite
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 77, 48, 0.2);
        border-color: rgba(255, 77, 48, 0.3)
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 77, 48, 0.5);
        border-color: rgba(255, 77, 48, 0.6)
    }
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1.5px
}

.hero-title span {
    color: var(--primary-color);
    position: relative
}

.hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 500px
}

.hero-actions {
    display: flex;
    gap: 15px
}

.btn-hero {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color)
}

.btn-primary:hover {
    background: #d93d26;
    border-color: #d93d26;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 77, 48, 0.35)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2)
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px)
}

@media (max-width:1100px) {
    .hero-container-flex {
        padding: 0 40px;
        gap: 20px
    }

    .hero-product-img {
        width: 600px;
        margin-right: -50px;
        margin-left: 0
    }

    .hero-title {
        font-size: 50px
    }
}

@media (max-width:968px) {
    .hero-container-flex {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 50px
    }

    .hero-content {
        flex: auto;
        max-width: 100%
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 20px
    }

    .hero-subtitle {
        margin: 0 auto 30px auto
    }

    .hero-image-wrapper {
        margin-bottom: 10px;
        justify-content: center
    }

    .hero-product-img {
        width: 450px;
        max-width: 90%;
        margin-right: 0;
        margin-left: 0
    }

    .hero-floating-circle {
        width: 420px;
        height: 420px
    }
}

@media (min-width:1600px) {
    .hero-container-flex {
        max-width: 1600px;
        gap: 60px
    }

    .hero-section {
        padding: 120px 0;
        font-size: 1.1em
    }

    .hero-product-img {
        width: 900px;
        margin-right: -120px
    }

    .hero-floating-circle {
        width: 800px;
        height: 800px
    }

    .hero-title {
        font-size: 80px
    }

    .hero-content {
        flex: 0 0 650px
    }
}

#exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

#exit-intent-overlay.active {
    opacity: 1;
    visibility: visible
}

.exit-intent-popup {
    background: var(--white);
    border-radius: 12px;
    padding: 48px 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 100px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-color);
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: popupBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes popupBounce {
    0% {
        transform: scale(0.8) translateY(30px);
        opacity: 0
    }

    50% {
        transform: scale(1.05) translateY(-5px)
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1
    }
}

#exit-intent-overlay.active .exit-intent-popup {
    transform: scale(1) translateY(0)
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.exit-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg)
}

.exit-icon {
    text-align: center;
    margin-bottom: 24px;
    animation: iconPulse 2s ease-in-out infinite
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.exit-title {
    font-size: 36px;
    font-weight: 850;
    text-align: center;
    margin: 0 0 12px;
    background: linear-gradient(90deg, #ff4d30, #ff8c30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px
}

.exit-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin: 0 0 32px;
    font-weight: 500
}

.exit-discount {
    display: flex;
    justify-content: center;
    margin-bottom: 24px
}

.discount-badge {
    background: linear-gradient(135deg, #ff4d30 0%, #ff8c30 100%);
    border-radius: 12px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px -5px rgba(255, 77, 48, 0.4);
    animation: badgeFloat 3s ease-in-out infinite
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-10px)
    }
}

.discount-number {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2)
}

.discount-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    margin-top: 4px
}

.exit-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px
}

.exit-input-group {
    position: relative;
    display: flex;
    align-items: center
}

.exit-input-group i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none
}

.exit-input-group input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    background: #f8fafc;
    transition: all 0.2s;
    outline: none
}

.exit-input-group input:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 77, 48, 0.1)
}

.exit-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(0.5)
}

.exit-privacy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.exit-privacy i {
    color: #10b981
}

.promo-code-block {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px
}

.promo-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.promo-code {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
    margin-bottom: 12px;
    user-select: all;
    padding: 8px;
    background: white;
    border-radius: 8px;
    display: inline-block
}

.promo-copy-btn {
    background: linear-gradient(135deg, #ff4d30 0%, #ff8c30 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.promo-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 77, 48, 0.4)
}

.promo-copy-btn:active {
    transform: translateY(0)
}

.success-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px
}

.exit-timer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

#exit-timer-display {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 900;
    color: #b45309
}

.exit-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px
}

.exit-btn-primary,
.exit-btn-secondary {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.exit-btn-primary {
    background: linear-gradient(135deg, #ff4d30 0%, #ff8c30 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(255, 77, 48, 0.39)
}

.exit-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 48, 0.5)
}

.exit-btn-secondary {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0
}

.exit-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1
}

.exit-features {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    text-align: center
}

.feature-item i {
    font-size: 20px;
    color: var(--primary-color)
}

.exit-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    z-index: 100000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.exit-notification.show {
    transform: translateX(0);
    opacity: 1
}

.exit-notification i {
    font-size: 20px
}

@media (max-width:768px) {
    .exit-intent-popup {
        padding: 32px 24px;
        border-radius: 20px
    }

    .exit-title {
        font-size: 28px
    }

    .exit-subtitle {
        font-size: 16px
    }

    .discount-number {
        font-size: 48px
    }

    .promo-code {
        font-size: 24px;
        letter-spacing: 2px
    }

    .exit-actions {
        flex-direction: column
    }

    .exit-features {
        flex-direction: column;
        gap: 12px
    }

    .feature-item {
        flex-direction: row;
        justify-content: flex-start
    }

    .exit-notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        padding: 12px 16px;
        font-size: 14px
    }
}

@media (max-width:480px) {
    .exit-intent-popup {
        padding: 24px 20px
    }

    .exit-title {
        font-size: 24px
    }

    .discount-badge {
        padding: 16px 32px
    }

    .discount-number {
        font-size: 40px
    }

    .promo-code {
        font-size: 20px
    }
}

.dark-mode #exit-intent-overlay {
    background: rgba(0, 0, 0, 0.95)
}

.dark-mode .exit-intent-popup {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5)
}

.dark-mode .exit-close {
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8
}

.dark-mode .exit-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444
}

.dark-mode .exit-subtitle {
    color: #94a3b8
}

.dark-mode .exit-text {
    color: #cbd5e1
}

.dark-mode .promo-code-block {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border-color: #475569
}

.dark-mode .promo-label {
    color: #94a3b8
}

.dark-mode .promo-code {
    background: #0f172a;
    color: #f1f5f9
}

.dark-mode .exit-btn-secondary {
    background: #334155;
    color: #f1f5f9;
    border-color: #475569
}

.dark-mode .exit-btn-secondary:hover {
    background: #475569
}

.dark-mode .exit-features {
    border-top-color: #334155
}

.dark-mode .feature-item {
    color: #94a3b8
}

/* MEGA MENU VISIBILITY FIX */
.mega-menu-catalog, .mega-menu-header { 
    background: #111827 !important; /* Slightly darker midnight blue */
} 
.mega-menu-header h3, 
.mega-menu-column h4 {
    color: #ffffff !important;
}
.mega-menu-column h4 i {
    color: #ff4d30 !important; /* Keep icons orange for contrast */
}
.mega-menu-column a, .mega-menu-column a:visited { 
    color: #d1d5db !important; /* Light grey for standard text */
    text-decoration: none !important; 
    display: block !important;
    padding: 4px 0;
} 
.mega-menu-column a:hover { 
    color: #ffffff !important; 
    background: rgba(255, 77, 48, 0.1) !important; 
}
