:root {
    --renov-el-ink: #20202a;
    --renov-el-muted: #6d6a66;
    --renov-el-soft: #fbf6f0;
    --renov-el-paper: #ffffff;
    --renov-el-line: #ece2d8;
    --renov-el-orange: #f26b3f;
    --renov-el-orange-dark: #cc4529;
    --renov-el-red: #b9342c;
    --renov-el-shadow: 0 18px 45px rgba(36, 31, 27, 0.11);
    --renov-el-radius: 8px;
}

.renov-el-widget,
.renov-el-widget * {
    box-sizing: border-box;
}

.renov-el-widget {
    color: var(--renov-el-ink);
    font-family: inherit;
    line-height: 1.5;
    position: relative;
}

.renov-el-container {
    margin-inline: auto;
    max-width: 1180px;
    width: min(100% - 32px, 1180px);
}

.renov-el-section-head {
    margin: 0 auto 34px;
    max-width: 760px;
}

.renov-el-align-left {
    margin-left: 0;
    text-align: left;
}

.renov-el-align-center {
    text-align: center;
}

.renov-el-align-right {
    margin-right: 0;
    text-align: right;
}

.renov-el-eyebrow,
.renov-el-badge {
    color: var(--renov-el-red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.renov-el-badge {
    background: rgba(242, 107, 63, 0.12);
    border: 1px solid rgba(242, 107, 63, 0.22);
    border-radius: 999px;
    display: inline-flex;
    padding: 7px 12px;
}

.renov-el-section-head h2,
.renov-el-widget h1,
.renov-el-widget h2,
.renov-el-widget h3 {
    color: var(--renov-el-ink);
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0;
}

.renov-el-section-head h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.renov-el-section-text {
    color: var(--renov-el-muted);
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    margin: 14px 0 0;
}

.renov-el-card {
    background: var(--renov-el-paper);
    border: 1px solid var(--renov-el-line);
    border-radius: var(--renov-el-radius);
    box-shadow: 0 12px 30px rgba(35, 30, 26, 0.07);
}

.renov-el-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.renov-el-button,
.renov-el-link {
    align-items: center;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.renov-el-button {
    border-radius: 999px;
    min-height: 48px;
    padding: 13px 22px;
}

.renov-el-button:hover,
.renov-el-link:hover {
    transform: translateY(-1px);
}

.renov-el-button-primary {
    background: var(--renov-el-orange);
    border: 1px solid var(--renov-el-orange);
    box-shadow: 0 12px 24px rgba(242, 107, 63, 0.24);
    color: #ffffff;
}

.renov-el-button-primary:hover,
.renov-el-button-primary:focus {
    background: var(--renov-el-orange-dark);
    border-color: var(--renov-el-orange-dark);
    color: #ffffff;
}

.renov-el-button-ghost {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(32, 32, 42, 0.14);
    color: var(--renov-el-ink);
}

.renov-el-button-ghost:hover,
.renov-el-button-ghost:focus {
    background: #ffffff;
    color: var(--renov-el-red);
}

.renov-el-link {
    color: var(--renov-el-red);
    gap: 8px;
}

.renov-el-link::after {
    content: "";
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    height: 7px;
    transform: rotate(45deg);
    width: 7px;
}

.renov-el-empty {
    background: var(--renov-el-soft);
    border: 1px solid var(--renov-el-line);
    border-radius: var(--renov-el-radius);
    color: var(--renov-el-muted);
    margin: 0;
    padding: 18px;
    text-align: center;
}

.renov-el-product-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.renov-el-product-card {
    background: #ffffff;
    border: 1px solid var(--renov-el-line);
    border-radius: var(--renov-el-radius);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.renov-el-product-card:hover {
    border-color: rgba(242, 107, 63, 0.38);
    box-shadow: var(--renov-el-shadow);
    transform: translateY(-3px);
}

.renov-el-product-media {
    aspect-ratio: 1 / 1;
    background: var(--renov-el-soft);
    display: block;
    overflow: hidden;
}

.renov-el-product-image {
    display: block;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform 240ms ease;
    width: 100%;
}

.renov-el-product-card:hover .renov-el-product-image {
    transform: scale(1.04);
}

.renov-el-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 11px;
    padding: 16px;
}

.renov-el-product-body h3 {
    font-size: 1rem;
    line-height: 1.25;
}

.renov-el-product-price {
    color: var(--renov-el-red);
    font-weight: 800;
    margin-top: auto;
}

[data-renov-reveal] {
    opacity: 0;
    transition: opacity 520ms ease, transform 520ms ease;
    will-change: opacity, transform;
}

[data-renov-reveal="fade-up"] {
    transform: translateY(22px);
}

[data-renov-reveal="fade-left"] {
    transform: translateX(22px);
}

[data-renov-reveal="fade-right"] {
    transform: translateX(-22px);
}

[data-renov-reveal="scale-in"] {
    transform: scale(0.96);
}

[data-renov-reveal].is-renov-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    .renov-el-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .renov-el-container {
        width: min(100% - 24px, 1180px);
    }

    .renov-el-section-head {
        margin-bottom: 24px;
    }

    .renov-el-actions,
    .renov-el-button {
        width: 100%;
    }

    .renov-el-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .renov-el-widget *,
    [data-renov-reveal] {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

    [data-renov-reveal] {
        opacity: 1;
        transform: none;
    }
}
