.hero {
background: #fff;
        padding: 18px 0 8px;
}

.hero-inner {
display: grid;
        grid-template-columns: 220px 1fr;
        gap: 18px;
}

.category-menu {
background: #fff;
        box-shadow: var(--shadow);
        border: 1px solid #f1f1f3;
        border-radius: 3px;
        padding: 10px 0;
}

.category-menu a {
display: block;
        padding: 10px 18px;
        font-size: 14px;
        color: #555;
}

.category-menu a:hover {
background: #fff4ee;
        color: var(--orange);
}

.hero-slider {
position: relative;
        min-height: 330px;
        border-radius: 4px;
        overflow: hidden;
        background: linear-gradient(110deg, #fff0e6 0, #ffd8c7 48%, #fff 100%);
}

.hero-slide {
position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
        align-items: center;
        padding: 40px 60px;
        opacity: 0;
        transform: translateX(14px);
        transition: 0.45s ease;
        pointer-events: none;
}

.hero-slide.is-active {
opacity: 1;
        transform: none;
        pointer-events: auto;
}

.eyebrow {
display: inline-block;
        color: var(--orange);
        font-weight: 800;
        font-size: 14px;
        letter-spacing: 1.1px;
        margin-bottom: 10px;
}

.hero-slide h1 {
margin: 0;
        font-size: 42px;
        line-height: 1.08;
        color: #1a1735;
        letter-spacing: -1.4px;
}

.hero-slide p {
max-width: 550px;
        line-height: 1.55;
        color: #5f6270;
        font-size: 16px;
        margin: 18px 0 24px;
}

.hero-cta {
display: inline-block;
        background: var(--orange);
        color: #fff;
        padding: 12px 26px;
        border-radius: 4px;
        font-weight: 700;
}

.hero-art {
display: flex;
        justify-content: center;
        align-items: center;
}

.hero-art img {
width: 250px;
        filter: drop-shadow(0 18px 18px rgba(71, 45, 35, 0.18));
        border-radius: 14px;
}

.hero-art-two img {
transform: rotate(-2deg);
}

.hero-art-three img {
transform: rotate(2deg);
}

.slider-dots {
position: absolute;
        left: 50%;
        bottom: 14px;
        transform: translateX(-50%);
        display: flex;
        gap: 7px;
        z-index: 4;
}

.slider-dots button {
width: 8px;
        height: 8px;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
        padding: 0;
        cursor: pointer;
}

.slider-dots button.is-active {
width: 24px;
        background: var(--orange);
}

@media (max-width: 1000px) and (min-width: 721px) {
.hero-inner {
grid-template-columns: 190px 1fr;
}

.hero-slide {
padding: 35px;
}

.hero-slide h1 {
font-size: 34px;
}
}
