.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;
    }
}
