.ohws-store {
    --ohws-cols: 4;
    --ohws-accent: #7c3cff;
    --ohws-bg: #ffffff;
    --ohws-card: #ffffff;
    --ohws-text: #101827;
    --ohws-muted: #667085;
    --ohws-border: rgba(17, 24, 39, .10);
    --ohws-shadow: 0 18px 45px rgba(15, 23, 42, .10);
    position: relative;
    margin: 28px 0;
    padding: 28px;
    border: 1px solid var(--ohws-border);
    border-radius: 28px;
    background: var(--ohws-bg);
    color: var(--ohws-text);
    overflow: hidden;
}

.ohws-store *,
.ohws-store *::before,
.ohws-store *::after {
    box-sizing: border-box;
}

.ohws-store-head {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}

.ohws-kicker {
    margin: 0 0 8px;
    color: var(--ohws-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ohws-store h2 {
    margin: 0;
    color: var(--ohws-text);
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.02;
}

.ohws-grid-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(var(--ohws-cols), minmax(0, 1fr));
    gap: 18px;
}

.ohws-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--ohws-border);
    border-radius: 22px;
    background: var(--ohws-card);
    box-shadow: var(--ohws-shadow);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ohws-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: rgba(0, 0, 0, .04);
    overflow: hidden;
    text-decoration: none;
}

.ohws-product-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease, filter .28s ease;
}

.ohws-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.ohws-product-card h3 {
    margin: 0 0 8px;
    color: var(--ohws-text);
    font-size: 17px;
    line-height: 1.22;
}

.ohws-product-card h3 a {
    color: inherit;
    text-decoration: none;
}

.ohws-product-card h3 a:hover {
    color: var(--ohws-accent);
}

.ohws-desc {
    margin: 0 0 12px;
    color: var(--ohws-muted);
    font-size: 14px;
    line-height: 1.45;
}

.ohws-rating {
    margin: 0 0 10px;
}

.ohws-rating .star-rating {
    float: none;
}

.ohws-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.ohws-price {
    color: var(--ohws-text);
    font-size: 16px;
    font-weight: 900;
}

.ohws-price del {
    color: var(--ohws-muted);
    font-weight: 500;
}

.ohws-button,
.ohws-store .button.ohws-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    background: var(--ohws-accent);
    color: #fff !important;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 28px color-mix(in srgb, var(--ohws-accent), transparent 65%);
}

.ohws-button:hover,
.ohws-store .button.ohws-button:hover {
    filter: brightness(1.06);
    color: #fff !important;
}

.ohws-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--ohws-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .20);
}

.ohws-uncover {
    position: absolute;
    inset: auto 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .72);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .22s ease, transform .22s ease;
}

.ohws-card-interactive .ohws-product-card:hover .ohws-uncover,
.ohws-hover-uncover .ohws-product-card:hover .ohws-uncover {
    opacity: 1;
    transform: translateY(0);
}

.ohws-hover-enlarge .ohws-product-card:hover {
    transform: scale(1.035);
    box-shadow: 0 25px 65px rgba(15, 23, 42, .18);
}

.ohws-hover-lift .ohws-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.ohws-hover-tilt .ohws-product-card:hover {
    transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-5px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.ohws-hover-enlarge .ohws-product-card:hover .ohws-product-img,
.ohws-hover-lift .ohws-product-card:hover .ohws-product-img,
.ohws-hover-tilt .ohws-product-card:hover .ohws-product-img {
    transform: scale(1.08);
}

.ohws-template-modern {
    --ohws-bg: linear-gradient(135deg, #ffffff, #f7f6ff);
    --ohws-card: rgba(255, 255, 255, .92);
}

.ohws-template-futuristic {
    --ohws-bg: radial-gradient(circle at top left, rgba(124, 58, 237, .28), transparent 34%), linear-gradient(135deg, #08111f, #101828);
    --ohws-card: rgba(15, 23, 42, .84);
    --ohws-text: #f8fbff;
    --ohws-muted: #a8b3c7;
    --ohws-border: rgba(148, 163, 184, .22);
    --ohws-shadow: 0 20px 60px rgba(0, 0, 0, .30);
}

.ohws-template-business_suite {
    --ohws-bg: linear-gradient(135deg, #f8fafc, #eef2f7);
    --ohws-card: #ffffff;
    --ohws-accent: #2563eb;
    --ohws-shadow: 0 18px 44px rgba(30, 64, 175, .10);
}

.ohws-template-tech {
    --ohws-bg: linear-gradient(135deg, #041018, #082f49);
    --ohws-card: rgba(7, 24, 35, .90);
    --ohws-text: #ecfeff;
    --ohws-muted: #9bd4df;
    --ohws-accent: #06b6d4;
    --ohws-border: rgba(103, 232, 249, .22);
}

.ohws-template-shopping {
    --ohws-bg: linear-gradient(135deg, #fff7ed, #fff1f2);
    --ohws-card: #ffffff;
    --ohws-accent: #f97316;
}

.ohws-template-luxury {
    --ohws-bg: linear-gradient(135deg, #11100e, #2d2416);
    --ohws-card: rgba(24, 21, 18, .92);
    --ohws-text: #fff8ea;
    --ohws-muted: #d3c2a2;
    --ohws-accent: #d4af37;
    --ohws-border: rgba(212, 175, 55, .28);
}

.ohws-template-minimal {
    --ohws-bg: #ffffff;
    --ohws-card: #ffffff;
    --ohws-accent: #111827;
    --ohws-shadow: none;
}

.ohws-template-minimal .ohws-product-card {
    border-radius: 14px;
}

.ohws-template-neon_market {
    --ohws-bg: radial-gradient(circle at 12% 20%, rgba(236, 72, 153, .28), transparent 30%), radial-gradient(circle at 85% 5%, rgba(34, 211, 238, .22), transparent 26%), #070313;
    --ohws-card: rgba(18, 9, 34, .88);
    --ohws-text: #fff7ff;
    --ohws-muted: #cdb6df;
    --ohws-accent: #ec4899;
    --ohws-border: rgba(236, 72, 153, .26);
}

.ohws-template-battle_shop {
    --ohws-bg: radial-gradient(circle at top, rgba(239, 68, 68, .20), transparent 32%), linear-gradient(135deg, #130b0b, #1f2937);
    --ohws-card: rgba(28, 22, 22, .92);
    --ohws-text: #fff7ed;
    --ohws-muted: #d9b5a5;
    --ohws-accent: #ef4444;
    --ohws-border: rgba(248, 113, 113, .24);
}

.ohws-highlight-glow .is-highlighted {
    border-color: color-mix(in srgb, var(--ohws-accent), #fff 25%);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--ohws-accent), transparent 45%), 0 0 34px color-mix(in srgb, var(--ohws-accent), transparent 62%);
}

.ohws-highlight-pulse .is-highlighted {
    animation: ohwsPulse 1.8s ease-in-out infinite;
}

.ohws-highlight-glow_pulse .is-highlighted {
    border-color: color-mix(in srgb, var(--ohws-accent), #fff 25%);
    animation: ohwsPulse 1.8s ease-in-out infinite;
}

.ohws-highlight-shimmer .is-highlighted::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .42) 45%, transparent 70%);
    transform: translateX(-130%);
    animation: ohwsShimmer 2.4s ease-in-out infinite;
    pointer-events: none;
}

.ohws-highlight-spotlight .is-highlighted::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 1;
    background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--ohws-accent), transparent 45%), transparent 58%);
    pointer-events: none;
}

.ohws-highlight-neon_border .is-highlighted {
    border-color: var(--ohws-accent);
    box-shadow: inset 0 0 0 1px var(--ohws-accent), 0 0 22px color-mix(in srgb, var(--ohws-accent), transparent 55%);
}

.ohws-notice {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff8e1;
    color: #7a4d00;
}

@keyframes ohwsPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--ohws-accent), transparent 48%), var(--ohws-shadow);
    }
    50% {
        box-shadow: 0 0 0 8px color-mix(in srgb, var(--ohws-accent), transparent 88%), 0 0 36px color-mix(in srgb, var(--ohws-accent), transparent 60%);
    }
}

@keyframes ohwsShimmer {
    0% {
        transform: translateX(-130%);
    }
    55%, 100% {
        transform: translateX(130%);
    }
}

@media (max-width: 1100px) {
    .ohws-grid-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .ohws-store {
        padding: 18px;
        border-radius: 22px;
    }

    .ohws-grid-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ohws-card-foot {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .ohws-grid-wrap {
        grid-template-columns: 1fr;
    }
}

/* Showcase, slider, carousel, accordion, popout, and global display modes */
.ohws-product-card {
    height: 100%;
}

.ohws-showcase {
    position: relative;
    z-index: 1;
    margin: 18px 0;
}

.ohws-showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
}

.ohws-showcase-head span {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, var(--ohws-accent), transparent 62%);
    border-radius: 999px;
    background: color-mix(in srgb, var(--ohws-accent), transparent 88%);
    color: var(--ohws-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ohws-showcase-shell {
    position: relative;
}

.ohws-showcase-viewport {
    overflow: hidden;
    border-radius: 24px;
}

.ohws-showcase-track {
    display: flex;
    align-items: stretch;
    gap: 0;
    will-change: transform;
    transition: transform .42s cubic-bezier(.22, .61, .36, 1);
}

.ohws-showcase-slide {
    position: relative;
    flex: 0 0 calc(100% / var(--ohws-visible, 1));
    min-width: calc(100% / var(--ohws-visible, 1));
    padding: 8px;
}

.ohws-showcase-slider .ohws-showcase-viewport {
    max-width: 720px;
    margin: 0 auto;
}

.ohws-showcase-slider .ohws-product-card {
    max-width: 620px;
    margin: 0 auto;
}

.ohws-showcase-carousel .ohws-showcase-viewport {
    margin: 0 44px;
}

.ohws-showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--ohws-border);
    border-radius: 50%;
    background: var(--ohws-card);
    color: var(--ohws-text);
    cursor: pointer;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    box-shadow: var(--ohws-shadow);
    transform: translateY(-50%);
    transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.ohws-showcase-arrow:hover:not(:disabled) {
    background: var(--ohws-accent);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}

.ohws-showcase-arrow:disabled {
    cursor: not-allowed;
    opacity: .34;
}

.ohws-showcase-prev {
    left: 0;
}

.ohws-showcase-next {
    right: 0;
}

.ohws-showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 0;
}

.ohws-showcase-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ohws-text), transparent 74%);
    cursor: pointer;
    transition: width .18s ease, background .18s ease;
}

.ohws-showcase-dot.is-active {
    width: 28px;
    background: var(--ohws-accent);
}

.ohws-popout-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(var(--ohws-cols), minmax(0, 1fr));
    gap: 18px;
    perspective: 1200px;
}

.ohws-popout-wrap .ohws-product-card {
    transform-origin: center;
}

.ohws-popout-wrap .ohws-product-card:hover,
.ohws-popout-wrap .ohws-product-card:focus-within {
    z-index: 4;
    transform: translateY(-12px) scale(1.06);
    box-shadow: 0 35px 90px rgba(15, 23, 42, .28);
}

.ohws-accordion {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.ohws-accordion-item {
    border: 1px solid var(--ohws-border);
    border-radius: 20px;
    background: var(--ohws-card);
    box-shadow: var(--ohws-shadow);
    overflow: hidden;
}

.ohws-accordion-toggle {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 34px;
    align-items: center;
    width: 100%;
    gap: 14px;
    padding: 12px 14px;
    border: 0;
    background: transparent;
    color: var(--ohws-text);
    cursor: pointer;
    text-align: left;
}

.ohws-accordion-thumb {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .05);
    overflow: hidden;
}

.ohws-accordion-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ohws-accordion-title-wrap {
    min-width: 0;
}

.ohws-accordion-title-wrap strong {
    display: block;
    overflow: hidden;
    color: var(--ohws-text);
    font-size: 17px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ohws-accordion-title-wrap em {
    display: block;
    margin-top: 4px;
    color: var(--ohws-accent);
    font-style: normal;
    font-weight: 900;
}

.ohws-accordion-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--ohws-accent), transparent 86%);
    color: var(--ohws-accent);
    font-size: 22px;
    font-weight: 900;
    transition: transform .18s ease;
}

.ohws-accordion-panel {
    display: none;
    padding: 0 14px 14px;
}

.ohws-accordion-item.is-open .ohws-accordion-panel {
    display: block;
}

.ohws-accordion-item.is-open .ohws-accordion-icon {
    transform: rotate(45deg);
}

.ohws-accordion-panel .ohws-product-card {
    box-shadow: none;
}

.ohws-showcase-global {
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--ohws-accent), transparent 58%);
    border-radius: 30px;
    background: radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--ohws-accent), transparent 74%), transparent 32%), rgba(255, 255, 255, .04);
}

.ohws-showcase-global .ohws-showcase-viewport {
    margin: 0 44px;
}

.ohws-showcase-global .ohws-product-card {
    border-color: color-mix(in srgb, var(--ohws-accent), transparent 50%);
}

.ohws-global-chip {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 6;
    padding: 7px 10px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.ohws-template-futuristic .ohws-global-chip,
.ohws-template-tech .ohws-global-chip,
.ohws-template-neon_market .ohws-global-chip,
.ohws-template-battle_shop .ohws-global-chip,
.ohws-template-luxury .ohws-global-chip {
    background: var(--ohws-accent);
}

@media (max-width: 860px) {
    .ohws-showcase-carousel .ohws-showcase-viewport,
    .ohws-showcase-global .ohws-showcase-viewport {
        margin: 0 36px;
    }

    .ohws-popout-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .ohws-showcase-carousel .ohws-showcase-viewport,
    .ohws-showcase-global .ohws-showcase-viewport {
        margin: 0;
    }

    .ohws-showcase-arrow {
        top: auto;
        bottom: -54px;
        transform: none;
    }

    .ohws-showcase-arrow:hover:not(:disabled) {
        transform: scale(1.06);
    }

    .ohws-showcase-prev {
        left: calc(50% - 48px);
    }

    .ohws-showcase-next {
        right: calc(50% - 48px);
    }

    .ohws-showcase-dots {
        margin-top: 62px;
    }

    .ohws-popout-wrap {
        grid-template-columns: 1fr;
    }

    .ohws-accordion-toggle {
        grid-template-columns: 54px minmax(0, 1fr) 30px;
        gap: 10px;
        padding: 10px;
    }

    .ohws-accordion-thumb {
        width: 54px;
        height: 54px;
    }
}

/* v1.0.4 featured product, CTA, custom interface controls, card layouts, and animation FX */
.ohws-bg-custom {
    --ohws-bg: var(--ohws-custom-bg);
    --ohws-card: var(--ohws-custom-card);
    --ohws-text: var(--ohws-custom-text);
    --ohws-muted: var(--ohws-custom-muted);
}

.ohws-bg-transparent {
    --ohws-bg: transparent;
    --ohws-card: color-mix(in srgb, var(--ohws-custom-card), transparent 8%);
}

.ohws-bg-dark_custom {
    --ohws-bg: linear-gradient(135deg, #050816, color-mix(in srgb, var(--ohws-custom-bg), #050816 62%));
    --ohws-card: color-mix(in srgb, var(--ohws-custom-card), #050816 18%);
    --ohws-text: var(--ohws-custom-text);
    --ohws-muted: var(--ohws-custom-muted);
}

.ohws-bg-soft_gradient {
    --ohws-bg: radial-gradient(circle at top left, color-mix(in srgb, var(--ohws-custom-bg), white 20%), transparent 38%), linear-gradient(135deg, var(--ohws-custom-bg), color-mix(in srgb, var(--ohws-custom-bg), var(--ohws-accent) 18%));
    --ohws-card: color-mix(in srgb, var(--ohws-custom-card), transparent 4%);
    --ohws-text: var(--ohws-custom-text);
    --ohws-muted: var(--ohws-custom-muted);
}

.ohws-font-system { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.ohws-font-serif { font-family: Georgia, "Times New Roman", serif; }
.ohws-font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.ohws-font-rounded { font-family: "Trebuchet MS", "Segoe UI", sans-serif; }
.ohws-font-impact { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; letter-spacing: .01em; }

.ohws-store h2 { font-size: clamp(22px, 4vw, var(--ohws-title-size, 44px)); }
.ohws-product-card h3 { font-size: var(--ohws-product-title-size, 17px); }
.ohws-desc,
.ohws-featured-desc,
.ohws-cta-text { font-size: var(--ohws-text-size, 14px); }
.ohws-product-card { border-radius: var(--ohws-card-radius, 22px); }

.ohws-layout-square .ohws-product-card,
.ohws-layout-square .ohws-image { border-radius: 0; }
.ohws-layout-rounded .ohws-product-card { border-radius: var(--ohws-card-radius, 22px); }
.ohws-layout-pill .ohws-product-card { border-radius: 38px; }
.ohws-layout-pill .ohws-image { border-radius: 32px 32px 0 0; }
.ohws-layout-triangle .ohws-product-card { clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%); }
.ohws-layout-floating_cube .ohws-product-card {
    transform-style: preserve-3d;
    border-width: 2px;
    box-shadow: 12px 12px 0 color-mix(in srgb, var(--ohws-accent), transparent 70%), var(--ohws-shadow);
}
.ohws-layout-floating_cube .ohws-product-card::before {
    content: "";
    position: absolute;
    inset: 8px -10px -10px 8px;
    z-index: -1;
    border-radius: inherit;
    background: color-mix(in srgb, var(--ohws-accent), transparent 78%);
}
.ohws-layout-glass_tile .ohws-product-card {
    background: color-mix(in srgb, var(--ohws-card), transparent 22%);
    backdrop-filter: blur(12px);
    border-color: color-mix(in srgb, var(--ohws-accent), transparent 62%);
}
.ohws-layout-compact_strip .ohws-product-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
}
.ohws-layout-compact_strip .ohws-image { aspect-ratio: 1 / 1; height: 100%; }
.ohws-layout-compact_strip .ohws-card-body { padding: 12px; }
.ohws-layout-magazine .ohws-grid-wrap .ohws-product-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.ohws-layout-magazine .ohws-grid-wrap .ohws-product-card:first-child .ohws-image { aspect-ratio: 16 / 10; }
.ohws-layout-split .ohws-product-card,
.ohws-layout-full_page_product .ohws-product-card {
    display: grid;
    grid-template-columns: minmax(180px, .95fr) minmax(0, 1.05fr);
}
.ohws-layout-split .ohws-image,
.ohws-layout-full_page_product .ohws-image { aspect-ratio: auto; min-height: 100%; }
.ohws-layout-full_page_product .ohws-grid-wrap { grid-template-columns: 1fr; }
.ohws-layout-full_page_product .ohws-product-card { min-height: 520px; }
.ohws-layout-full_page_product .ohws-card-body { justify-content: center; padding: clamp(22px, 5vw, 56px); }
.ohws-layout-full_page_product .ohws-product-card h3 { font-size: clamp(28px, 4vw, 54px); }
.ohws-layout-full_page_product .ohws-desc { font-size: clamp(16px, 2vw, 20px); }

.ohws-featured-product {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
    gap: clamp(18px, 4vw, 34px);
    align-items: center;
    margin: 0 0 24px;
    padding: clamp(18px, 4vw, 34px);
    border: 1px solid color-mix(in srgb, var(--ohws-accent), transparent 58%);
    border-radius: 30px;
    background: radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--ohws-accent), transparent 78%), transparent 36%), color-mix(in srgb, var(--ohws-card), transparent 3%);
    box-shadow: var(--ohws-shadow);
    overflow: hidden;
}

.ohws-featured-media {
    position: relative;
    min-height: 320px;
    border-radius: 26px;
    background: rgba(0,0,0,.05);
    overflow: hidden;
}

.ohws-featured-img {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .55s ease, transform .55s ease;
}

.ohws-featured-img.is-active,
.ohws-featured-product:not([data-ohws-featured="1"]) .ohws-featured-img:first-child {
    opacity: 1;
    transform: scale(1);
}

.ohws-featured-img-tag,
.ohws-featured-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ohws-featured-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--ohws-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ohws-featured-kicker {
    margin: 0 0 8px;
    color: var(--ohws-accent);
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ohws-featured-body h3 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1;
}

.ohws-featured-body h3 a {
    color: var(--ohws-text);
    text-decoration: none;
}

.ohws-featured-price {
    margin: 0 0 12px;
    color: var(--ohws-accent);
    font-size: 22px;
    font-weight: 900;
}

.ohws-featured-desc {
    margin: 0 0 18px;
    color: var(--ohws-muted);
    line-height: 1.6;
}

.ohws-cta {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: var(--ohws-text);
}

.ohws-cta-text p { margin: 0; }
.ohws-cta-banner,
.ohws-cta-split_banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid color-mix(in srgb, var(--ohws-accent), transparent 54%);
    border-radius: 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--ohws-accent), transparent 82%), color-mix(in srgb, var(--ohws-card), transparent 2%));
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}
.ohws-cta-button,
.ohws-badge-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ohws-accent);
    color: #fff !important;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
.ohws-cta-button:hover,
.ohws-badge-button:hover { filter: brightness(1.08); }
.ohws-cta-button .ohws-cta-text,
.ohws-cta-button { margin: 0 0 18px; }
.ohws-cta-floating {
    position: absolute;
    top: 18px;
    right: 18px;
    max-width: min(320px, calc(100% - 36px));
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--ohws-accent), transparent 55%);
    border-radius: 18px;
    background: color-mix(in srgb, var(--ohws-card), transparent 6%);
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
}
.ohws-cta-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.ohws-hover-flip .ohws-product-card:hover { transform: perspective(900px) rotateY(6deg) translateY(-4px); }
.ohws-hover-spin .ohws-product-card:hover { transform: rotate(.7deg) scale(1.025); }
.ohws-hover-blur_zoom .ohws-product-card:hover .ohws-product-img { transform: scale(1.12); filter: saturate(1.08) blur(.4px); }
.ohws-hover-slide_up .ohws-product-card .ohws-card-body { transition: transform .24s ease; }
.ohws-hover-slide_up .ohws-product-card:hover .ohws-card-body { transform: translateY(-6px); }

.ohws-anim-float .ohws-product-card { animation: ohwsFloat 5s ease-in-out infinite; }
.ohws-anim-breathe .ohws-product-card { animation: ohwsBreathe 3.2s ease-in-out infinite; }
.ohws-anim-bounce .is-highlighted { animation: ohwsBounce 1.8s ease-in-out infinite; }
.ohws-anim-wave .ohws-product-card { animation: ohwsWave 3.8s ease-in-out infinite; }
.ohws-anim-wave .ohws-product-card:nth-child(2n) { animation-delay: .18s; }
.ohws-anim-wave .ohws-product-card:nth-child(3n) { animation-delay: .36s; }
.ohws-anim-fade_stack .ohws-product-card { animation: ohwsFadeStack .65s ease both; }
.ohws-anim-fade_stack .ohws-product-card:nth-child(2n) { animation-delay: .08s; }
.ohws-anim-fade_stack .ohws-product-card:nth-child(3n) { animation-delay: .16s; }
.ohws-anim-scanline .ohws-product-card::after,
.ohws-anim-rotate_glow .ohws-product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
}
.ohws-anim-scanline .ohws-product-card::after {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
    transform: translateY(-100%);
    animation: ohwsScan 3s linear infinite;
}
.ohws-anim-rotate_glow .ohws-product-card::after {
    inset: -2px;
    z-index: -1;
    background: conic-gradient(from 0deg, transparent, var(--ohws-accent), transparent 35%);
    animation: ohwsRotate 3.6s linear infinite;
}

.ohws-highlight-lightning .is-highlighted { box-shadow: 0 0 0 2px #facc15, 0 0 34px rgba(250,204,21,.52), var(--ohws-shadow); }
.ohws-highlight-aura .is-highlighted { box-shadow: 0 0 0 8px color-mix(in srgb, var(--ohws-accent), transparent 86%), 0 0 44px color-mix(in srgb, var(--ohws-accent), transparent 58%), var(--ohws-shadow); }
.ohws-highlight-fire .is-highlighted { box-shadow: 0 0 28px rgba(249,115,22,.55), 0 0 52px rgba(239,68,68,.28), var(--ohws-shadow); }
.ohws-highlight-ice .is-highlighted { box-shadow: 0 0 28px rgba(34,211,238,.55), 0 0 52px rgba(147,197,253,.28), var(--ohws-shadow); }
.ohws-highlight-rainbow .is-highlighted { border-color: transparent; background-image: linear-gradient(var(--ohws-card), var(--ohws-card)), linear-gradient(135deg, #ef4444, #f59e0b, #22c55e, #06b6d4, #8b5cf6); background-origin: border-box; background-clip: padding-box, border-box; }
.ohws-highlight-radar .is-highlighted { animation: ohwsRadar 2s ease-out infinite; }
.ohws-highlight-orbit .is-highlighted::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 2px dashed color-mix(in srgb, var(--ohws-accent), transparent 30%);
    animation: ohwsRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes ohwsFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }
@keyframes ohwsBreathe { 0%,100%{ box-shadow: var(--ohws-shadow);} 50%{ box-shadow: 0 0 30px color-mix(in srgb, var(--ohws-accent), transparent 68%), var(--ohws-shadow);} }
@keyframes ohwsBounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-7px);} }
@keyframes ohwsWave { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-5px);} }
@keyframes ohwsFadeStack { from{ opacity:0; transform: translateY(14px) scale(.98);} to{ opacity:1; transform: translateY(0) scale(1);} }
@keyframes ohwsScan { 0%{ transform: translateY(-105%);} 100%{ transform: translateY(105%);} }
@keyframes ohwsRotate { to{ transform: rotate(360deg);} }
@keyframes ohwsRadar { 0%{ box-shadow: 0 0 0 0 color-mix(in srgb, var(--ohws-accent), transparent 45%), var(--ohws-shadow);} 100%{ box-shadow: 0 0 0 22px color-mix(in srgb, var(--ohws-accent), transparent 100%), var(--ohws-shadow);} }

@media (max-width: 780px) {
    .ohws-featured-product,
    .ohws-layout-split .ohws-product-card,
    .ohws-layout-full_page_product .ohws-product-card {
        grid-template-columns: 1fr;
    }
    .ohws-featured-media { min-height: 260px; }
    .ohws-layout-magazine .ohws-grid-wrap .ohws-product-card:first-child { grid-column: auto; grid-row: auto; }
    .ohws-cta-banner,
    .ohws-cta-split_banner { align-items: flex-start; flex-direction: column; }
    .ohws-cta-floating { position: relative; top: auto; right: auto; max-width: none; }
}

.ohws-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px auto 8px;
    font-size: var(--ohws-text-size);
}
.ohws-page-link,
.ohws-page-number,
.ohws-page-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--ohws-accent), transparent 68%);
    background: color-mix(in srgb, var(--ohws-card), transparent 8%);
    color: var(--ohws-text);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}
.ohws-page-link {
    padding: 0 18px;
    font-weight: 800;
}
.ohws-page-number {
    width: 38px;
    font-weight: 800;
}
.ohws-page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.ohws-page-status {
    padding: 0 14px;
    color: var(--ohws-muted);
}
.ohws-page-link:hover,
.ohws-page-number:hover,
.ohws-page-number.is-current {
    background: var(--ohws-accent);
    border-color: var(--ohws-accent);
    color: #fff;
}
.ohws-page-link.is-disabled {
    opacity: .48;
    cursor: not-allowed;
    box-shadow: none;
}
