/* ========================================
   ALTERNATOR GEORGIA — Dark Theme
   ======================================== */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #151515;
    --bg-card-hover: #1c1c1c;
    --border: #2a2a2a;
    --border-hover: #3a3a3a;

    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;

    --accent: #00a8ff;
    --accent-hover: #33bbff;
    --accent-glow: rgba(0, 168, 255, 0.4);

    --font-display: 'Bebas Neue', 'Noto Sans Georgian', sans-serif;
    --font-tech: 'Rajdhani', 'Noto Sans Georgian', sans-serif;
    --font-body: 'Noto Sans Georgian', system-ui, sans-serif;

    --container: 1280px;
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 0%, rgba(0, 168, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 100%, rgba(0, 168, 255, 0.05) 0%, transparent 40%);
}

/* Lock body scroll only when drawer/modal is open */
body.body-locked {
    overflow: hidden;
}

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

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

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

.accent {
    color: var(--accent);
}

/* ========== TOP BAR ========== */
.top-bar {
    background: #050505;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    padding: 10px 0;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar__links {
    display: flex;
    gap: 24px;
}

.top-bar__links a {
    color: var(--text-muted);
}

.top-bar__links a:hover {
    color: var(--accent);
}

.top-bar__contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar__contact a {
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar__contact a:hover {
    color: var(--accent);
}

.top-bar__fb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff !important;
    justify-content: center;
}

.top-bar__fb:hover {
    background: var(--accent-hover);
    color: #fff !important;
}

/* ========== HEADER ========== */
.header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo__icon {
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 20px var(--accent-glow);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.logo__dot {
    color: var(--accent);
}

.logo__accent {
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 4px;
}

.nav__link {
    padding: 10px 16px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius);
    position: relative;
    transition: color var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--text-primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 24px;
}

.search-btn,
.burger {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.search-btn:hover,
.burger:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.burger {
    display: none;
}

/* ========== SEARCH OVERLAY (Dropdown card style) ========== */
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-overlay .container {
    position: relative;
    padding-top: 24px;
}

.search-overlay__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px 22px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.search-overlay.active .search-overlay__card {
    transform: translateY(0);
    opacity: 1;
}

.search-overlay__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.search-overlay__title {
    font-family: var(--font-tech);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin: 0;
    flex: 1;
    text-align: center;
    padding-left: 32px; /* balance the close button on the right */
}

.search-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.search-close:hover {
    color: var(--accent);
    background: rgba(0, 168, 255, 0.1);
}

.search-form {
    position: relative;
    width: 100%;
}

.search-form__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
    transition: color var(--transition);
}

.search-form input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 56px 14px 46px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: all var(--transition);
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form input:focus {
    border-color: var(--accent);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.15);
}

.search-form input:focus ~ .search-form__icon {
    color: var(--accent);
}

.search-form button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.search-form button:hover {
    background: var(--accent-hover);
    transform: translateY(-50%) scale(1.05);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 50%, rgba(0, 168, 255, 0.15), transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    animation: fadeInLeft 0.9s ease-out;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 100px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero__tag i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero__title .accent {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, #4dd0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--accent-glow);
}

.hero__text {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* HERO VISUAL */
.hero__visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 0.9s ease-out;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 460px;
    max-width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.25) 0%, transparent 70%);
    box-shadow:
        inset 0 0 100px rgba(0, 168, 255, 0.1),
        0 0 80px rgba(0, 168, 255, 0.2);
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.hero__circle::before,
.hero__circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 168, 255, 0.2);
}

.hero__circle::before {
    inset: 30px;
    animation: spin 30s linear infinite;
}

.hero__circle::after {
    inset: 80px;
    animation: spin 20s linear infinite reverse;
}

.hero__gear {
    position: absolute;
    color: var(--accent);
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.hero__gear--1 {
    font-size: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 168, 255, 0.8);
    animation: spin 25s linear infinite;
}

.hero__gear--2 {
    font-size: 80px;
    top: 20%;
    right: 10%;
    color: rgba(255, 255, 255, 0.8);
    animation: spin 12s linear infinite reverse;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll span {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-down 1.6s infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ========== SECTION HEAD ========== */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-head__label i {
    font-size: 8px;
}

.section-head__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========== PRODUCTS ========== */
.products {
    padding: 100px 0;
    position: relative;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.product-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 70%),
        var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s var(--transition);
}

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

.product-card__placeholder {
    font-size: 80px;
    color: var(--accent);
    opacity: 0.5;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.product-card__body {
    padding: 24px;
}

.product-card__title {
    font-family: var(--font-tech);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.spec {
    background: var(--bg-tertiary);
    border-left: 3px solid var(--accent);
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.spec__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
}

.spec__row span {
    color: var(--text-muted);
}

.spec__row strong {
    color: var(--text-primary);
    font-family: var(--font-tech);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-card__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 168, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    align-self: flex-start;
}

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

.product-card__use strong {
    color: var(--text-primary);
}

.products__more {
    text-align: center;
    margin-top: 60px;
}

/* ========== FEATURES ========== */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    transition: transform var(--transition);
}

.feature:hover {
    transform: translateY(-6px);
}

.feature__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), #0066aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 10px 30px var(--accent-glow);
    position: relative;
}

.feature__icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(0, 168, 255, 0.4);
    border-radius: 50%;
    animation: spin 15s linear infinite;
}

.feature__title {
    font-family: var(--font-tech);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature__text {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========== NEWS ========== */
.news {
    padding: 100px 0;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.news-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.news-card__image {
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 168, 255, 0.2), transparent 50%),
        var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.news-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.news-card__body {
    padding: 24px;
}

.news-card__title {
    font-family: var(--font-tech);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.news-card__more {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.news-card:hover .news-card__more i {
    transform: translateX(4px);
}

.news-card__more i {
    transition: transform var(--transition);
}

/* ========== CTA ========== */
.cta {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(0, 168, 255, 0.15) 0%, transparent 100%),
        var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(60px);
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cta__text {
    color: var(--text-secondary);
}

.cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: #050505;
    padding-top: 80px;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.logo--footer {
    margin-bottom: 20px;
}

.footer__about {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer__socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer__col h4 {
    font-family: var(--font-tech);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
}

.footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer__col a,
.footer__col p {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer__col p i {
    color: var(--accent);
    margin-right: 8px;
    width: 14px;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* ========== TO TOP ========== */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 10px 30px var(--accent-glow);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 50;
}

.to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switch {
    position: relative;
    margin-left: 8px;
}

.lang-switch__current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.lang-switch__current:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-switch__flag {
    font-size: 14px;
    line-height: 1;
}

.lang-switch__code {
    font-family: var(--font-tech);
    font-weight: 700;
}

.lang-switch__current i {
    font-size: 9px;
    transition: transform var(--transition);
}

.lang-switch.open .lang-switch__current i {
    transform: rotate(180deg);
}

.lang-switch__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 110;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lang-switch.open .lang-switch__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switch__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-secondary);
    font-size: 13px;
    border-radius: 6px;
    transition: all var(--transition);
}

.lang-switch__item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.lang-switch__item.active {
    background: rgba(0, 168, 255, 0.1);
    color: var(--accent);
}

.lang-switch__item .lang-switch__flag {
    font-size: 18px;
}

.lang-switch__code-mini {
    margin-left: auto;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.lang-switch__item.active .lang-switch__code-mini {
    color: var(--accent);
}

/* Language switcher in mobile drawer */
.drawer__lang {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    padding: 4px;
    border-radius: 10px;
}

.drawer__lang-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-tech);
    letter-spacing: 1px;
    transition: all var(--transition);
}

.drawer__lang-item:hover {
    color: var(--text-primary);
}

.drawer__lang-item.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.drawer__lang-item span {
    font-family: var(--font-body);
    font-size: 16px;
}

/* ========== MOBILE DRAWER ========== */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.drawer.open {
    transform: translateX(0);
    box-shadow: 30px 0 60px rgba(0, 0, 0, 0.5);
}

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

.drawer__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 16px;
}

.drawer__close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.drawer__nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer__nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.drawer__nav a i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.drawer__nav a:hover,
.drawer__nav a.active {
    background: rgba(0, 168, 255, 0.1);
    color: var(--text-primary);
}

.drawer__nav a:hover i,
.drawer__nav a.active i {
    color: var(--accent);
}

.drawer__nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}

.drawer__divider {
    height: 1px;
    background: var(--border);
    margin: 12px 16px;
}

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

.drawer__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.drawer__socials {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.drawer__socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.drawer__socials a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 250;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ========== BOTTOM TAB BAR (Mobile only) ========== */
.tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0));
    z-index: 90;
    justify-content: space-around;
    align-items: center;
    /* Lock to viewport bottom even when iOS toolbar shows/hides */
    transform: translateZ(0);
    will-change: transform;
}

.tab-bar__item {
    flex: 1;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 4px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition);
    position: relative;
}

.tab-bar__item i {
    font-size: 20px;
    transition: transform var(--transition);
}

.tab-bar__item.active {
    color: var(--accent);
}

.tab-bar__item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 0 0 2px 2px;
}

.tab-bar__item:hover {
    color: var(--text-primary);
}

.tab-bar__item:hover i {
    transform: translateY(-2px);
}

.tab-bar__center i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px var(--accent-glow);
    margin-top: -16px;
}

.tab-bar__center span {
    margin-top: 2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .products__grid,
    .news__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav { display: none; }
    .burger { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__visual {
        height: 360px;
        order: -1;
    }
    .hero__tag,
    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
    .top-bar__links { display: none; }
}

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar { display: none; }

    /* Show bottom tab bar */
    .tab-bar { display: flex; }

    /* Add padding to body so bottom tab bar doesn't overlap content.
       Includes safe-area-inset for iPhones with home indicator. */
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0));
    }

    /* Center logo, burger left, search right */
    .header__inner {
        padding: 12px 16px;
        display: grid;
        grid-template-columns: 42px 1fr 42px;
        gap: 8px;
    }

    .logo {
        justify-content: center;
        font-size: 20px;
    }

    .logo__icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .burger,
    .search-btn {
        width: 42px;
        height: 42px;
    }

    /* HERO mobile tweaks */
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero__visual {
        height: 280px;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Products in 2 columns */
    .products,
    .news {
        padding: 60px 0;
    }

    .products__grid,
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-card__body {
        padding: 14px;
    }

    .product-card__title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .spec {
        padding: 10px 12px;
    }

    .spec__row {
        font-size: 11px;
        padding: 4px 0;
    }

    .spec__row strong {
        font-size: 12px;
    }

    .badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .product-card__use {
        font-size: 11px;
    }

    .news-card__image {
        font-size: 48px;
    }

    .news-card__title {
        font-size: 14px;
    }

    .news-card__body {
        padding: 16px;
    }

    /* Section heads */
    .section-head {
        margin-bottom: 36px;
    }

    /* Features */
    .features {
        padding: 50px 0;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        padding: 20px;
        background: var(--bg-card);
        border-radius: 12px;
        border: 1px solid var(--border);
    }

    .feature__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .feature__title {
        font-size: 18px;
    }

    /* CTA */
    .cta {
        padding: 50px 0;
    }

    .cta__inner {
        flex-direction: column;
        text-align: center;
    }

    /* Footer */
    .footer {
        padding-top: 50px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 30px;
    }

    /* Hide to-top on mobile (we have tab bar) */
    .to-top {
        bottom: 90px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    /* Search card slimmer on mobile */
    .search-overlay .container {
        padding-top: 16px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .search-overlay__card {
        padding: 16px 18px 18px;
        border-radius: 12px;
    }

    .search-overlay__title {
        font-size: 16px;
    }

    .search-form input {
        font-size: 14px;
        padding: 13px 52px 13px 42px;
    }

    /* Buttons full width on mobile */
    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero .btn,
    .products__more .btn,
    .news-card__more {
        width: auto;
    }

    .hero .btn {
        display: inline-flex;
    }
}

@media (max-width: 380px) {
    .products__grid,
    .news__grid {
        grid-template-columns: 1fr;
    }

    .tab-bar__item {
        font-size: 10px;
    }

    .tab-bar__item i {
        font-size: 18px;
    }
}

/* ============================================ */
/*   DLE-SPECIFIC STYLES                        */
/* ============================================ */

/* === BREADCRUMBS === */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px 0 12px;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs i.fa-chevron-right {
    font-size: 9px;
    color: var(--text-muted);
}

.breadcrumbs span:last-child {
    color: var(--text-primary);
}

/* === PRODUCT FULL PAGE === */
.product-full {
    padding: 20px 0 60px;
}

.product-full__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-full__title {
    font-family: var(--font-tech);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-full__use {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.product-full__use strong {
    color: var(--text-primary);
}

/* === GALLERY === */
.gallery {
    position: sticky;
    top: 100px;
}

.gallery__main {
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 70%),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}

.gallery__main img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.gallery__main:hover img {
    transform: scale(1.05);
}

.gallery__placeholder {
    font-size: 100px;
    color: var(--accent);
    opacity: 0.4;
}

.badge--gallery {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.gallery__thumbs img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all var(--transition);
}

.gallery__thumbs img:hover,
.gallery__thumbs img.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.2);
}

/* === SPECS TABLE === */
.specs-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
}

.specs-table__title {
    font-family: var(--font-tech);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.specs-table__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}

.specs-table__row:last-child {
    border-bottom: none;
}

.specs-table__row span {
    color: var(--text-muted);
}

.specs-table__row strong {
    color: var(--text-primary);
    font-family: var(--font-tech);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* === DESCRIPTION === */
.product-full__description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
}

.product-full__description p {
    margin-bottom: 12px;
}

.product-full__description p:last-child {
    margin-bottom: 0;
}

/* === ACTIONS === */
.product-full__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn--telegram {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.btn--telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
    color: #fff;
}

.btn--big {
    padding: 18px 28px;
    font-size: 16px;
}

/* === SHARE === */
.product-full__share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.product-full__share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.product-full__share a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* === META === */
.product-full__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 13px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-full__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-full__meta a {
    color: var(--accent);
}

/* === RELATED === */
.related {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.section-head--small {
    margin-bottom: 30px;
}

.section-head--small .section-head__title {
    font-size: clamp(28px, 3vw, 38px);
}

/* === SEARCH RESULTS === */
.search-results {
    padding: 30px 0;
}

.search-results__head {
    margin-bottom: 30px;
}

.search-results__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-results__title i {
    color: var(--accent);
}

.search-results__query {
    color: var(--text-secondary);
}

.search-results__query strong {
    color: var(--accent);
    font-family: var(--font-tech);
}

.search-results__query em {
    color: var(--text-primary);
    font-style: normal;
    font-weight: 600;
}

.search-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: 12px;
}

.search-empty i {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.search-empty h3 {
    font-family: var(--font-tech);
    font-size: 22px;
    margin-bottom: 10px;
}

.search-empty p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* === STATIC PAGE === */
.static-page {
    padding: 20px 0 60px;
    max-width: 860px;
    margin: 0 auto;
}

.static-page__head {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.static-page__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.static-page__content {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.static-page__content h2,
.static-page__content h3 {
    color: var(--text-primary);
    font-family: var(--font-tech);
    margin: 28px 0 14px;
}

.static-page__content h2 {
    font-size: 24px;
}

.static-page__content h3 {
    font-size: 20px;
}

.static-page__content p {
    margin-bottom: 16px;
}

.static-page__content ul,
.static-page__content ol {
    margin: 16px 0 16px 24px;
}

.static-page__content li {
    margin-bottom: 8px;
}

.static-page__content a {
    color: var(--accent);
    text-decoration: underline;
}

.static-page__cta {
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.static-page__cta h3 {
    font-family: var(--font-tech);
    font-size: 22px;
    margin-bottom: 8px;
}

.static-page__cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.static-page__cta .cta__actions {
    justify-content: center;
}

/* === INFO BOX (system messages) === */
.info-box {
    text-align: center;
    padding: 60px 30px;
    max-width: 500px;
    margin: 60px auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.info-box__icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.info-box__title {
    font-family: var(--font-tech);
    font-size: 24px;
    margin-bottom: 12px;
}

.info-box__text {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* === FEEDBACK PAGE === */
.feedback-page {
    max-width: 600px;
    margin: 30px auto 60px;
    padding: 30px 20px;
}

.feedback-page__head {
    text-align: center;
    margin-bottom: 32px;
}

.feedback-page__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 12px;
}

.feedback-page__subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

.feedback-page__quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feedback-page__quick .btn {
    width: 100%;
    justify-content: center;
}

.feedback-page__divider {
    text-align: center;
    color: var(--text-muted);
    margin: 32px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.feedback-page__divider::before,
.feedback-page__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.feedback-page__divider::before { left: 0; }
.feedback-page__divider::after { right: 0; }

.feedback-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
}

.feedback-form h3 {
    font-family: var(--font-tech);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form textarea {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 14px;
    outline: none;
    transition: border-color var(--transition);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: var(--accent);
}

.feedback-form textarea {
    min-height: 120px;
    resize: vertical;
}

.feedback-form input[type="submit"],
.feedback-form button[type="submit"] {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.feedback-form input[type="submit"]:hover,
.feedback-form button[type="submit"]:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* === FLOATING WHATSAPP BUTTON === */
.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 60;
    animation: wa-pulse 2s infinite;
    transition: transform var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* === FOOTER POWERED === */
.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__powered {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.6;
}

/* === MOBILE STYLES FOR DLE PAGES === */
@media (max-width: 768px) {
    .product-full__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery {
        position: static;
    }

    .gallery__thumbs {
        grid-template-columns: repeat(5, 1fr);
    }

    .specs-table {
        padding: 18px;
    }

    .specs-table__row {
        font-size: 13px;
        padding: 10px 0;
    }

    .product-full__actions {
        gap: 8px;
    }

    .static-page__cta {
        padding: 24px 16px;
    }

    .feedback-form {
        padding: 20px 16px;
    }

    .wa-float {
        bottom: 80px;
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .breadcrumbs {
        font-size: 12px;
        padding: 16px 0 8px;
    }

    .footer__bottom .container {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================ */
/*   PRODUCT FEATURES (icons row)               */
/* ============================================ */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.product-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-primary);
}

.product-feature i {
    color: var(--accent);
    font-size: 13px;
}

/* ============================================ */
/*   DETAIL BLOCKS (pulley1, diode1, etc)       */
/* ============================================ */
.detail-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}

.detail-block h4 {
    font-family: var(--font-tech);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.detail-block__content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.detail-block__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
}

.detail-block__content td,
.detail-block__content th {
    padding: 8px 12px;
    border: 1px solid var(--border);
    text-align: left;
}

.detail-block__content th {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-family: var(--font-tech);
}

.detail-block__content img {
    max-width: 100%;
    border-radius: 6px;
    margin: 8px 0;
}

.detail-block__content ul,
.detail-block__content ol {
    margin: 8px 0 8px 20px;
}

.detail-block__content a {
    color: var(--accent);
}

@media (max-width: 768px) {
    .product-features {
        padding: 12px;
    }

    .product-feature {
        font-size: 11px;
        padding: 5px 10px;
    }

    .detail-block {
        padding: 14px;
    }

    .detail-block h4 {
        font-size: 13px;
    }
}

/* ============================================ */
/*   PAGINATION                                 */
/* ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 8px;
    font-family: var(--font-tech);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.pagination .nav_ext,
.pagination span:not(.nav_ext):not(:hover) {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ============================================ */
/*   DESKTOP — 2 columns, bigger cards          */
/* ============================================ */
@media (min-width: 769px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .product-card__image {
        aspect-ratio: 16 / 10;
        padding: 30px;
    }

    .product-card__image img {
        max-width: 70%;
        max-height: 70%;
    }

    .product-card__body {
        padding: 30px;
    }

    .product-card__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .spec {
        padding: 18px 22px;
    }

    .spec__row {
        font-size: 14px;
        padding: 8px 0;
    }

    .spec__row strong {
        font-size: 15px;
    }
}

@media (min-width: 1200px) {
    .products__grid {
        max-width: 1200px;
        gap: 40px;
    }
}

/* ============================================ */
/*   PRODUCT CARDS — Bootstrap-grid based       */
/*   (matches old shortstory.tpl structure)     */
/* ============================================ */

/* Reset Bootstrap row/col defaults a bit */
.shop__section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

/* CARD WRAPPER */
.product__card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
    z-index: 2;
}

.product__card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product__card:hover::before {
    transform: scaleX(1);
}

.product__card--link-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
}

/* IMAGE */
.product__card--thumbnail {
    overflow: hidden;
    padding: 20px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 70%),
        var(--bg-tertiary);
}

.product_card--thumbnail_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.product__card:hover .product_card--thumbnail_img {
    transform: scale(1.06);
}

/* CONTENT */
.product__card--content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product__card--title {
    font-family: var(--font-tech);
    font-size: 16px;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* META LIST (specs) */
.product__meta-list {
    background: var(--bg-tertiary);
    border-left: 3px solid var(--accent);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    border-radius: 0 4px 4px 0;
}

.meta__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.meta__label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.meta__value {
    font-family: var(--font-tech);
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* RESTORED BOX */
.restored-box {
    margin-top: auto;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.restored-head {
    display: flex;
    align-items: center;
}

.restored-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 168, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 100px;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.restored-usage {
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    padding-top: 8px;
}

.restored-usage strong {
    color: var(--text-primary);
    font-family: var(--font-tech);
    letter-spacing: 0.3px;
}

/* DESKTOP — bigger and more readable */
@media (min-width: 1024px) {
    .product__card--content {
        padding: 22px;
    }

    .product__card--title {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .product__meta-list {
        padding: 14px 16px;
        gap: 10px;
        margin-bottom: 16px;
    }

    .meta__label {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .meta__value {
        font-size: 16px;
    }

    .restored-usage {
        font-size: 13px;
        line-height: 1.5;
        padding-top: 10px;
    }

    .restored-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .product__card--thumbnail {
        padding: 30px;
    }
}

/* MOBILE adjustments */
@media (max-width: 767px) {
    .product__card--content {
        padding: 12px;
    }

    .product__card--title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .product__meta-list {
        padding: 10px;
        gap: 6px;
        margin-bottom: 10px;
    }

    .meta__row {
        font-size: 11px;
    }

    .meta__label {
        font-size: 9px;
    }

    .meta__value {
        font-size: 11px;
    }

    .restored-box {
        padding: 10px;
    }

    .restored-badge {
        font-size: 10px;
        padding: 3px 8px;
        letter-spacing: 1px;
    }

    .restored-usage {
        font-size: 11px;
    }
}

/* ============================================ */
/*   MINIMAL BOOTSTRAP-LIKE GRID                */
/*   (since shortstory.tpl uses col-lg-3 etc.) */
/* ============================================ */
.shop__section {
    padding: 40px 0;
}

.shop__section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    list-style: none;
}

.shop__section .row > [class*="col-"] {
    padding: 0 10px;
    box-sizing: border-box;
}

.mb-30 { margin-bottom: 24px; }

/* Default — mobile first, 2 cols */
.col-6,
[class*="col-sm-6"] { width: 50%; }

/* Small screens (tablets) */
@media (min-width: 576px) {
    .col-sm-6 { width: 50%; }
}

/* Medium screens (laptops) */
@media (min-width: 768px) {
    .col-md-4 { width: 33.3333%; }
    .col-md-6 { width: 50%; }
}

/* Large screens (desktops) — 4 columns */
@media (min-width: 1024px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.3333%; }
    .col-lg-6 { width: 50%; }
}

@media (max-width: 575px) {
    .shop__section .row {
        margin: 0 -6px;
    }
    .shop__section .row > [class*="col-"] {
        padding: 0 6px;
    }
    .mb-30 { margin-bottom: 14px; }
}

/* ============================================ */
/*   PRODUCT DETAILS PAGE                       */
/* ============================================ */
.product__details--section {
    padding: 30px 0 60px;
}

.product__details--row {
    margin-bottom: 40px;
}

.product__details--media {
    position: sticky;
    top: 100px;
}

.product__details--info {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .product__details--media {
        position: static;
        margin-bottom: 24px;
    }
    .product__details--info {
        padding-left: 0;
    }
}

/* ============================================ */
/*   AG2-CARD — Specifications table            */
/* ============================================ */
.ag2-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ag2-head {
    position: relative;
    text-align: center;
    padding: 20px 20px 14px;
    background:
        linear-gradient(180deg, rgba(0, 168, 255, 0.1), transparent),
        repeating-linear-gradient(135deg, rgba(0, 168, 255, 0.05) 0, rgba(0, 168, 255, 0.05) 8px, transparent 8px, transparent 16px);
    border-bottom: 1px solid var(--border);
}

.ag2-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1.2;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ag2-sub {
    margin: 4px 0 8px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ag2-underline {
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 999px;
    margin: 8px auto 0;
    box-shadow: 0 0 12px var(--accent-glow);
}

.ag2-body {
    padding: 16px 20px 22px;
}

.ag2-specs {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.ag2-row {
    display: contents;
}

.ag2-key {
    background: var(--bg-secondary);
    padding: 12px 14px;
    font-family: var(--font-tech);
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ag2-key::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
}

.ag2-val {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 14px;
    background: var(--bg-card);
}

.ag2-highlight {
    color: var(--accent);
    font-size: 16px;
}

.ag2-specs > .ag2-row:last-child .ag2-key,
.ag2-specs > .ag2-row:last-child .ag2-val {
    border-bottom: none;
}

@media (max-width: 700px) {
    .ag2-specs {
        display: block;
        border: none;
        background: transparent;
    }
    .ag2-row {
        display: block;
        border: 1px solid var(--border);
        border-radius: 10px;
        overflow: hidden;
        background: var(--bg-card);
        margin-bottom: 8px;
    }
    .ag2-key {
        border-bottom: 1px solid var(--border);
        padding: 10px 14px;
        font-size: 11px;
    }
    .ag2-val {
        padding: 10px 14px;
        border: none;
        font-size: 14px;
    }
}

/* ============================================ */
/*   AG-ACC — Models accordion                  */
/* ============================================ */
.ag-acc {
    margin: 18px 0 24px;
}

.ag-acc__toggle {
    width: 100%;
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.ag-acc__toggle:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.ag-acc__icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.ag-acc__toggle[aria-expanded="true"] .ag-acc__icon {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.ag-acc__body {
    margin-top: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.ag-acc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 4px;
}

.ag-acc__link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 7px 8px;
    border-radius: 6px;
    transition: all 0.25s ease-in-out;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.ag-acc__link::before {
    content: "•";
    color: var(--accent);
    margin-right: 8px;
    font-weight: bold;
    font-size: 16px;
}

.ag-acc__link:hover {
    color: var(--accent);
    padding-left: 14px;
    border-bottom-color: var(--accent);
}

.seo-hidden-assets,
.seo-hidden-container {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
    white-space: nowrap;
}

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

/* ============================================ */
/*   COMPONENTS WIDGET — Side accordion         */
/* ============================================ */
.components-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    margin: 20px 0 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.components-widget__title {
    text-align: center;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 10px;
    padding-bottom: 10px;
    position: relative;
}

.components-widget__title::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
    margin: 8px auto 0;
}

.components-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.components-list__item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-tertiary);
    transition: all var(--transition);
}

.components-list__item:hover {
    border-color: var(--accent);
}

.components-list__toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 12px 14px;
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.components-list__toggle > i:first-child {
    color: var(--accent);
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.components-list__toggle span {
    flex: 1;
}

.components-list__toggle .arrow {
    transition: transform var(--transition);
    color: var(--text-muted);
    font-size: 11px;
}

.components-list__item.is-open .components-list__toggle {
    background: rgba(0, 168, 255, 0.1);
}

.components-list__item.is-open .arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.components-list__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 14px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.components-list__item.is-open .components-list__content {
    max-height: 1000px;
    padding: 0 14px 14px;
    border-top: 1px solid var(--border);
    margin-top: 0;
    padding-top: 12px;
}

.components-list__content img {
    max-width: 100%;
    border-radius: 6px;
    margin: 6px 0;
}

.components-list__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0;
    font-size: 12px;
}

.components-list__content td,
.components-list__content th {
    padding: 6px 10px;
    border: 1px solid var(--border);
}

.components-list__content th {
    background: var(--bg-secondary);
}

/* ============================================ */
/*   SWIPER GALLERY                             */
/* ============================================ */
.product__details--media {
    position: sticky;
    top: 100px;
}

.single__product--preview {
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 70%),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 1 / 1;
    position: relative;
}

.product__media--preview__items {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product__media--preview__items--img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.single__product--preview .swiper-button-next,
.single__product--preview .swiper-button-prev {
    color: var(--accent) !important;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.single__product--preview .swiper-button-next::after,
.single__product--preview .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.single__product--nav {
    margin-top: 10px;
}

.product__media--nav__items {
    aspect-ratio: 1 / 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    transition: all var(--transition);
}

.product__media--nav__items img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-slide-thumb-active .product__media--nav__items {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.2);
}

.product__details--info__title {
    font-family: var(--font-tech);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .product__details--media {
        position: static;
        margin-bottom: 24px;
    }
}

/* ============================================ */
/*   PRODUCT FULL PAGE                          */
/* ============================================ */
.product-full-page {
    padding: 30px 0 60px;
    min-height: 70vh;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.breadcrumbs a:hover {
    color: var(--accent);
}
.breadcrumbs i.fa-chevron-right {
    font-size: 9px;
    color: var(--text-muted);
}
.breadcrumb-current {
    color: var(--text-primary);
    font-family: var(--font-tech);
}

.product-full__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .product-full__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================ */
/*   GALLERY                                    */
/* ============================================ */
.gallery-box {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    background:
        radial-gradient(circle at center, rgba(0, 168, 255, 0.05), transparent 70%),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
    margin-bottom: 12px;
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 168, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 168, 255, 0.4);
    border-radius: 100px;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    font-size: 16px;
}

.gallery-nav:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.gallery-nav--prev { left: 12px; }
.gallery-nav--next { right: 12px; }

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.gallery-thumb {
    flex: 0 0 80px;
    aspect-ratio: 1 / 1;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    transition: all var(--transition);
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumb:hover {
    border-color: var(--border-hover);
}

.gallery-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.2);
}

@media (max-width: 968px) {
    .gallery-box {
        position: static;
    }
    .gallery-main {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-main {
        padding: 20px;
    }
    .gallery-thumb {
        flex: 0 0 60px;
    }
    .gallery-nav {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============================================ */
/*   PRODUCT INFO                               */
/* ============================================ */
.product-full__title {
    font-family: var(--font-tech);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-full__use {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.product-full__use strong {
    color: var(--accent);
    font-family: var(--font-tech);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

/* ============================================ */
/*   ACTION BUTTONS                             */
/* ============================================ */
.product-full__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-tech);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    color: #fff;
}

.btn-action--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-action--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn-action--phone {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-action--phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--accent-glow);
    color: #fff;
}

.btn-action i {
    font-size: 20px;
}

/* ============================================ */
/*   META ROW                                   */
/* ============================================ */
.product-full__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.product-full__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-full__meta a {
    color: var(--text-secondary);
}

.product-full__meta a:hover {
    color: var(--accent);
}

/* ============================================ */
/*   DESCRIPTION                                */
/* ============================================ */
.product-full__description {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.product-full__description:empty {
    display: none;
}

/* ============================================ */
/*   TRUST ICONS                                */
/* ============================================ */
.trust-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 40px 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    color: var(--text-primary);
    font-family: var(--font-tech);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-item i {
    font-size: 32px;
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

@media (max-width: 600px) {
    .trust-icons {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 16px;
    }
}

/* ============================================ */
/*   AG-ACC ICON ROTATION                       */
/* ============================================ */
.ag-acc__icon {
    transition: transform var(--transition);
    margin-left: auto;
    font-size: 12px !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    transform: none !important;
}

.ag-acc__toggle.is-open .ag-acc__icon {
    transform: rotate(180deg) !important;
}

.ag-acc__toggle i:first-child {
    margin-right: 4px;
}

/* ============================================ */
/*   COMP-ITEM (components accordion)           */
/* ============================================ */
.comp-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-tertiary);
    transition: all var(--transition);
    margin-bottom: 8px;
}

.comp-item:hover {
    border-color: var(--border-hover);
}

.comp-item__toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 14px 16px;
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.comp-item__toggle .comp-icon {
    color: var(--accent);
    width: 18px;
    text-align: center;
    font-size: 15px;
    flex-shrink: 0;
}

.comp-item__toggle span {
    flex: 1;
}

.comp-item__toggle .comp-arrow {
    transition: transform var(--transition);
    color: var(--text-muted);
    font-size: 12px;
    flex-shrink: 0;
}

.comp-item.is-open .comp-item__toggle {
    background: rgba(0, 168, 255, 0.1);
    color: var(--accent);
}

.comp-item.is-open .comp-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.comp-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 16px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    background: var(--bg-card);
}

.comp-item.is-open .comp-item__content {
    max-height: 2000px;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
}

.comp-item__content img {
    max-width: 100%;
    border-radius: 6px;
    margin: 6px 0;
}

.comp-item__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
    font-size: 12px;
    background: transparent;
}

.comp-item__content td,
.comp-item__content th {
    padding: 6px 10px;
    border: 1px solid var(--border);
    text-align: left;
    background: transparent;
    color: var(--text-secondary);
}

.comp-item__content th {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.comp-item__content a {
    color: var(--accent);
}

.comp-item__content ul,
.comp-item__content ol {
    margin: 8px 0 8px 20px;
}







.product-full__description {
    display: none !important;
}

.product-full__meta {
    display: none !important;
}





















