.ct-trending-block {
    display: none !important;
}

.hp-main {
    overflow: hidden;
    background: #fff;
    color: #141824;
}

.hp-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hp-hero {
    position: relative;
    background: #f2f1f8;
    padding: 40px 0;
}

.hp-hero__bg {
    display: none;
}

.hp-hero .hp-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hp-hero .hp-carousel__list {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
}

.hp-hero .hp-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
}

.hp-hero .hp-carousel.is-single .hp-carousel__list {
    transform: none !important;
    transition: none !important;
}

.hp-hero__dots {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 16px 0 0;
    padding: 0;
}

.hp-hero__dots button {
    width: 16px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(26, 26, 46, .2);
    padding: 0;
    cursor: pointer;
    transition: background .3s, width .3s;
}

.hp-hero__dots button.is-active {
    width: 32px;
    background: #1a1a2e;
}

.hp-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .75);
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    transition: background .2s, box-shadow .2s;
}

.hp-hero__arrow:hover {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
}

.hp-hero__arrow--prev {
    left: 16px;
}

.hp-hero__arrow--next {
    right: 16px;
}

.hp-hero__content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 24px;
    align-items: stretch;
    height: 500px;
}

.hp-hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 48px 44px;
    border-radius: 20px;
    background: #eeeaf5;
    box-sizing: border-box;
}

.hp-hero__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-weight: 800;
    color: #1a1a2e;
}

.hp-hero__subtitle {
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.hp-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 28px;
    padding: 0 26px;
    border-radius: 50px;
    background: #1a1a2e;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    transition: transform .2s, box-shadow .2s;
}

.hp-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    color: #fff;
}

.hp-hero__image {
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.hp-hero__image img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.hp-cat-nav {
    background: #f9f9f9;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-cat-nav__inner {
    width: 100%;
    max-width: 1280px;
    padding: 0 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.hp-cat-nav__inner::-webkit-scrollbar {
    display: none;
}

.hp-cat-nav__inner.is-dragging {
    cursor: grabbing;
}

.hp-cat-nav__menu {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    width: max-content !important;
}

.hp-cat-nav__menu .sub-menu {
    display: none !important;
}

.hp-cat-nav__menu > li {
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.hp-cat-nav__menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 38px;
    padding: 0 20px;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 0;
    color: #333;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s, color .2s;
}

.hp-cat-nav__menu > li > a:hover,
.hp-cat-nav__menu > li.current-menu-item > a {
    border-color: #999;
    color: #000;
}

.hp-section__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
    color: #1a1a2e;
}

.hp-section__title--center {
    margin: 0;
    font-size: 26px;
    line-height: 3;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
}

.hp-section__subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #888;
}

.hp-section__subtitle--center {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    text-align: center;
}

.hp-intro {
    background: #fff;
    padding: 60px 0;
}

.hp-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 380px;
}

.hp-intro__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 60px 50px;
    background: #e4f3eb;
}

.hp-intro__btn {
    align-self: flex-start;
    display: inline-block;
    margin-top: 10px;
    padding: 9px 20px;
    border: 1px solid #333;
    color: #333;
    font-size: 13px;
    background: #fff;
    text-decoration: none;
}

.hp-intro__image {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.hp-intro__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: rgba(45, 90, 61, 0.12);
    white-space: nowrap;
    letter-spacing: .05em;
    pointer-events: none;
    writing-mode: vertical-rl;
}

.hp-intro__image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hp-categories {
    background: #fff;
    padding: 0 0 80px;
}

.hp-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin: 0 0 32px;
}

.hp-section__header .hp-section__title {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    text-align: center;
}

.hp-section__header .hp-viewall-btn {
    min-height: 32px;
    height: 32px;
    padding: 0 18px;
    border-radius: 2px;
    border: 1px solid #333;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.hp-section__header .hp-viewall-btn:hover {
    background: #333;
    color: #fff;
}

.hp-categories__viewall {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 16px;
}

.hp-viewall-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    border: 1px solid #1a1a2e;
    background: #1a1a2e;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}

.hp-viewall-btn:hover {
    background: #fff;
    color: #1a1a2e;
}

.hp-catblock {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}

.hp-catblock--reverse {
    grid-template-columns: 1fr 280px;
    margin-bottom: 0;
}

.hp-catblock__left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 0;
    background: #fff;
}

.hp-catblock__right {
    padding: 24px;
    background: #fff;
}

.hp-catblock__banner {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 260px;
}

.hp-catblock__banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hp-catblock__title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    text-align: left;
    position: static;
    text-shadow: none;
}

.hp-catblock__left .hp-viewall-btn {
    align-self: flex-start;
    height: 36px;
    min-height: 36px;
    padding: 0 26px;
    border-radius: 2px;
    border: 1px solid #333;
    background: #fff;
    color: #111;
    margin: 18px 0 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.hp-catblock__left .hp-viewall-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.hp-catblock__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hp-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
    border: 1px solid #eee;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}

.hp-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.hp-product-card__image {
    position: relative;
    isolation: isolate;
    aspect-ratio: 1 / 1;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f8;
    overflow: hidden;
}

.hp-product-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .2s;
}

.hp-product-card__wishlist {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
    transition: transform .15s ease, color .15s ease;
}

.hp-product-card__wishlist:hover {
    transform: scale(1.1);
}

.hp-product-card__wishlist-icon {
    width: 24px;
    height: 24px;
    display: block;
    pointer-events: none;
    background-image: url('../images/heart-outline.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.hp-product-card__wishlist.is-active {
    color: #ff4d6d;
}

.hp-product-card__wishlist.is-active .hp-product-card__wishlist-icon {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff4d6d'%3E%3Cpath d='M12 21s-7.5-4.6-10-9.3C.1 8 2.2 4 6 4c2.1 0 3.7 1.1 4.6 2.6h.8C12.3 5.1 13.9 4 16 4c3.8 0 5.9 4 4 7.7C19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    -webkit-mask-image: none;
    mask-image: none;
}

.hp-product-card:hover .hp-product-card__image img {
    transform: scale(1.04);
}

.hp-product-card__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px 14px;
}

.hp-product-card__name {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-product-card__price {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a2e;
}

.hp-product-grid {
    display: grid;
    gap: 16px;
}

.hp-product-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.hp-product-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.hp-featured {
    background: #fff;
    padding: 0 0 80px;
}

.hp-brands {
    background: #fff;
    padding: 0 0 80px;
}

.hp-brands__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.hp-brands__item {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #eee;
    background: #fff;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.hp-brands__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.hp-brands__item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.hp-brands__name {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    text-align: center;
}

.hp-related {
    background: #fff;
    padding: 0 0 80px;
}

.hp-product-card--related .hp-product-card__info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px 14px;
}

.hp-product-card--related .hp-product-card__name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    -webkit-line-clamp: 1;
}

.hp-product-card__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid #212121;
    background: #fff;
    font-size: 13px;
    font-weight: 400;
    color: #212121;
    line-height: 1.4;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}

.hp-product-card--related:hover .hp-product-card__btn {
    background: #212121;
    color: #fff;
}

.hp-brand-banner {
    margin: 0 0 80px;
    padding: 72px 0;
    background: #f2f2f2;
    overflow: hidden;
}

.hp-brand-banner__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.hp-brand-banner__image {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-brand-banner__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.hp-brand-banner__text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 440px;
    padding: 24px 0;
    text-align: center;
}

.hp-brand-banner__text::before {
    display: none !important;
}


.hp-brand-banner__title {
    margin: 0;
    max-width: 560px;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #222;
}

.hp-brand-banner__sub1,
.hp-brand-banner__sub2 {
    margin: 0;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.hp-brand-banner__sub1 {
    margin-top: 6px;
}

.hp-brand-banner__desc {
    margin: 10px 0 0;
    max-width: 520px;
    font-size: 13px;
    line-height: 2;
    color: #555;
    text-align: left;
}

.hp-cta {
    background: #fff;
    padding: 0 0 80px;
}

.hp-cta__title {
    margin: 0 0 20px;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
}

.hp-cta__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hp-cta__card {
    min-height: 200px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform .2s, box-shadow .2s;
}

.hp-cta__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.hp-cta__card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hp-hero__content {
        gap: 20px;
    }

    .hp-hero__text,
    .hp-hero__image {
        min-height: 360px;
    }

    .hp-hero__title {
        font-size: 28px;
    }

    .hp-catblock {
        grid-template-columns: 240px 1fr;
    }

    .hp-catblock--reverse {
        grid-template-columns: 1fr 240px;
    }

    .hp-brand-banner {
        padding: 52px 0;
    }

    .hp-brand-banner__inner {
        gap: 28px;
        padding: 0 28px;
    }

    .hp-brand-banner__image,
    .hp-brand-banner__text {
        min-height: 340px;
    }

    .hp-brand-banner__title {
        font-size: 26px;
    }

}

@media (max-width: 768px) {
    .hp-container {
        padding: 0 16px;
    }

    .hp-hero {
        padding: 20px 0 50px;
    }

    .hp-hero__content {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 16px;
    }

    .hp-hero__text {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 22px;
    }

    .hp-hero__title {
        font-size: 24px;
    }

    .hp-hero__image {
        min-height: 240px;
        border-radius: 22px;
    }

    .hp-cat-nav {
        height: 60px;
    }

    .hp-cat-nav__menu > li > a {
        min-width: 130px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hp-intro {
        padding: 50px 0;
    }

    .hp-intro__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hp-intro__image {
        min-height: 220px;
    }

    .hp-section__title,
    .hp-section__title--center {
        font-size: 22px;
    }

    .hp-categories,
    .hp-featured,
    .hp-brands,
    .hp-related,
    .hp-cta {
        padding-bottom: 50px;
    }

    .hp-catblock,
    .hp-catblock--reverse {
        grid-template-columns: 1fr;
    }

    .hp-catblock {
        border-radius: 20px;
    }

    .hp-catblock__banner {
        aspect-ratio: auto;
        min-height: 280px;
    }

    .hp-catblock__banner img {
        position: static;
        height: auto;
    }

    .hp-catblock__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hp-product-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-product-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-brands__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-brand-banner {
        margin: 0 0 50px;
        padding: 50px 0;
    }

    .hp-brand-banner__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .hp-brand-banner__image,
    .hp-brand-banner__text {
        min-height: auto;
    }

    .hp-brand-banner__image {
        aspect-ratio: 16 / 11;
    }

    .hp-brand-banner__image img {
        max-height: none;
    }

    .hp-brand-banner__text {
        padding: 16px 0 0;
        gap: 14px;
    }

    .hp-brand-banner__title {
        font-size: 22px;
    }

    .hp-brand-banner__sub1,
    .hp-brand-banner__sub2 {
        font-size: 14px;
    }

    .hp-brand-banner__desc {
        font-size: 12px;
        line-height: 1.9;
    }

    .hp-cta__cards {
        grid-template-columns: 1fr;
    }

    .hp-cta__card {
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .hp-hero__text {
        padding: 22px 18px;
    }

    .hp-hero__title {
        font-size: 20px;
    }

    .hp-hero__image {
        min-height: 200px;
    }

    .hp-catblock__grid,
    .hp-product-grid--4,
    .hp-product-grid--3,
    .hp-brands__grid {
        grid-template-columns: 1fr;
    }
}
