.home-banner-area {
    background: #f2f2f0;
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

.slider-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 0;
    background-image: url("/public/assets/img/slider-logo.svg");
    background-repeat: no-repeat;
    background-position: center 40px; /* center horizontally, 40px from top */
}

/* ── LEFT COPY ── */
.hero-copy {
    padding-left: 0;
}

.year-block {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    line-height: 1;
    margin-bottom: 20px;
}

.year-num {
    font-family: "Playfair Display", serif;
    font-size: clamp(72px, 8vw, 110px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -3px;
}

.year-script {
    font-family: "Dancing Script", cursive;
    font-size: clamp(46px, 5vw, 76px);
    color: #c09b5a;
    transform: translateY(6px);
}

.hero-headline {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 18px;
}

.badge-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 3vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    z-index: 999;
    margin-bottom: 52px;
    position: relative;
    display: inline-block;
}

.badge-title .title-img {
    position: absolute;
    left: 50%;
    bottom: -80%;
}

.hero-sub {
    font-size: 14px;
    color: #666;
    max-width: 380px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.btn-shop {
    display: inline-block;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    background: transparent;
    padding: 20px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition:
        background 0.25s,
        color 0.25s;
}

.btn-shop:hover {
    background: #d9ba55;
    border-color: #d9ba55;
    color: #fff;
}

/* ── RIGHT IMAGE AREA ── */
.hero-image-wrap {
    position: relative;
    /* height: 520px; */
    /* margin: auto 0; */
}

/* large circle backdrop */
.circle-bg {
    position: absolute;
    width: 422px;
    height: 383px;
    background: #e6e1d8;
    border-radius: 80%;
    top: 23%;
    left: 29%;
    transform: translate(-55%, -50%);
    z-index: 0;
}

.sofa-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    display: block;
    margin: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.13));
    animation: floatSofa 4s ease-in-out infinite;
}

@keyframes floatSofa {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* product card chip */
.product-info {
    position: absolute;
    top: 60px;
    width: 100%;
    left: 50%;
    height: 150px;
    /* display: block; */
    transform: translateX(-40%);
    /* background: #fff; */
    /* border-radius: 12px; */
    /* padding: 14px 20px; */
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, .09); */
    z-index: 2;
    /* animation: fadeDown .7s .3s both; */
}
.product-info .product-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    margin-top: 20px;
}
.product-info .product-price {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 600;
}
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateX(-60%) translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(-60%) translateY(0);
    }
}

.product-chip .price {
    font-size: 13px;
    color: #c09b5a;
    font-weight: 600;
    margin-bottom: 2px;
}

.product-chip .pname {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.product-chip .buy-link {
    font-size: 12px;
    color: #999;
    text-decoration: none;
}

.product-chip .buy-link:hover {
    color: #c09b5a;
}

/* discount badge */
.discount-badge {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-140%);
    width: 76px;
    height: 76px;
    background: #c09b5a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    animation: popIn 0.5s 0.6s both;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateX(-140%) scale(0.6);
    }

    to {
        opacity: 1;
        transform: translateX(-140%) scale(1);
    }
}

.discount-badge .pct {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.discount-badge .off {
    font-size: 11px;
    letter-spacing: 1px;
}

/* ── ENTRANCE ANIMATIONS ── */
.hero-copy > * {
    opacity: 0;
    animation: slideUp 0.7s forwards;
}

.year-block {
    animation-delay: 0.1s;
}

.hero-headline {
    animation-delay: 0.25s;
}

.hero-sub {
    animation-delay: 0.38s;
}

.btn-shop {
    animation-delay: 0.5s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-copy {
        padding-left: 30px;
    }

    .hero-image-wrap {
        height: 380px;
    }

    .circle-bg {
        width: 320px;
        height: 320px;
        z-index: -1;
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-copy {
        padding: 40px 20px 0 20px;
        text-align: left;
    }

    .badge-title {
        text-align: left;
        margin-bottom: 37px;
    }
    .slider-inner {
        padding: 0;
    }

    .hero-headline {
        text-align: left;
    }

    .hero-sub {
        margin: 0 0 30px 0;
        text-align: left;
    }

    .btn-shop {
        display: inline-block;
    }

    .hero-image-wrap {
        height: 320px;
        margin-top: 30px;
    }

    .product-chip {
        left: 50%;
        transform: translateX(-50%);
    }

    .discount-badge {
        left: 70%;
        transform: translateX(-50%);
    }
    .product-info,
    .discount-badge {
        display: none;
    }
}

.image-hover-effect {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.product-main-image,
.product-hover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transition: transform 0.7s ease;
}

.product-main-image {
    transform: rotateY(0deg);
}

.product-hover-image {
    top: 0;
    left: 0;
    transform: rotateY(180deg);
}

.image-hover-effect:hover .product-main-image {
    transform: rotateY(-180deg);
}

.image-hover-effect:hover .product-hover-image {
    transform: rotateY(0deg);
}
