/* ============================================
   JustQuality - Premium Brand Theme
   ============================================ */

:root {
    --jq-primary: #d32f2f;
    --jq-primary-hover: #b71c1c;
    --jq-primary-light: #fce4e4;
    --jq-primary-rgb: 211, 47, 47;
    --jq-gold: #c9a55a;
    --jq-gold-light: #f9f3e6;
    --jq-gold-dark: #a88a42;

    --hb-orange: var(--jq-primary);
    --hb-orange-hover: var(--jq-primary-hover);
    --hb-orange-light: var(--jq-primary-light);
    --hb-green: #00b67a;
    --hb-green-light: #ecfdf5;
    --hb-green-dark: #059669;
    --hb-red: #ef4444;
    --hb-red-light: #fef2f2;
    --hb-yellow: var(--jq-gold);
    --hb-blue: #3b82f6;
    --hb-purple: #8b5cf6;

    --hb-bg: #fcfafa;
    --hb-bg-white: #ffffff;
    --hb-bg-card: #ffffff;
    --hb-bg-gray: #f9f9fa;
    --hb-bg-dark: #0d0d14;

    --hb-text: #111827;
    --hb-text-secondary: #4b5563;
    --hb-text-muted: #9ca3af;
    --hb-text-light: #d1d5db;
    --hb-text-white: #ffffff;

    --hb-border: #e5e7eb;
    --hb-border-light: #f3f4f6;

    --hb-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --hb-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --hb-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
    --hb-shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.03);
    --hb-shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);

    --hb-radius: 10px;
    --hb-radius-sm: 6px;
    --hb-radius-lg: 14px;
    --hb-radius-xl: 20px;

    --hb-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hb-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    --hb-container: 1240px;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--hb-font);
    background: var(--hb-bg);
    color: var(--hb-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ============ ACCESSIBILITY ============ */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--jq-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 0 var(--hb-radius-sm) var(--hb-radius-sm);
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-nav:focus {
    top: 0;
    outline: 3px solid var(--jq-gold);
    outline-offset: 2px;
}

:focus-visible {
    outline: 2px solid var(--jq-primary);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.hb-page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hb-page-loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.hb-page-loader__spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid rgba(211, 47, 47, 0.1);
    border-top-color: var(--jq-primary);
    animation: hb-spin 0.8s linear infinite;
}

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

a { color: var(--hb-text); text-decoration: none; transition: var(--hb-transition); }
a:hover { color: var(--hb-orange); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.hb-container {
    width: 100%;
    max-width: var(--hb-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
.hb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--hb-bg-white);
    border-bottom: 1px solid var(--hb-border);
}

.hb-header-main {
    padding: 14px 0;
}

.hb-header-main .hb-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.hb-logo {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hb-logo__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hb-logo__text {
    font-size: 22px;
    font-weight: 400;
    color: var(--hb-text);
    letter-spacing: -0.5px;
}

.hb-logo__text strong {
    font-weight: 800;
    color: var(--hb-orange);
}

/* Search */
.hb-search {
    flex: 0 1 640px;
    position: relative;
}

.hb-search__wrapper {
    display: flex;
    align-items: center;
    background: var(--hb-bg-gray);
    border: 2px solid transparent;
    border-radius: var(--hb-radius-lg);
    overflow: hidden;
    transition: var(--hb-transition);
}

.hb-search__wrapper:focus-within {
    background: var(--hb-bg-white);
    border-color: var(--jq-primary);
    box-shadow: 0 0 0 4px rgba(var(--jq-primary-rgb), 0.08);
}

.hb-search__icon {
    padding: 0 0 0 16px;
    color: var(--hb-text-muted);
    font-size: 15px;
}

.hb-search__input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--hb-text);
    background: transparent;
    font-weight: 500;
}

.hb-search__input::placeholder { color: var(--hb-text-muted); font-weight: 400; }

.hb-search__btn {
    padding: 10px 24px;
    background: var(--hb-orange);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hb-transition);
    margin: 4px;
    border-radius: var(--hb-radius);
    white-space: nowrap;
}

.hb-search__btn:hover { background: var(--hb-orange-hover); }

.hb-search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    box-shadow: var(--hb-shadow-lg);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
}

.hb-search-suggestions.active { display: block; }

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--hb-transition);
    color: var(--hb-text);
}

.search-suggestion-item:hover { background: var(--hb-bg-gray); }

.search-suggestion-item__img {
    width: 40px;
    height: 40px;
    border-radius: var(--hb-radius-sm);
    background: var(--hb-bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-text-muted);
}

.search-suggestion-item__name { font-size: 13px; font-weight: 500; }
.search-suggestion-item__price { font-size: 12px; color: var(--hb-orange); font-weight: 600; }

/* Header Actions */
.hb-header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.hb-header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 14px;
    border-radius: var(--hb-radius);
    font-size: 11px;
    color: var(--hb-text-secondary);
    font-weight: 600;
    transition: var(--hb-transition);
    position: relative;
}

.hb-header-action i { font-size: 20px; transition: var(--hb-transition); }
.hb-header-action:hover { background: var(--hb-bg-gray); color: var(--hb-orange); }
.hb-header-action:hover i { color: var(--hb-orange); transform: scale(1.05); }

.hb-header-action--highlight {
    background: var(--hb-orange-light);
    color: var(--hb-orange);
}
.hb-header-action--highlight i { color: var(--hb-orange); }
.hb-header-action--highlight:hover { background: rgba(var(--jq-primary-rgb), 0.15); }

/* ============ NAVIGATION ============ */
.hb-nav {
    background: var(--hb-bg-white);
    border-top: 1px solid var(--hb-border-light);
}

.hb-nav .hb-container { display: flex; align-items: center; }

.hb-nav__toggle {
    display: none;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--hb-text);
    font-weight: 600;
    gap: 8px;
    align-items: center;
}

.hb-nav__list {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.hb-nav__list::-webkit-scrollbar { display: none; }

.hb-nav__link {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb-text-secondary);
    white-space: nowrap;
    transition: var(--hb-transition);
    border-bottom: 2px solid transparent;
    letter-spacing: -0.01em;
}

.hb-nav__link:hover {
    color: var(--hb-orange);
    border-bottom-color: var(--hb-orange);
}

/* ============ MAIN ============ */
.hb-main { min-height: 60vh; }

/* ============ HERO ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0a0a12 0%, #141420 35%, #1a0a10 65%, #0a0a12 100%);
    overflow: hidden;
    padding: 76px 0 60px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--jq-primary-rgb),0.35), transparent 70%);
    top: -150px;
    right: -100px;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,165,90,0.2), transparent 70%);
    bottom: -120px;
    left: -80px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201,165,90,0.15), transparent 70%);
    top: 40%;
    left: 45%;
    animation: orbFloat 18s ease-in-out infinite;
}

.hero__grid-pattern {
    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: 64px 64px;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -25px) scale(1.06); }
    66% { transform: translate(-25px, 20px) scale(0.94); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(201,165,90,0.12);
    border: 1px solid rgba(201,165,90,0.3);
    border-radius: 50px;
    color: var(--jq-gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInDown 0.6s ease;
}

.hero__badge i { font-size: 12px; }

.hero__title {
    font-size: 46px;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    animation: fadeInDown 0.6s ease 0.1s both;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 400;
    animation: fadeInDown 0.6s ease 0.2s both;
}

.hero__search {
    animation: fadeInDown 0.6s ease 0.3s both;
}

.hero__search-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--hb-radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero__search-wrap:focus-within {
    background: rgba(255,255,255,0.12);
    border-color: rgba(var(--jq-primary-rgb),0.5);
    box-shadow: 0 0 40px rgba(var(--jq-primary-rgb), 0.1);
}

.hero__search-icon {
    display: flex;
    align-items: center;
    padding: 0 0 0 22px;
    color: rgba(255,255,255,0.35);
    font-size: 17px;
}

.hero__search-input {
    flex: 1;
    padding: 18px 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.hero__search-input::placeholder { color: rgba(255,255,255,0.3); font-weight: 400; }

.hero__search-btn {
    padding: 14px 34px;
    background: var(--hb-orange);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 5px;
    border-radius: 16px;
}

.hero__search-btn:hover {
    background: var(--hb-orange-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(var(--jq-primary-rgb), 0.35);
}

.hero__search-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    flex-wrap: wrap;
    animation: fadeInDown 0.6s ease 0.4s both;
}

.hero__search-tags span { color: rgba(255,255,255,0.3); font-weight: 500; }

.hero__search-tags a {
    color: rgba(255,255,255,0.55);
    padding: 5px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 12px;
}

.hero__search-tags a:hover {
    color: white;
    background: rgba(var(--jq-primary-rgb), 0.2);
    border-color: rgba(var(--jq-primary-rgb), 0.3);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    animation: fadeInDown 0.6s ease 0.5s both;
}

.hero__stat {
    text-align: center;
    padding: 0 32px;
}

.hero__stat-number {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: var(--jq-gold);
    line-height: 1;
    letter-spacing: -0.5px;
}

.hero__stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ PLATFORMS STRIP ============ */
.platforms-strip {
    background: transparent;
    padding: 16px 0;
    margin-top: 20px;
}

.platforms-strip__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.platforms-strip__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--hb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.platforms-strip__logos {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.platforms-strip__logos::-webkit-scrollbar { display: none; }

.platforms-strip__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb-text-secondary);
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: var(--hb-radius);
    transition: var(--hb-transition);
    border: 1px solid transparent;
}

.platforms-strip__item:hover {
    background: var(--hb-bg-gray);
    border-color: var(--hb-border);
}

.platforms-strip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.platforms-strip__logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

/* ============ CATEGORIES SECTION ============ */
.categories-section {
    background: transparent;
    padding: 14px 0;
}

.categories-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 0;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: var(--hb-bg-white);
    border: 1px solid var(--hb-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb-text-secondary);
    white-space: nowrap;
    transition: all 0.25s ease;
}

.category-chip i { font-size: 13px; color: var(--hb-text-muted); transition: var(--hb-transition); }

.category-chip:hover {
    background: var(--hb-orange);
    border-color: var(--hb-orange);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--jq-primary-rgb), 0.2);
}

.category-chip:hover i { color: white; }

/* ============ PRODUCT SECTION ============ */
.product-section { padding: 32px 0 0; }

.product-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-section__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-section__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--hb-radius);
    background: linear-gradient(135deg, var(--hb-orange-light), rgba(var(--jq-primary-rgb),0.08));
    color: var(--hb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.product-section__icon--blue {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.05));
    color: var(--hb-blue);
}

.product-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--hb-text);
    letter-spacing: -0.3px;
}

.product-section__see-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--hb-orange);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-section__see-all:hover { gap: 8px; }
.product-section__see-all i { font-size: 10px; transition: var(--hb-transition); }

/* ============ PRODUCT GRID ============ */
.hb-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 14px;
}

/* ============ PRODUCT CARD ============ */
.hb-product-card {
    background: var(--hb-bg-card);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.hb-product-card:hover {
    border-color: var(--hb-border);
    box-shadow: var(--hb-shadow-lg);
    transform: translateY(-3px);
}

.hb-product-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hb-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px;
    border-radius: var(--hb-radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.hb-badge--coupon { background: var(--hb-green); color: white; }
.hb-badge--discount { background: var(--hb-red); color: white; }
.hb-badge--campaign { background: var(--hb-orange); color: white; }

.hb-product-card__image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
    background: white;
    position: relative;
    overflow: hidden;
}

.hb-product-card__image img {
    max-height: 155px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hb-product-card__image-placeholder {
    width: 100%;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-border);
    font-size: 48px;
}

.hb-product-card__body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hb-product-card__brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--hb-text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.hb-product-card__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--hb-text);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    min-height: 38px;
}

.hb-product-card__name a { color: inherit; }
.hb-product-card__name a:hover { color: var(--hb-orange); }

.hb-product-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.hb-product-card__stars { color: var(--hb-yellow); font-size: 11px; display: flex; gap: 1px; }
.hb-product-card__review-count { color: var(--hb-text-muted); font-size: 11px; }

.hb-product-card__prices { margin-top: auto; }

.hb-product-card__price-main {
    font-size: 19px;
    font-weight: 800;
    color: var(--hb-text);
    letter-spacing: -0.3px;
}

.hb-product-card__price-old {
    font-size: 13px;
    color: var(--hb-text-muted);
    text-decoration: line-through;
    margin-right: 6px;
}

.hb-product-card__price-discount {
    font-size: 12px;
    font-weight: 700;
    color: var(--hb-green);
}

.hb-product-card__platform-prices {
    margin-top: 12px;
    border-top: 1px solid var(--hb-border-light);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hb-product-card__platform-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: var(--hb-radius-sm);
    transition: var(--hb-transition);
}

.hb-product-card__platform-row:first-child { background: var(--hb-green-light); }

.hb-product-card__platform-name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--hb-text-secondary);
    font-weight: 500;
}

.hb-platform-dot { width: 6px; height: 6px; border-radius: 50%; }

.hb-platform-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.hb-platform-logo--fallback {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--hb-text-muted);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    flex-shrink: 0;
}

.hb-product-card__platform-price { font-weight: 700; color: var(--hb-text); }
.hb-product-card__platform-row:first-child .hb-product-card__platform-price { color: var(--hb-green-dark); }

.hb-product-card__footer { padding: 10px 14px 14px; }

.hb-product-card__compare-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: var(--hb-bg-gray);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    color: var(--hb-text-secondary);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hb-product-card__compare-link:hover {
    background: var(--hb-orange);
    border-color: var(--hb-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--jq-primary-rgb), 0.25);
}

/* ============ SEARCH PAGE ============ */
.hb-search-page { padding: 24px 0; }

.hb-search-page__layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    align-items: start;
}

.hb-sidebar {
    background: var(--hb-bg-card);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-lg);
    padding: 20px;
    position: sticky;
    top: 100px;
}

.hb-filter-group {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--hb-border-light);
}

.hb-filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.hb-filter-group__title { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: var(--hb-text); }

.hb-filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 13px;
    color: var(--hb-text-secondary);
}

.hb-filter-item:hover { color: var(--hb-text); }
.hb-filter-item input[type="checkbox"] { accent-color: var(--hb-orange); width: 16px; height: 16px; }

.hb-search-content { min-height: 400px; }

.hb-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 14px 18px;
    background: var(--hb-bg-card);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius);
}

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

.hb-toolbar__sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--hb-text-secondary); }

.hb-toolbar__sort select {
    padding: 8px 12px;
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    font-size: 13px;
    color: var(--hb-text);
    outline: none;
    cursor: pointer;
    background: white;
}

.hb-toolbar__sort select:focus { border-color: var(--hb-orange); }

/* ============ PRODUCT DETAIL ============ */
.pd { padding: 20px 0 48px; background: var(--hb-bg); }

.pd__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--hb-text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: var(--hb-bg-white);
    border-radius: var(--hb-radius);
    border: 1px solid var(--hb-border-light);
}

.pd__breadcrumb a { color: var(--hb-text-secondary); font-weight: 500; }
.pd__breadcrumb a:hover { color: var(--hb-orange); }
.pd__breadcrumb i { font-size: 7px; color: var(--hb-text-light); }
.pd__breadcrumb span { color: var(--hb-text-muted); }

.pd__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Gallery */
.pd__gallery {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 100px);
    background: var(--hb-bg-white);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-xl);
    overflow: hidden;
    box-shadow: var(--hb-shadow);
}

.pd__gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 32px;
    background: white;
    overflow: hidden;
}

.pd__gallery-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(.23,1,.32,1);
    cursor: zoom-in;
}

.pd__gallery-main:hover .pd__gallery-img { transform: scale(1.03); }

.pd__gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--hb-text);
    font-size: 15px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pd__gallery-main:hover .pd__gallery-arrow { opacity: 1; }

.pd__gallery-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    color: var(--jq-primary);
    transform: translateY(-50%) scale(1.08);
}

.pd__gallery-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.pd__gallery-arrow--prev { left: 14px; }
.pd__gallery-arrow--next { right: 14px; }

.pd__gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--hb-border);
    aspect-ratio: 1 / 1;
}

.pd__gallery-placeholder i { font-size: 80px; }
.pd__gallery-placeholder span { font-size: 14px; color: var(--hb-text-muted); }

.pd__gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    overflow-x: auto;
    border-top: 1px solid var(--hb-border-light);
    background: var(--hb-bg-gray);
    scrollbar-width: thin;
    scrollbar-color: var(--hb-border) transparent;
}

.pd__gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border: 2px solid var(--hb-border-light);
    border-radius: var(--hb-radius);
    padding: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.pd__gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd__gallery-thumb:hover {
    border-color: var(--hb-orange);
    box-shadow: 0 0 0 1px rgba(var(--jq-primary-rgb), 0.15);
}

.pd__gallery-thumb--active {
    border-color: var(--jq-primary);
    box-shadow: 0 0 0 3px rgba(var(--jq-primary-rgb), 0.18);
}

.pd__gallery-badge { position: absolute; top: 16px; left: 16px; z-index: 5; }

.pd__discount-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--hb-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--hb-radius-sm);
}

/* Info */
.pd__info { display: flex; flex-direction: column; gap: 0; }

.pd__brand {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--hb-blue);
    margin-bottom: 8px;
}

.pd__brand:hover { text-decoration: underline; color: var(--hb-blue); }

.pd__title {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--hb-text);
    margin-bottom: 14px;
}

.pd__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hb-border-light);
    margin-bottom: 16px;
}

.pd__rating { display: flex; align-items: center; gap: 6px; }
.pd__stars { display: flex; gap: 2px; }
.pd__stars i { font-size: 14px; color: var(--hb-yellow); }
.pd__star--empty { opacity: 0.25; }
.pd__rating-score { font-size: 14px; font-weight: 700; color: var(--hb-text); }
.pd__rating-count { font-size: 13px; color: var(--hb-text-muted); }

.pd__meta-items {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--hb-text-secondary);
}

.pd__meta-items i { margin-right: 4px; color: var(--hb-text-muted); }

.pd__seller {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--hb-bg-gray);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pd__seller-label { font-size: 13px; color: var(--hb-text-muted); }
.pd__seller-name { font-size: 14px; font-weight: 600; color: var(--hb-blue); }
.pd__seller-name i { margin-right: 4px; }

.pd__seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--hb-green-light);
    color: var(--hb-green-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-left: auto;
}

/* Price Box */
.pd__price-box {
    background: var(--hb-bg-white);
    border: 2px solid var(--hb-border-light);
    border-radius: var(--hb-radius-xl);
    padding: 28px;
    margin-bottom: 20px;
    transition: var(--hb-transition);
}

.pd__price-box:hover { border-color: var(--hb-border); box-shadow: var(--hb-shadow-md); }

.pd__price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }

.pd__price-old { font-size: 14px; color: var(--hb-text-muted); text-decoration: line-through; }

.pd__price-discount {
    display: inline-block;
    padding: 3px 10px;
    background: var(--hb-green);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--hb-radius-sm);
}

.pd__price-main {
    font-size: 38px;
    font-weight: 900;
    color: var(--hb-green-dark);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.pd__price-from { font-size: 13px; color: var(--hb-text-secondary); margin-bottom: 18px; display: flex; align-items: center; gap: 6px; }
.pd__price-from i { color: var(--hb-yellow); }
.pd__price-from strong { color: var(--hb-text); }

.pd__price-from-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
}

.pd__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--hb-orange), #e02040);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--hb-radius-lg);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.pd__cta-btn:hover {
    background: linear-gradient(135deg, var(--hb-orange-hover), var(--hb-orange));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--jq-primary-rgb), 0.3);
}

/* Comparison Table */
.pd__compare {
    background: var(--hb-bg-white);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-xl);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--hb-shadow-xs);
}

.pd__compare-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: var(--hb-bg-gray);
    border-bottom: 1px solid var(--hb-border-light);
    font-size: 15px;
    font-weight: 700;
    color: var(--hb-text);
}

.pd__compare-header i { color: var(--hb-orange); font-size: 17px; }

.pd__compare-count {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--hb-text-muted);
    background: var(--hb-bg-white);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--hb-border-light);
}

.pd__compare-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--hb-border-light);
    transition: background 0.2s ease;
}

.pd__compare-row:last-child { border-bottom: none; }
.pd__compare-row:hover { background: var(--hb-bg-gray); }

.pd__compare-row--best {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-left: 3px solid var(--hb-green);
}

.pd__compare-row--best:hover { background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%); }

.pd__compare-platform { display: flex; align-items: center; gap: 12px; }

.pd__compare-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--hb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.pd__compare-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: var(--hb-radius);
    flex-shrink: 0;
    background: #fff;
    padding: 5px;
    border: 1px solid var(--hb-border);
}

.pd__compare-platform-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--hb-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd__best-tag {
    display: inline-block;
    padding: 2px 10px;
    background: var(--hb-green);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.pd__compare-seller { font-size: 12px; color: var(--hb-text-muted); margin-top: 2px; }
.pd__compare-details { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

.pd__compare-rating { font-size: 12px; color: var(--hb-text-secondary); display: flex; align-items: center; gap: 3px; }
.pd__compare-rating i { color: var(--hb-yellow); font-size: 11px; }
.pd__compare-rating span { color: var(--hb-text-muted); }

.pd__compare-prices { display: flex; align-items: center; gap: 8px; }
.pd__compare-old { font-size: 12px; color: var(--hb-text-muted); text-decoration: line-through; }

.pd__compare-current {
    font-size: 19px;
    font-weight: 800;
    color: var(--hb-text);
    letter-spacing: -0.3px;
}

.pd__compare-row--best .pd__compare-current { color: var(--hb-green-dark); }
.pd__compare-action { text-align: right; }

.pd__compare-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--hb-bg-gray);
    border: 1.5px solid var(--hb-border);
    border-radius: var(--hb-radius);
    color: var(--hb-text-secondary);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
}

.pd__compare-btn:hover {
    background: var(--hb-orange);
    border-color: var(--hb-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--jq-primary-rgb), 0.2);
}

.pd__compare-row--best .pd__compare-btn {
    background: var(--hb-green);
    border-color: var(--hb-green);
    color: white;
}

.pd__compare-row--best .pd__compare-btn:hover {
    background: var(--hb-green-dark);
    border-color: var(--hb-green-dark);
}

/* Specs */
.pd__specs {
    background: var(--hb-bg-white);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-xl);
    overflow: hidden;
    box-shadow: var(--hb-shadow-xs);
}

.pd__specs-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 700;
    background: var(--hb-bg-gray);
    border-bottom: 1px solid var(--hb-border-light);
}

.pd__specs-header i { color: var(--hb-orange); }

.pd__specs-table { width: 100%; border-collapse: collapse; }
.pd__specs-table tr { border-bottom: 1px solid var(--hb-border-light); }
.pd__specs-table tr:last-child { border-bottom: none; }
.pd__specs-table td { padding: 13px 22px; font-size: 13px; vertical-align: top; }
.pd__specs-table td:first-child { width: 170px; font-weight: 600; color: var(--hb-text-secondary); background: var(--hb-bg-gray); }
.pd__specs-table td:last-child { color: var(--hb-text); }

/* Tabs */
.pd__tabs-section {
    margin-top: 28px;
    background: var(--hb-bg-white);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-xl);
    overflow: hidden;
    box-shadow: var(--hb-shadow-xs);
}

.pd__tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--hb-border-light);
    background: var(--hb-bg-gray);
}

.pd__tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hb-text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--hb-transition);
}

.pd__tab:hover { color: var(--hb-orange); }

.pd__tab--active {
    color: var(--hb-orange);
    border-bottom-color: var(--hb-orange);
    background: var(--hb-bg-white);
}

.pd__tab i { font-size: 13px; }
.pd__tab-content { display: none; padding: 28px; }
.pd__tab-content--active { display: block; }

.pd__desc-text { font-size: 14px; color: var(--hb-text-secondary); line-height: 1.9; }
.pd__desc-text p { margin-bottom: 12px; }
.pd__desc-text p:last-child { margin-bottom: 0; }

.pd__desc-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--hb-radius);
    margin: 16px 0;
    display: block;
}

.pd__desc-text h1, .pd__desc-text h2, .pd__desc-text h3, .pd__desc-text h4 {
    color: var(--hb-text);
    margin: 20px 0 10px;
    font-weight: 700;
    line-height: 1.4;
}

.pd__desc-text h2 { font-size: 20px; }
.pd__desc-text h3 { font-size: 17px; }
.pd__desc-text h4 { font-size: 15px; }

.pd__desc-text ul, .pd__desc-text ol { list-style: disc; padding-left: 24px; margin-bottom: 12px; }
.pd__desc-text ol { list-style: decimal; }
.pd__desc-text ul li, .pd__desc-text ol li { margin-bottom: 6px; line-height: 1.7; }
.pd__desc-text a { color: var(--hb-orange); font-weight: 600; text-decoration: underline; }
.pd__desc-text a:hover { color: var(--hb-orange-hover); }
.pd__desc-text strong, .pd__desc-text b { color: var(--hb-text); font-weight: 700; }

.pd__desc-text blockquote {
    border-left: 4px solid var(--hb-orange);
    padding: 12px 20px;
    margin: 16px 0;
    background: var(--hb-bg-gray);
    border-radius: 0 var(--hb-radius) var(--hb-radius) 0;
    font-style: italic;
}

.pd__desc-text pre {
    background: #1e1e2e;
    color: #cdd6f4;
    padding: 16px 20px;
    border-radius: var(--hb-radius);
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.6;
    margin: 16px 0;
}

.pd__desc-text table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.pd__desc-text table th, .pd__desc-text table td { padding: 10px 14px; border: 1px solid var(--hb-border); text-align: left; }
.pd__desc-text table th { background: var(--hb-bg-gray); font-weight: 700; color: var(--hb-text); }
.pd__desc-text hr { border: none; border-top: 1px solid var(--hb-border-light); margin: 20px 0; }

.pd__price-history p { font-size: 14px; color: var(--hb-text-secondary); line-height: 1.8; margin-bottom: 8px; }

/* ============ BUTTONS ============ */
.hb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--hb-radius);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.hb-btn--primary { background: var(--hb-orange); color: white; border-color: var(--hb-orange); }
.hb-btn--primary:hover { background: var(--hb-orange-hover); border-color: var(--hb-orange-hover); color: white; box-shadow: 0 4px 12px rgba(var(--jq-primary-rgb),0.25); }
.hb-btn--green { background: var(--hb-green); color: white; border-color: var(--hb-green); }
.hb-btn--green:hover { background: var(--hb-green-dark); border-color: var(--hb-green-dark); color: white; }
.hb-btn--outline { background: white; color: var(--hb-orange); border-color: var(--hb-orange); }
.hb-btn--outline:hover { background: var(--hb-orange); color: white; }
.hb-btn--sm { padding: 6px 14px; font-size: 12px; }
.hb-btn--lg { padding: 14px 32px; font-size: 16px; }
.hb-btn--block { width: 100%; }

/* ============ PAGINATION ============ */
.pagination { display: flex; justify-content: center; margin-top: 28px; }
.pagination ul { display: flex; gap: 4px; }

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--hb-radius-sm);
    background: white;
    border: 1px solid var(--hb-border);
    color: var(--hb-text-secondary);
    font-size: 13px;
    font-weight: 600;
    transition: var(--hb-transition);
}

.pagination li a:hover, .pagination li.active a {
    background: var(--hb-orange);
    color: white;
    border-color: var(--hb-orange);
}

.pagination li.dots { display: flex; align-items: center; color: var(--hb-text-muted); padding: 0 4px; }

/* ============ EMPTY STATE ============ */
.hb-empty { text-align: center; padding: 64px 20px; background: var(--hb-bg-card); border-radius: var(--hb-radius-lg); }
.hb-empty__icon { font-size: 52px; color: var(--hb-border); margin-bottom: 16px; }
.hb-empty__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hb-empty__desc { color: var(--hb-text-secondary); font-size: 14px; max-width: 400px; margin: 0 auto; }

/* ============ FLASH ============ */
.flash {
    padding: 14px 18px;
    border-radius: var(--hb-radius);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash--success { background: var(--hb-green-light); color: var(--hb-green-dark); border: 1px solid #a7f3d0; }
.flash--error { background: var(--hb-red-light); color: var(--hb-red); border: 1px solid #fecaca; }
.flash--warning { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }

/* ============ FOOTER ============ */
.hb-footer {
    margin-top: 48px;
}

.hb-footer-main {
    background: linear-gradient(135deg, #0d0d14 0%, #141420 100%);
    padding: 52px 0 36px;
}

.hb-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.hb-footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--jq-gold);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hb-footer-col ul li { margin-bottom: 10px; }

.hb-footer-col ul a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: var(--hb-transition);
}

.hb-footer-col ul a:hover { color: white; padding-left: 4px; }

.hb-footer-social { display: flex; gap: 8px; }

.hb-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--hb-radius);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    transition: var(--hb-transition);
}

.hb-footer-social a:hover {
    background: var(--hb-orange);
    border-color: var(--hb-orange);
    color: white;
    transform: translateY(-2px);
}

.hb-footer-apps { display: flex; flex-direction: column; gap: 8px; }

.hb-footer-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--hb-radius);
    color: rgba(255,255,255,0.5) !important;
    font-size: 12px;
    font-weight: 600;
    transition: var(--hb-transition);
}

.hb-footer-app:hover {
    border-color: var(--hb-orange);
    color: white !important;
    background: rgba(var(--jq-primary-rgb),0.1);
}

.hb-footer-bottom {
    background: #08080e;
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid rgba(201,165,90,0.1);
}

.hb-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

.hb-footer-disclaimer {
    margin-top: 6px;
    font-size: 11px !important;
    opacity: 0.7;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--hb-bg); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--hb-orange);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(var(--jq-primary-rgb), 0.3);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.back-to-top:hover {
    background: var(--hb-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(var(--jq-primary-rgb), 0.4);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeIn 0.3s ease forwards; }

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============ STATIC PAGES ============ */
.static-page { max-width: 960px; margin: 0 auto; }

.static-page__hero { text-align: center; padding: 44px 20px 36px; }

.static-page__hero-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: var(--hb-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--hb-orange);
}

.static-page__title { font-size: 28px; font-weight: 800; color: var(--hb-text); margin-bottom: 8px; letter-spacing: -0.5px; }
.static-page__title strong { color: var(--hb-orange); }
.static-page__subtitle { font-size: 15px; color: var(--hb-text-secondary); }

.static-page__content {
    background: var(--hb-bg-card);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-lg);
    padding: 36px;
}

.static-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.static-page__card {
    background: var(--hb-bg-gray);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.static-page__card:hover { box-shadow: var(--hb-shadow-md); border-color: var(--hb-orange); transform: translateY(-2px); }

.static-page__card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: var(--hb-orange-light);
    border-radius: var(--hb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--hb-orange);
}

.static-page__card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.static-page__card p { font-size: 13px; color: var(--hb-text-secondary); line-height: 1.7; }

.static-page__section { margin-top: 32px; }

.static-page__section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.static-page__section h2 i { color: var(--hb-orange); }

.static-page__features { display: flex; flex-direction: column; gap: 16px; }

.static-page__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    background: var(--hb-bg-gray);
    border-radius: var(--hb-radius-lg);
    border: 1px solid var(--hb-border-light);
    transition: all 0.3s ease;
}

.static-page__feature:hover { border-color: var(--hb-orange); transform: translateX(4px); }

.static-page__feature-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--hb-orange), #e02040);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.static-page__feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.static-page__feature p { font-size: 13px; color: var(--hb-text-secondary); line-height: 1.6; }

.static-page__platforms { display: flex; flex-direction: column; gap: 10px; }

.static-page__platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--hb-bg-gray);
    border-radius: var(--hb-radius);
    border: 1px solid var(--hb-border-light);
    transition: var(--hb-transition);
}

.static-page__platform:hover { border-color: var(--hb-border); }

.static-page__platform-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

.static-page__platform-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }

/* ============ CONTACT ============ */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.contact-form__row { display: flex; gap: 16px; }
.contact-form__group { flex: 1; margin-bottom: 16px; }
.contact-form__group label { display: block; font-size: 13px; font-weight: 600; color: var(--hb-text-secondary); margin-bottom: 6px; }

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    font-size: 14px;
    color: var(--hb-text);
    outline: none;
    transition: var(--hb-transition);
    background: white;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
    border-color: var(--hb-orange);
    box-shadow: 0 0 0 3px rgba(var(--jq-primary-rgb), 0.08);
}

.contact-form__group textarea { resize: vertical; min-height: 100px; }

.contact-info { display: flex; flex-direction: column; gap: 12px; }

.contact-info__card {
    background: var(--hb-bg-gray);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-lg);
    padding: 22px;
    text-align: center;
    transition: var(--hb-transition);
}

.contact-info__card:hover { border-color: var(--hb-border); box-shadow: var(--hb-shadow); }

.contact-info__card i { font-size: 24px; color: var(--hb-orange); margin-bottom: 8px; display: block; }
.contact-info__card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info__card p { font-size: 13px; color: var(--hb-text-secondary); }

/* ============ FAQ ============ */
.faq-group { margin-bottom: 24px; }

.faq-group__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hb-text);
}

.faq-group__title i { color: var(--hb-orange); }

.faq-item {
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--hb-bg-white);
    transition: var(--hb-transition);
}

.faq-item:hover { border-color: var(--hb-border); box-shadow: var(--hb-shadow-xs); }

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hb-text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.faq-item__question i { color: var(--hb-text-muted); font-size: 12px; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-item__question i { transform: rotate(180deg); color: var(--hb-orange); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-item__answer { max-height: 300px; padding: 0 20px 18px; }
.faq-item__answer p { font-size: 13px; color: var(--hb-text-secondary); line-height: 1.8; }

.faq-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--hb-orange-light);
    border: 1px solid rgba(var(--jq-primary-rgb), 0.15);
    border-radius: var(--hb-radius-lg);
    margin-top: 32px;
}

.faq-contact > i { font-size: 32px; color: var(--hb-orange); flex-shrink: 0; }
.faq-contact h3 { font-size: 16px; font-weight: 700; }
.faq-contact p { font-size: 13px; color: var(--hb-text-secondary); margin-top: 2px; }
.faq-contact .hb-btn { flex-shrink: 0; margin-left: auto; }

/* ============ HOW IT WORKS ============ */
.how-steps { display: flex; align-items: flex-start; gap: 16px; justify-content: center; flex-wrap: wrap; }

.how-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: var(--hb-bg-white);
    border: 1px solid var(--hb-border-light);
    border-radius: var(--hb-radius-xl);
    transition: all 0.3s ease;
    position: relative;
}

.how-step:hover { box-shadow: var(--hb-shadow-lg); border-color: var(--hb-orange); transform: translateY(-3px); }

.how-step__number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--hb-orange), #e02040);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step__icon {
    width: 60px;
    height: 60px;
    margin: 8px auto 18px;
    background: var(--hb-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--hb-orange);
}

.how-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--hb-text-secondary); line-height: 1.7; }

.how-step__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-orange);
    font-size: 24px;
    padding-top: 50px;
}

/* ============ LEGAL PAGES ============ */
.legal-content h2 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--hb-border-light); color: var(--hb-text); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 15px; font-weight: 600; margin: 16px 0 8px; color: var(--hb-text); }
.legal-content p { font-size: 14px; color: var(--hb-text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 14px; color: var(--hb-text-secondary); line-height: 1.8; margin-bottom: 4px; }
.legal-content a { color: var(--hb-orange); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }

.cookie-table { overflow-x: auto; margin: 16px 0; }
.cookie-table table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cookie-table thead th { background: var(--hb-bg-gray); padding: 12px 16px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--hb-border); }
.cookie-table tbody td { padding: 12px 16px; border-bottom: 1px solid var(--hb-border-light); color: var(--hb-text-secondary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .pd__grid { grid-template-columns: 420px 1fr; gap: 20px; }
    .hb-search-page__layout { grid-template-columns: 1fr; }
    .hb-sidebar { position: static; }
    .hb-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 48px 0 36px; }
    .hero__title { font-size: 28px; letter-spacing: -0.5px; }
    .hero__subtitle { font-size: 14px; }
    .hero__stats { flex-wrap: wrap; gap: 0; }
    .hero__stat { padding: 12px 20px; }
    .hero__stat-divider { display: none; }
    .hero__stat-number { font-size: 24px; }
    .hero__search-btn { padding: 12px 22px; font-size: 14px; }
    .hero__search-input { padding: 14px 12px; }
    .platforms-strip__label { display: none; }
    .categories-scroll { gap: 6px; }
    .category-chip { padding: 7px 14px; font-size: 12px; }

    .hb-header-main .hb-container { flex-wrap: wrap; gap: 10px; }
    .hb-logo__icon { width: 32px; height: 32px; font-size: 14px; }
    .hb-logo__text { font-size: 19px; }
    .hb-search { order: 3; max-width: 100%; flex-basis: 100%; }
    .hb-header-actions { margin-left: auto; }
    .hb-header-action span { display: none; }
    .hb-header-action { padding: 8px; }
    .hb-nav__toggle { display: flex; }
    .hb-nav__list { display: none; flex-direction: column; width: 100%; }
    .hb-nav__list.active { display: flex; }
    .hb-nav__link { border-bottom: 1px solid var(--hb-border-light); padding: 12px 16px; }

    .hb-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hb-product-card__image { height: 150px; }
    .hb-product-card__name { font-size: 12px; }
    .hb-product-card__price-main { font-size: 16px; }

    .hb-footer-grid { grid-template-columns: 1fr; }

    .pd__grid { grid-template-columns: 1fr; }
    .pd__gallery { position: static; }
    .pd__gallery-main { aspect-ratio: 1 / 1; padding: 20px; }
    .pd__gallery-thumb { width: 56px; height: 56px; }
    .pd__gallery-arrow { opacity: 0.7; width: 36px; height: 36px; font-size: 13px; }
    .pd__gallery-arrow--prev { left: 8px; }
    .pd__gallery-arrow--next { right: 8px; }
    .pd__title { font-size: 17px; }
    .pd__price-main { font-size: 30px; }
    .pd__compare-row { grid-template-columns: 1fr; gap: 10px; }
    .pd__compare-details { flex-direction: row; align-items: center; justify-content: space-between; }
    .pd__compare-action { text-align: left; }
    .pd__compare-btn { width: 100%; justify-content: center; }
    .pd__seller { flex-direction: column; align-items: flex-start; }
    .pd__seller-badge { margin-left: 0; }
    .pd__tabs-nav { overflow-x: auto; }
    .pd__tab { padding: 12px 16px; font-size: 13px; white-space: nowrap; }
    .pd__tab-content { padding: 20px; }
    .pd__specs-table td:first-child { width: 120px; }

    .static-page__content { padding: 20px; }
    .static-page__title { font-size: 22px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form__row { flex-direction: column; gap: 0; }
    .how-step__arrow { display: none; }
    .how-steps { flex-direction: column; align-items: center; }
    .how-step { max-width: 100%; }
    .faq-contact { flex-direction: column; text-align: center; }
    .faq-contact .hb-btn { margin-left: 0; }
}

@media (max-width: 480px) {
    .hb-products-grid { grid-template-columns: 1fr 1fr; }
    .product-section__title { font-size: 16px; }
    .pd__compare-icon { width: 34px; height: 34px; font-size: 10px; }
    .pd__compare-logo { width: 34px; height: 34px; }
    .pd__compare-current { font-size: 16px; }
    .pd__cta-btn { font-size: 14px; padding: 14px 20px; }
    .pd__breadcrumb { padding: 10px 14px; }
}

/* Product image lightbox */
.pd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pd-lightbox--visible {
    display: flex;
}

.pd-lightbox__inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.pd-lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
}

.pd-lightbox__close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.pd-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 72px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    user-select: none;
}

.pd-lightbox__nav--prev {
    left: -56px;
}

.pd-lightbox__nav--next {
    right: -56px;
}

@media (max-width: 768px) {
    .pd-lightbox__inner {
        max-width: 100vw;
        max-height: 100vh;
    }
    .pd-lightbox__img {
        max-height: 100vh;
        border-radius: 0;
    }
    .pd-lightbox__close {
        top: 12px;
        right: 12px;
    }
}

/* ============ MICRO INTERACTIONS ============ */
.hb-product-card {
    transition: transform 0.25s cubic-bezier(.23,1,.32,1), box-shadow 0.25s ease;
}
.hb-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hb-shadow-lg);
}
.hb-product-card:active {
    transform: translateY(-1px);
}

.hb-product-card__image img {
    transition: transform 0.4s cubic-bezier(.23,1,.32,1);
}
.hb-product-card:hover .hb-product-card__image img {
    transform: scale(1.04);
}

.hb-btn, .btn, button[type="submit"] {
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.hb-btn:active, .btn:active, button[type="submit"]:active {
    transform: scale(0.97);
}

.hb-nav__link {
    position: relative;
    transition: color 0.2s ease;
}
.hb-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--jq-primary);
    transition: width 0.25s ease, left 0.25s ease;
}
.hb-nav__link:hover::after {
    width: 100%;
    left: 0;
}

.pd__compare-row {
    transition: background-color 0.2s ease;
}
.pd__compare-row:hover {
    background-color: var(--hb-bg-gray);
}

.pd__compare-btn {
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.pd__compare-btn:hover {
    transform: translateX(3px);
}

.back-to-top {
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pd__gallery-thumb {
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.pd__gallery-thumb:hover {
    transform: scale(1.08);
}

.pd__tab {
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hb-search__input {
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.hb-search__input:focus {
    box-shadow: 0 0 0 3px rgba(var(--jq-primary-rgb), 0.15);
}

.pd__gallery-img {
    transition: opacity 0.3s ease;
}

.pd-lightbox {
    transition: opacity 0.3s ease;
}
.pd-lightbox--visible {
    display: flex;
    animation: lightboxFadeIn 0.3s ease forwards;
}
@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.flash {
    animation: flashSlideIn 0.4s cubic-bezier(.23,1,.32,1);
}
@keyframes flashSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Skeleton loading placeholder */
.skeleton {
    background: linear-gradient(90deg, var(--hb-bg-gray) 25%, var(--hb-border-light) 50%, var(--hb-bg-gray) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--hb-radius-sm);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   ÖZEL TEKLİF BUTONU
   ============================================ */
.pd__offer-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    background: var(--hb-bg-white);
    color: var(--hb-text);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}
.pd__offer-btn:hover {
    background: var(--hb-bg-gray);
    border-color: var(--hb-border);
    transform: translateY(-1px);
}
.pd__offer-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--hb-bg-gray);
    color: var(--jq-primary);
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}
.pd__offer-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pd__offer-btn-text strong {
    font-size: 16px;
    font-weight: 700;
}
.pd__offer-btn-text small {
    font-size: 12px;
    color: var(--hb-text-secondary);
}
.pd__offer-btn-arrow {
    font-size: 14px;
    color: var(--hb-text-secondary);
}

/* ============================================
   ÖZEL TEKLİF MODAL
   ============================================ */
.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.offer-modal--visible {
    display: flex;
}
.offer-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    animation: offerFadeIn 0.3s ease;
}
@keyframes offerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.offer-modal__container {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: var(--hb-bg-white);
    border-radius: var(--hb-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-modal--visible .offer-modal__container { 
    opacity: 1; 
    transform: translateY(0) scale(1);
}

/* Header */
.offer-modal__header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--hb-border-light);
}
.offer-modal__title { font-size: 18px; font-weight: 700; color: var(--hb-text); }
.offer-modal__close {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--hb-text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.offer-modal__close:hover {
    background: var(--hb-bg-gray);
    color: var(--hb-text);
}

/* Form */
.offer-modal__form {
    display: flex;
    flex-direction: column;
}
.offer-modal__body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 150px);
}
.offer-modal__body::-webkit-scrollbar {
    width: 6px;
}
.offer-modal__body::-webkit-scrollbar-track {
    background: transparent;
}
.offer-modal__body::-webkit-scrollbar-thumb {
    background: var(--hb-border);
    border-radius: 10px;
}

/* Sections */
.offer-modal__section {
    margin-bottom: 20px;
}
.offer-modal__section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--hb-text);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.offer-modal__section-title i {
    color: var(--jq-primary);
    font-size: 14px;
}

/* Form Groups */
.offer-modal__group {
    margin-bottom: 14px;
}
.offer-modal__group:last-child {
    margin-bottom: 0;
}
.offer-modal__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb-text-secondary);
    margin-bottom: 6px;
}
.offer-modal__required {
    color: var(--jq-primary);
    font-weight: 700;
}
.offer-modal__optional {
    color: var(--hb-text-muted);
    font-weight: 400;
    font-size: 12px;
}
.offer-modal__error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--hb-red-light);
    color: var(--hb-red);
    font-size: 13px;
    font-weight: 600;
    border-top: 1px solid rgba(239, 68, 68, 0.15);
    animation: offerSlideDown 0.3s ease;
}
.offer-modal__error i {
    font-size: 15px;
    flex-shrink: 0;
}
.offer-modal__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Inputs */
.offer-modal__input {
    width: 100%;
    padding: 12px 14px;
    background: var(--hb-bg-gray);
    border: 1.5px solid var(--hb-border);
    border-radius: var(--hb-radius);
    font-size: 14px;
    font-family: var(--hb-font);
    color: var(--hb-text);
    transition: all 0.2s ease;
    outline: none;
}
.offer-modal__input:focus {
    border-color: var(--jq-gold);
    box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.12);
    background: var(--hb-bg-white);
}
.offer-modal__input[readonly] {
    background: var(--hb-bg-gray);
    color: var(--hb-text-secondary);
    cursor: default;
}
.offer-modal__input--highlight {
    color: var(--hb-green) !important;
    font-weight: 700;
}
.offer-modal__input-icon {
    position: relative;
}
.offer-modal__input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hb-text-muted);
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
}
.offer-modal__input-icon .offer-modal__input {
    padding-left: 40px;
}
.offer-modal__textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--hb-bg-gray);
    border: 1.5px solid var(--hb-border);
    border-radius: var(--hb-radius);
    font-size: 14px;
    font-family: var(--hb-font);
    color: var(--hb-text);
    transition: all 0.2s ease;
    outline: none;
    resize: vertical;
    min-height: 100px;
}
.offer-modal__textarea:focus {
    border-color: var(--jq-gold);
    box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.12);
    background: var(--hb-bg-white);
}

/* Toggle Switch */
.offer-modal__toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    background: var(--hb-bg-gray);
    border-radius: var(--hb-radius);
    border: 1.5px solid var(--hb-border-light);
    transition: all 0.2s ease;
    margin-bottom: 0;
}
.offer-modal__toggle:hover {
    border-color: var(--jq-gold);
    background: var(--jq-gold-light);
}
.offer-modal__toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.offer-modal__toggle-slider {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--hb-border);
    border-radius: 13px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.offer-modal__toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.offer-modal__toggle input:checked ~ .offer-modal__toggle-slider {
    background: linear-gradient(135deg, var(--jq-gold), var(--jq-gold-dark));
}
.offer-modal__toggle input:checked ~ .offer-modal__toggle-slider::after {
    transform: translateX(22px);
}
.offer-modal__toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--hb-text);
}

/* Corporate Fields */
.offer-modal__corporate {
    margin-top: 16px;
    padding: 16px;
    background: var(--jq-gold-light);
    border: 1px dashed rgba(201, 165, 90, 0.4);
    border-radius: var(--hb-radius);
    animation: offerSlideDown 0.3s ease;
}
@keyframes offerSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.offer-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 28px;
    background: var(--hb-bg-gray);
    border-top: 1px solid var(--hb-border-light);
    flex-shrink: 0;
}
.offer-modal__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--hb-font);
    border-radius: var(--hb-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}
.offer-modal__btn--cancel {
    background: var(--hb-bg-white);
    color: var(--hb-text-secondary);
    border: 1.5px solid var(--hb-border);
}
.offer-modal__btn--cancel:hover {
    background: var(--hb-bg-gray);
    color: var(--hb-text);
    border-color: var(--hb-text-muted);
}
.offer-modal__btn--submit {
    background: var(--jq-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}
.offer-modal__btn--submit:hover {
    background: var(--jq-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.25);
}
.offer-modal__btn--submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success State */
.offer-modal__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
    animation: offerSuccessIn 0.5s ease;
}
@keyframes offerSuccessIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.offer-modal__success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    margin-bottom: 8px;
}
.offer-modal__success-icon i {
    font-size: 36px;
    color: var(--hb-green);
    animation: offerCheckBounce 0.5s ease 0.2s;
}
@keyframes offerCheckBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.offer-modal__success h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--hb-text);
    margin: 0;
}
.offer-modal__success p {
    font-size: 14px;
    color: var(--hb-text-secondary);
    max-width: 320px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .offer-modal {
        padding: 0;
        align-items: flex-end;
    }
    .offer-modal__container {
        max-height: 95vh;
        border-radius: var(--hb-radius-xl) var(--hb-radius-xl) 0 0;
    }
    .offer-modal__header {
        padding: 20px;
    }
    .offer-modal__body {
        padding: 20px;
        max-height: calc(95vh - 170px);
    }
    .offer-modal__footer {
        padding: 16px 20px;
    }
    .offer-modal__row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .pd__offer-btn {
        padding: 14px 16px;
        gap: 12px;
    }
    .pd__offer-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .pd__offer-btn-text strong {
        font-size: 14px;
    }
}
