.home-pro {
    --hp-primary: #75c10a;
    --hp-primary-dark: #66aa09;
    --hp-accent: #75c10a;
    --hp-bg: #060606;
    --hp-surface: #111111;
    --hp-border: #252525;
    --hp-text: #f5f5f5;
    --hp-muted: #b6b6b6;
    background: var(--hp-bg);
    color: var(--hp-text);
    padding-bottom: 2rem;
    overflow-x: hidden;
}

.home-pro .container {
    max-width: 1280px;
}

.hp-section {
    padding: 2.3rem 0;
}

.hp-section-alt {
    background: #0c0c0c;
    border-top: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
}

.hp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}

.hp-section-head h2 {
    margin: 0;
    font-size: 1.65rem;
    color: var(--hp-text);
}

.hp-section-head a {
    color: var(--hp-primary);
    font-weight: 600;
}

.hp-hero {
    padding: 1.3rem 0 2rem;
}

.hp-hero-slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 400px;
    background: #eadbcf;
}

.hp-slide {
    display: none;
    position: relative;
}

.hp-slide.active {
    display: block;
}

/* Anchor crop to top so heads, artwork & headline art in the banner aren’t clipped */
.hp-slide img {
    display: block;
    width: 100%;
    height: clamp(400px, 48vw, 600px);
    object-fit: cover;
    object-position: center top;
}

.hp-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(47, 36, 28, 0.7) 20%, rgba(47, 36, 28, 0.15) 70%);
}

.hp-slide-content {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    max-width: 560px;
    color: #fff;
    z-index: 2;
}

.hp-kicker {
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #f4ddbc;
}

.hp-slide-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hp-slide-content p {
    margin-bottom: 0;
}

.hp-btn {
    margin-top: 1rem;
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
}

.hp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--hp-primary-dark);
    z-index: 3;
}

.hp-prev {
    left: 1rem;
}

.hp-next {
    right: 1rem;
}

.hp-trust-row {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hp-trust-row > div {
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--hp-muted);
    padding: 0.7rem 0.5rem;
}

.hp-trust-row i {
    color: var(--hp-primary);
}

/* —— Shop by Category (showcase) —— */
.hp-cat-showcase {
    position: relative;
    padding-top: 2.75rem;
    padding-bottom: 3rem;
}

.hp-cat-showcase::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(72rem, 100vw);
    height: 100%;
    
    border-radius: 0 0 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.hp-cat-showcase .container {
    position: relative;
    z-index: 1;
}

.hp-cat-showcase__intro {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.35rem;
    border: 1px solid rgba(117, 193, 10, 0.22);
    border-radius: 18px;
    background: #0f0f0f;
    padding: 1.15rem 1.3rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hp-cat-showcase__intro-text {
    max-width: 36rem;
}

.hp-cat-showcase__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hp-primary);
}

.hp-cat-showcase__intro h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--hp-text);
}

.hp-cat-showcase__lede {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--hp-muted);
}

.hp-cat-showcase__all {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--hp-primary) 0%, var(--hp-primary-dark) 100%);
    box-shadow: 0 6px 20px rgba(117, 193, 10, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.hp-cat-showcase__all:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(117, 193, 10, 0.35);
}

.hp-cat-showcase__all i {
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.hp-cat-showcase__all:hover i {
    transform: translateX(4px);
}

.hp-cat-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    width: 100%;
}

.hp-cat-tile {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 3 / 4.1;
    text-decoration: none;
    color: inherit;
    background: #121212;
    border: 1px solid rgba(117, 193, 10, 0.2);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.2),
        0 16px 36px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.hp-cat-tile:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 28px 48px rgba(117, 193, 10, 0.16);
}

.hp-cat-tile:focus-visible {
    outline: 3px solid var(--hp-primary);
    outline-offset: 4px;
}

.hp-cat-tile__media {
    position: absolute;
    inset: 0;
}

.hp-cat-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.001);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-cat-tile:hover .hp-cat-tile__media img,
.hp-cat-tile:focus-visible .hp-cat-tile__media img {
    transform: scale(1.07);
}

.hp-cat-tile__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(26, 20, 16, 0) 0%,
        rgba(26, 20, 16, 0.03) 38%,
        rgba(26, 20, 16, 0.55) 72%,
        rgba(26, 20, 16, 0.88) 100%
    );
    transition: opacity 0.35s ease;
}

.hp-cat-tile:hover .hp-cat-tile__overlay,
.hp-cat-tile:focus-visible .hp-cat-tile__overlay {
    opacity: 0.94;
    background: linear-gradient(
        180deg,
        rgba(26, 20, 16, 0) 0%,
        rgba(26, 20, 16, 0.08) 40%,
        rgba(26, 20, 16, 0.65) 75%,
        rgba(47, 36, 28, 0.92) 100%
    );
}

.hp-cat-tile__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.15rem 1.2rem 1.25rem;
}

.hp-cat-tile__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.2rem;
}

.hp-cat-tile__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hp-cat-tile__desc {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hp-cat-tile__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 248, 240, 0.95);
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, color 0.25s ease;
}

.hp-cat-tile__cta i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.hp-cat-tile:hover .hp-cat-tile__cta,
.hp-cat-tile:focus-visible .hp-cat-tile__cta {
    color: #fff;
}

.hp-cat-tile:hover .hp-cat-tile__cta i,
.hp-cat-tile:focus-visible .hp-cat-tile__cta i {
    transform: translateX(5px);
}

.hp-product-card {
    display: block;
    border-radius: 14px;
    border: 1px solid var(--hp-border);
    background: var(--hp-surface);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 22px rgba(141, 95, 53, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(141, 95, 53, 0.14);
}

.hp-product-thumb {
    height: 320px;
    overflow: hidden;
    background: #f5ede4;
}

.hp-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-product-content {
    padding: 0.95rem 0.8rem 1rem;
}

.hp-product-content h4 {
    font-size: 0.96rem;
    margin-bottom: 0.45rem;
    color: var(--hp-text);
    min-height: 44px;
}

.hp-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hp-price {
    color: var(--hp-primary-dark);
    font-weight: 700;
}

.hp-old-price {
    color: #9b8d81;
    text-decoration: line-through;
    font-size: 0.92rem;
}

.hp-banner-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.hp-banner-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.hp-banner-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 1.1rem;
    background: linear-gradient(to top, rgba(47, 36, 28, 0.85), rgba(47, 36, 28, 0.1));
    color: #fff;
}

.hp-banner-overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
}

.hp-banner-overlay p {
    margin: 0.2rem 0 0;
}

.hp-testimonial {
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: 14px;
    padding: 1rem;
    height: 100%;
}

.hp-testi-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.65rem;
}

.hp-testi-top img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e7d8ca;
}

.hp-testi-top h5 {
    margin: 0;
    font-size: 1rem;
}

.hp-stars {
    color: #915250;
}

.hp-testimonial p {
    margin: 0;
    color: var(--hp-muted);
}

.hp-testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 0 4px 36px;
}

.hp-testi-track {
    display: flex;
    transition: transform 0.4s ease;
}

.hp-testi-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 8px;
}

.hp-testi-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--hp-border);
    background: #fff;
    color: var(--hp-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hp-testi-prev {
    left: 0;
}

.hp-testi-next {
    right: 0;
}

.hp-testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.hp-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #d7c4b0;
}

.hp-testi-dot.active {
    background: var(--hp-primary);
}

.hp-newsletter {
    padding: 1rem 0 2rem;
}

.hp-newsletter-card {
    border-radius: 18px;
    padding: 1.4rem 1.2rem;
    border: 1px solid var(--hp-border);
    background: linear-gradient(120deg, #141414 0%, #101010 55%, #181818 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hp-newsletter-card h2 {
    margin: 0;
    font-size: 1.7rem;
    color: #ffffff;
}

.hp-newsletter-card p {
    margin: 0.3rem 0 0;
    color: #c7c7c7;
}

.hp-empty {
    border: 1px dashed var(--hp-border);
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: var(--hp-muted);
}

.hp-pagination .pagination {
    margin-top: 1rem;
    justify-content: center;
}

@media (max-width: 1199px) {
    .hp-cat-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .hp-cat-tile {
        aspect-ratio: 3 / 3.75;
    }
}

@media (max-width: 991px) {
    .hp-slide img {
        height: clamp(380px, 52vw, 520px);
        object-position: center top;
    }

    .hp-slide-content {
        left: 1.1rem;
        right: 1.1rem;
        bottom: 1.2rem;
    }

    .hp-slide-content h1 {
        font-size: 1.7rem;
    }

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

    .hp-product-thumb {
        height: 280px;
    }

    .hp-testi-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    .home-pro {
        overflow-x: hidden;
    }

    .home-pro .container,
    .home-pro .hp-hero-slider,
    .home-pro .hp-testimonial-slider,
    .home-pro .hp-newsletter-card,
    .home-pro .hp-banner-card {
        max-width: 100%;
    }

    .home-pro .row {
        margin-left: 0;
        margin-right: 0;
    }

    .home-pro [class*="col-"] {
        padding-left: 6px;
        padding-right: 6px;
    }

    .hp-section {
        padding: 1.6rem 0;
    }

    .hp-section-head h2 {
        font-size: 1.25rem;
    }

    .hp-cat-showcase {
        padding-top: 2rem;
        padding-bottom: 2.25rem;
    }

    .hp-cat-showcase__intro {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1.5rem;
        padding-bottom: 1.1rem;
    }

    .hp-cat-showcase__all {
        align-self: flex-start;
    }

    .hp-cat-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .hp-cat-tile {
        aspect-ratio: 3 / 3.55;
        border-radius: 18px;
    }

    .hp-cat-tile__content {
        padding: 0.95rem 1rem 1.05rem;
    }

    .hp-cat-tile__desc {
        -webkit-line-clamp: 2;
        font-size: 0.74rem;
        margin-bottom: 0.5rem;
    }

    .hp-slide img {
        height: clamp(300px, 58vw, 440px);
        object-position: center top;
    }

    .hp-slide-content h1 {
        font-size: 1.35rem;
    }

    .hp-slide-content p {
        font-size: 0.9rem;
    }

    .hp-slide-content {
        max-width: calc(100% - 2.2rem);
    }

    .hp-product-thumb {
        height: 220px;
    }

    .hp-testi-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hp-testi-arrow {
        display: none !important;
    }

    .hp-newsletter-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hp-newsletter-card h2 {
        font-size: 1.3rem;
    }
}
