/**
 * Harmony Modern Widgets CSS
 * Tüm yeni widget'ların ortak + widget-specific stilleri.
 * Tüm sınıflar `.hw-` prefixli — tema override riski minimal.
 */

/* ═══════════════ Shared utilities ═══════════════ */
.hw-section-head {
    text-align: center;
    margin-bottom: 28px;
}
.hw-section-head--left { text-align: left; }
.hw-section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #6366f1;
    background: #eef2ff;
    padding: 5px 12px;
    border-radius: 99px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hw-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 8px;
}
.hw-section-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto;
}
.hw-section-head--left .hw-section-subtitle { margin: 0; }
@media (max-width: 640px) {
    .hw-section-title { font-size: 22px; }
    .hw-section-subtitle { font-size: 14px; }
}

.hw-section-cta {
    text-align: center;
    margin-top: 20px;
}
.hw-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
    transition: gap .2s ease, color .15s;
}
.hw-btn-link:hover { color: #4f46e5; gap: 10px; }

/* Scroll reveal — JS toggles .is-visible */
.hw-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}
.hw-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .hw-reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════ Icon Feature Grid ═══════════════ */
.hw-icon-features {
    display: grid;
    gap: 20px;
}
.hw-icon-features.cols-2 { grid-template-columns: repeat(2, 1fr); }
.hw-icon-features.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hw-icon-features.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
    .hw-icon-features.cols-3,
    .hw-icon-features.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hw-icon-features { grid-template-columns: 1fr !important; }
}
.hw-icon-feature {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.hw-icon-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #e0e7ff;
    color: inherit;
}
.hw-icon-feature__icon {
    font-size: 28px;
    color: #6366f1;
    margin: 0 auto 16px;
    display: inline-flex;
    width: 64px; height: 64px;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border-radius: 16px;
    transition: transform .25s;
}
.hw-icon-feature:hover .hw-icon-feature__icon { transform: scale(1.08) rotate(-4deg); }
.hw-icon-feature__title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}
.hw-icon-feature__desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════ Stats Counter ═══════════════ */
.hw-stats-wrap {
    padding: 48px 32px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #0f172a 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.hw-stats-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(139,92,246,0.18), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236,72,153,0.15), transparent 50%);
    pointer-events: none;
}
.hw-stats-wrap > * { position: relative; z-index: 1; }
.hw-stats-wrap .hw-section-title { color: #fff; }
.hw-stats-wrap .hw-section-subtitle { color: rgba(255,255,255,0.72); }
.hw-stats {
    display: grid;
    gap: 24px 16px;
    text-align: center;
}
.hw-stats.cols-2 { grid-template-columns: repeat(2, 1fr); }
.hw-stats.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hw-stats.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .hw-stats { grid-template-columns: repeat(2, 1fr) !important; } }
.hw-stat__value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    line-height: 1;
    letter-spacing: -0.02em;
}
@media (max-width: 640px) { .hw-stat__value { font-size: 36px; } }
.hw-stat__label {
    font-size: 12px;
    color: #d1d5db;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ═══════════════ CTA Banner Split ═══════════════ */
.hw-cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    background: #f9fafb;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.hw-cta-split.image-right { direction: rtl; }
.hw-cta-split.image-right > * { direction: ltr; }
.hw-cta-split__image {
    background-size: cover;
    background-position: center;
    min-height: 320px;
    position: relative;
}
.hw-cta-split__image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.08));
}
.hw-cta-split__content {
    padding: 48px 56px;
    display: flex; flex-direction: column; justify-content: center;
}
.hw-cta-split__eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    color: #6366f1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hw-cta-split__title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.hw-cta-split__desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 28px;
}
.hw-cta-split__btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 34px;
    font-size: 15px; font-weight: 600;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s, gap .2s;
    align-self: flex-start;
    box-shadow: 0 6px 18px rgba(99,102,241,0.35);
}
.hw-cta-split__btn:hover {
    transform: translateY(-2px); color: #fff;
    box-shadow: 0 10px 24px rgba(99,102,241,0.45);
    gap: 14px;
}
.hw-cta-split__btn i { font-size: 17px; }
@media (max-width: 768px) {
    .hw-cta-split { grid-template-columns: 1fr; min-height: auto; }
    .hw-cta-split.image-right { direction: ltr; }
    .hw-cta-split__image { min-height: 240px; }
    .hw-cta-split__content { padding: 28px 24px; }
    .hw-cta-split__title { font-size: 26px; }
    .hw-cta-split__desc { font-size: 15px; }
}

/* ═══════════════ Brand Logo Strip ═══════════════ */
.hw-logo-strip-wrap {
    padding: 16px 0;
}
.hw-logo-strip-wrap__title {
    text-align: center;
    font-size: 12px; font-weight: 700;
    color: #9ca3af;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hw-logo-strip {
    overflow: hidden;
    padding: 8px 0;
    position: relative;
}
.hw-logo-strip:not(.auto-scroll) .hw-logo-strip__track {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px 56px;
}
.hw-logo-strip__track {
    display: flex;
    gap: 56px;
    align-items: center;
    animation-play-state: running;
}
.hw-logo-strip.auto-scroll .hw-logo-strip__track {
    animation: hw-scroll linear infinite;
    width: max-content;
}
.hw-logo-strip.auto-scroll:hover .hw-logo-strip__track { animation-play-state: paused; }
@keyframes hw-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.hw-logo-item {
    flex: 0 0 auto;
    height: 56px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 12px;
}
.hw-logo-item img {
    max-height: 40px; width: auto; max-width: 140px;
    opacity: .7;
    transition: opacity .3s, filter .3s, transform .3s;
    object-fit: contain;
}
.hw-logo-strip.grayscale .hw-logo-item img { filter: grayscale(100%); }
.hw-logo-item:hover img {
    opacity: 1; filter: grayscale(0);
    transform: scale(1.05);
}

/* ═══════════════ Countdown Timer ═══════════════ */
.hw-countdown {
    padding: 56px 24px;
    border-radius: 20px;
    text-align: center;
    position: relative; overflow: hidden;
}
.hw-countdown::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hw-countdown > * { position: relative; z-index: 1; }
.hw-countdown__title {
    font-size: 30px; font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.hw-countdown__desc {
    font-size: 15px; opacity: .88;
    margin: 0 auto 28px;
    max-width: 560px; line-height: 1.55;
}
.hw-countdown__timer {
    display: inline-flex; gap: 10px; justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.hw-countdown__unit {
    min-width: 84px;
    padding: 16px 10px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hw-countdown__num {
    font-size: 40px; font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.hw-countdown__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .8;
    margin-top: 8px;
    font-weight: 600;
}
.hw-countdown__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px;
    background: #fff; color: #111827;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.hw-countdown__btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    color: #111827;
}
.hw-countdown__expired {
    font-size: 20px; font-weight: 700;
    padding: 32px 0;
}
@media (max-width: 480px) {
    .hw-countdown { padding: 40px 16px; }
    .hw-countdown__unit { min-width: 68px; padding: 12px 8px; }
    .hw-countdown__num { font-size: 30px; }
    .hw-countdown__title { font-size: 24px; }
}

/* ═══════════════ Newsletter ═══════════════ */
.hw-newsletter {
    padding: 64px 32px;
    border-radius: 20px;
    text-align: center;
    background-size: cover; background-position: center;
    position: relative;
    overflow: hidden;
}
.hw-newsletter::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(17,24,39,0.55);
}
.hw-newsletter.no-bg::before {
    background: none;
}
.hw-newsletter > * { position: relative; z-index: 1; }
.hw-newsletter__icon {
    display: inline-flex; width: 64px; height: 64px;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 18px;
    color: #fff; font-size: 28px;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hw-newsletter__title {
    font-size: 30px; font-weight: 800;
    color: #fff; margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.hw-newsletter__desc {
    color: rgba(255,255,255,0.9);
    font-size: 15px; margin: 0 auto 10px;
    max-width: 560px; line-height: 1.55;
}
.hw-newsletter__promise {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fbbf24; font-size: 13px; font-weight: 700;
    margin-bottom: 24px;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.3);
    padding: 6px 14px; border-radius: 99px;
}
.hw-newsletter__form {
    display: flex; max-width: 520px; margin: 0 auto;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hw-newsletter__input {
    flex: 1; padding: 14px 18px;
    border: 0; background: transparent;
    color: #fff;
    font-size: 15px;
    outline: none;
}
.hw-newsletter__input::placeholder { color: rgba(255,255,255,0.7); }
.hw-newsletter__btn {
    padding: 14px 26px;
    background: #fff; color: #111827;
    border: 0;
    border-radius: 10px; font-weight: 700;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: transform .15s, box-shadow .2s;
}
.hw-newsletter__btn:hover { transform: translateY(-1px); }
.hw-newsletter__btn[disabled] { opacity: .6; cursor: wait; }
.hw-newsletter__consent {
    display: flex; align-items: flex-start; gap: 8px;
    justify-content: center;
    margin-top: 14px;
    font-size: 12px; color: rgba(255,255,255,0.75);
    max-width: 520px; margin-left: auto; margin-right: auto;
    text-align: left;
}
.hw-newsletter__consent input { margin-top: 2px; accent-color: #6366f1; }
.hw-newsletter__consent a { color: #fff; text-decoration: underline; }
.hw-newsletter__msg {
    margin-top: 16px;
    font-weight: 600;
    min-height: 22px;
}
.hw-newsletter__msg.is-success { color: #86efac; }
.hw-newsletter__msg.is-error   { color: #fca5a5; }
@media (max-width: 640px) {
    .hw-newsletter { padding: 48px 20px; }
    .hw-newsletter__form { flex-direction: column; gap: 8px; padding: 8px; background: transparent; border: 0; }
    .hw-newsletter__input { background: rgba(255,255,255,0.12); border-radius: 10px; }
    .hw-newsletter__btn { width: 100%; justify-content: center; }
    .hw-newsletter__title { font-size: 24px; }
}

/* ═══════════════ Testimonials ═══════════════ */
.hw-testimonial {
    padding: 36px 28px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    margin: 12px 8px;
    position: relative;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid #f3f4f6;
}
.hw-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.hw-testimonial__quote-icon {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    box-shadow: 0 6px 14px rgba(139,92,246,0.35);
}
.hw-testimonial__avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    border: 3px solid #eef2ff;
}
.hw-testimonial__rating {
    color: #fbbf24; margin-bottom: 14px;
    font-size: 15px; letter-spacing: 2px;
}
.hw-testimonial__rating .empty { color: #e5e7eb; }
.hw-testimonial__quote {
    font-size: 14px; color: #4b5563;
    line-height: 1.7; font-style: italic;
    margin-bottom: 18px;
    min-height: 72px;
}
.hw-testimonial__name {
    font-weight: 700; color: #111827;
    font-size: 15px;
}
.hw-testimonial__title {
    font-size: 12px; color: #9ca3af;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* ═══════════════ FAQ Accordion ═══════════════ */
.hw-faq-list.layout-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 768px) { .hw-faq-list.layout-two-col { grid-template-columns: 1fr; } }
.hw-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    margin-bottom: 10px;
}
.hw-faq-list.layout-two-col .hw-faq-item { margin-bottom: 0; height: fit-content; }
.hw-faq-item.is-open {
    border-color: #c7d2fe;
    box-shadow: 0 4px 16px rgba(99,102,241,0.1);
}
.hw-faq-question {
    width: 100%;
    padding: 18px 22px;
    font-size: 15px; font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    transition: background .15s, color .15s;
    background: transparent;
    border: 0;
    text-align: left;
    line-height: 1.4;
}
.hw-faq-question:hover { background: #f9fafb; }
.hw-faq-item.is-open .hw-faq-question { color: #6366f1; }
.hw-faq-chev {
    flex: 0 0 auto;
    width: 24px; height: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6366f1;
    font-size: 12px;
    transition: transform .25s, background .15s;
}
.hw-faq-item.is-open .hw-faq-chev {
    transform: rotate(180deg);
    background: #eef2ff;
}
.hw-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}
.hw-faq-item.is-open .hw-faq-answer { grid-template-rows: 1fr; }
.hw-faq-answer > div { overflow: hidden; }
.hw-faq-answer-inner {
    padding: 0 22px 18px;
    color: #4b5563;
    font-size: 14px; line-height: 1.65;
}

/* ═══════════════ Blog Showcase ═══════════════ */
.hw-blog-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.hw-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    border: 1px solid #f3f4f6;
}
.hw-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
    color: inherit;
}
.hw-blog-card__image {
    aspect-ratio: 16/9;
    background-size: cover; background-position: center;
    transition: transform .5s;
    overflow: hidden;
}
.hw-blog-card:hover .hw-blog-card__image { transform: scale(1.04); }
.hw-blog-card__body {
    padding: 22px;
    flex: 1;
    display: flex; flex-direction: column;
}
.hw-blog-card__category {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    padding: 4px 11px;
    background: #eef2ff; color: #6366f1;
    border-radius: 99px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hw-blog-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hw-blog-card__excerpt {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hw-blog-card__meta {
    font-size: 12px; color: #9ca3af;
    margin-top: auto;
    display: flex; align-items: center; gap: 6px;
}

/* ═══════════════ Image Gallery ═══════════════ */
.hw-gallery-grid {
    display: grid;
    gap: 12px;
}
.hw-gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.hw-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hw-gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.hw-gallery-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.hw-gallery-masonry { column-count: 3; column-gap: 12px; }
.hw-gallery-masonry.cols-2 { column-count: 2; }
.hw-gallery-masonry.cols-4 { column-count: 4; }
.hw-gallery-masonry.cols-5 { column-count: 5; }
.hw-gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    break-inside: avoid;
    margin-bottom: 12px;
    cursor: pointer;
    text-decoration: none;
}
.hw-gallery-item img {
    width: 100%; height: auto;
    display: block;
    transition: transform .5s ease;
}
.hw-gallery-item:hover img { transform: scale(1.06); }
.hw-gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}
.hw-gallery-item:hover::after { opacity: 1; }
.hw-gallery-item__caption {
    position: absolute; bottom: 12px; left: 12px; right: 12px;
    color: #fff;
    font-size: 13px; font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    z-index: 2;
    transform: translateY(6px); opacity: 0;
    transition: transform .25s, opacity .25s;
}
.hw-gallery-item:hover .hw-gallery-item__caption { transform: none; opacity: 1; }
@media (max-width: 768px) {
    .hw-gallery-grid.cols-3, .hw-gallery-grid.cols-4, .hw-gallery-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
    .hw-gallery-masonry, .hw-gallery-masonry.cols-4, .hw-gallery-masonry.cols-5 { column-count: 2; }
    .hw-gallery-item__caption { transform: none; opacity: 1; }
}

/* ═══════════════ Video Section ═══════════════ */
.hw-video { text-align: center; }
.hw-video__frame {
    position: relative;
    max-width: 960px; margin: 24px auto 0;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px; overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.hw-video__poster {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .5s;
}
.hw-video__frame:hover .hw-video__poster { transform: scale(1.03); }
.hw-video__frame::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.15);
    transition: background .25s;
}
.hw-video__frame:hover::after { background: rgba(0,0,0,0.3); }
.hw-video__play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #111827;
    transition: transform .25s, box-shadow .25s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 2;
}
.hw-video__play i { margin-left: 4px; }
.hw-video__frame:hover .hw-video__play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.hw-video__frame iframe,
.hw-video__frame video {
    width: 100%; height: 100%; border: 0;
    position: relative; z-index: 1;
}

/* ═══════════════ Tab Product Grid ═══════════════ */
.hw-tabs-nav {
    display: flex; justify-content: center; gap: 10px;
    margin-bottom: 28px; flex-wrap: wrap;
}
.hw-tabs-nav__btn {
    padding: 11px 24px;
    background: transparent;
    border: 1.5px solid #e5e7eb;
    border-radius: 99px;
    font-size: 14px; font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}
.hw-tabs-nav__btn:hover { border-color: #6366f1; color: #6366f1; }
.hw-tabs-nav__btn.is-active {
    background: #6366f1; color: #fff; border-color: #6366f1;
    box-shadow: 0 6px 16px rgba(99,102,241,0.35);
}
.hw-tabs-panel { display: none; }
.hw-tabs-panel.is-active { display: block; animation: hw-fade .3s ease; }
@keyframes hw-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

/* ═══════════════ Recently Viewed ═══════════════ */
.hw-recent-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}
.hw-recent-head__title {
    font-size: 18px; font-weight: 700;
    color: #111827; margin: 0;
    display: flex; align-items: center; gap: 8px;
}
.hw-recent-head__clear {
    font-size: 12px; color: #6b7280;
    background: transparent; border: 0;
    cursor: pointer;
    padding: 6px 10px; border-radius: 6px;
    transition: background .15s, color .15s;
}
.hw-recent-head__clear:hover { background: #f3f4f6; color: #ef4444; }
.hw-recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}
.hw-recent-item {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    transition: transform .2s, box-shadow .2s;
    border: 1px solid #f3f4f6;
    display: flex; flex-direction: column;
}
.hw-recent-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    color: inherit;
}
.hw-recent-item img {
    width: 100%; aspect-ratio: 1/1;
    object-fit: cover;
    background: #f9fafb;
}
.hw-recent-item__body {
    padding: 10px 12px 12px;
}
.hw-recent-item__name {
    font-size: 12.5px; font-weight: 500;
    color: #111827; line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}
.hw-recent-item__price {
    font-size: 13px; font-weight: 700;
    color: #111827; margin-top: 6px;
}

/* ═══════════════ Instagram Feed ═══════════════ */
.hw-ig-head {
    text-align: center;
    margin-bottom: 20px;
}
.hw-ig-user {
    display: inline-flex; align-items: center; gap: 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid #e5e7eb;
    transition: all .2s;
}
.hw-ig-user i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    font-size: 18px;
}
.hw-ig-user:hover {
    color: #111827;
    border-color: #dc2743;
    transform: translateY(-1px);
}
.hw-ig-grid {
    display: grid;
    gap: 10px;
}
.hw-ig-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hw-ig-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.hw-ig-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.hw-ig-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 768px) {
    .hw-ig-grid.cols-4, .hw-ig-grid.cols-5, .hw-ig-grid.cols-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px) {
    .hw-ig-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
.hw-ig-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
    position: relative;
}
.hw-ig-item iframe {
    width: 100%; height: 100%; border: 0;
    position: absolute; inset: 0;
}

/* ═══════════════ Collection Showcase ═══════════════ */
.hw-collection-grid {
    display: grid;
    gap: 16px;
}
.hw-collection-grid.layout-grid { grid-template-columns: repeat(3, 1fr); }
.hw-collection-grid.layout-hero-left,
.hw-collection-grid.layout-hero-right {
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: minmax(180px, 1fr);
    min-height: 460px;
}
.hw-collection-grid.layout-hero-left .hw-collection-item:first-child,
.hw-collection-grid.layout-hero-right .hw-collection-item:first-child {
    grid-row: span 2;
}
.hw-collection-grid.layout-hero-right { grid-template-columns: 1fr 2fr; }
@media (max-width: 768px) {
    .hw-collection-grid { grid-template-columns: 1fr !important; min-height: auto; }
    .hw-collection-grid.layout-hero-left .hw-collection-item:first-child,
    .hw-collection-grid.layout-hero-right .hw-collection-item:first-child {
        grid-row: auto;
    }
}

.hw-collection-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 240px;
    display: flex; align-items: flex-end;
    text-decoration: none; color: #fff;
    background-size: cover; background-position: center;
    transition: transform .3s;
}
.hw-collection-item:hover { transform: translateY(-3px); color: #fff; }
.hw-collection-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1) 60%);
    transition: background .3s;
    z-index: 0;
}
.hw-collection-item:hover::before { background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3) 60%); }
.hw-collection-item__body {
    position: relative; z-index: 1;
    padding: 28px;
    width: 100%;
    display: flex; flex-direction: column; gap: 6px;
}
.hw-collection-item__title {
    font-size: 24px; font-weight: 800;
    margin: 0; line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -0.01em;
}
.hw-collection-grid.layout-hero-left .hw-collection-item:first-child .hw-collection-item__title,
.hw-collection-grid.layout-hero-right .hw-collection-item:first-child .hw-collection-item__title {
    font-size: 34px;
}
.hw-collection-item__subtitle {
    font-size: 13px; opacity: .9;
    margin: 0;
}
.hw-collection-item__cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    margin-top: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    align-self: flex-start;
    transition: background .2s, gap .2s;
}
.hw-collection-item:hover .hw-collection-item__cta {
    background: rgba(255,255,255,0.25);
    gap: 10px;
}

/* ═══════════════ Custom HTML ═══════════════ */
.hw-custom-html {
    font-size: 15px;
    line-height: 1.65;
    color: #374151;
}
.hw-custom-html h1, .hw-custom-html h2, .hw-custom-html h3,
.hw-custom-html h4, .hw-custom-html h5, .hw-custom-html h6 {
    color: #111827;
    font-weight: 700;
    margin: 1.2em 0 .5em;
}
.hw-custom-html img { max-width: 100%; height: auto; border-radius: 8px; }
.hw-custom-html a { color: #6366f1; text-decoration: underline; }
.hw-custom-html table { width: 100%; border-collapse: collapse; }
.hw-custom-html table th, .hw-custom-html table td {
    padding: 10px 14px; border: 1px solid #e5e7eb;
}
