/* =====================================================
   BH HERO SECTION — Modern E-Commerce Hero
   ===================================================== */

/* ---- Section wrapper ---- */
.bh-hero-section {
    position: relative;
    overflow: hidden;
}

/* ---- Swiper container ---- */
.bh-hero-swiper {
    height: 90vh;
    min-height: 580px;
    max-height: 920px;
}

/* ---- Slide ---- */
.bh-hero-slide {
    position: relative;
    overflow: hidden;
}

/* ---- Background image ---- */
.bh-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bh-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.07);
    transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.bh-hero-swiper .swiper-slide-active .bh-hero-bg img {
    transform: scale(1);
}

/* ---- Overlay gradient ---- */
.bh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(12, 10, 8, 0.78) 0%,
        rgba(12, 10, 8, 0.45) 50%,
        rgba(12, 10, 8, 0.12) 100%
    );
}

/* Center-aligned slides get a darker centered gradient */
.bh-hero-slide[data-align="center"] .bh-hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(12, 10, 8, 0.20) 0%,
        rgba(12, 10, 8, 0.65) 60%,
        rgba(12, 10, 8, 0.80) 100%
    );
}

/* ---- Content layer ---- */
.bh-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
}

/* ---- Inner text box ---- */
.bh-hero-inner {
    max-width: 640px;
}

.bh-hero-inner.bh-align-center {
    text-align: center;
    margin: 0 auto;
}

.bh-hero-inner.bh-align-center .bh-hero-sub {
    margin-left: auto;
    margin-right: auto;
}

.bh-hero-inner.bh-align-center .bh-hero-actions {
    justify-content: center;
}

/* ---- Eyebrow badge ---- */
.bh-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e8c98a;
    background: rgba(232, 201, 138, 0.10);
    border: 1px solid rgba(232, 201, 138, 0.35);
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 22px;

    /* enter animation */
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease 0.05s, transform 0.55s ease 0.05s;
}

.bh-hero-eyebrow::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e8c98a;
    flex-shrink: 0;
    animation: bhEyebrowPulse 2s ease-in-out infinite;
}

@keyframes bhEyebrowPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.bh-hero-swiper .swiper-slide-active .bh-hero-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Heading ---- */
.bh-hero-heading {
    font-size: clamp(36px, 5.2vw, 70px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 20px;

    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease 0.22s, transform 0.65s ease 0.22s;
}

.bh-hero-swiper .swiper-slide-active .bh-hero-heading {
    opacity: 1;
    transform: translateY(0);
}

/* Accent span in heading */
.bh-hero-heading .bh-accent {
    color: #c9974a;
    display: block;
}

/* ---- Subheading ---- */
.bh-hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 38px;
    max-width: 460px;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease 0.38s, transform 0.65s ease 0.38s;
}

.bh-hero-swiper .swiper-slide-active .bh-hero-sub {
    opacity: 1;
    transform: translateY(0);
}

/* ---- CTA buttons ---- */
.bh-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease 0.52s, transform 0.65s ease 0.52s;
}

.bh-hero-swiper .swiper-slide-active .bh-hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.bh-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.bh-btn-hero--primary {
    background: #c9974a;
    color: #ffffff;
    border-color: #c9974a;
}

.bh-btn-hero--primary:hover {
    background: #b5813a;
    border-color: #b5813a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 151, 74, 0.40);
}

.bh-btn-hero--outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

.bh-btn-hero--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.80);
    color: #ffffff;
    transform: translateY(-2px);
}

.bh-btn-hero svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.bh-btn-hero:hover svg {
    transform: translateX(3px);
}

/* ---- Navigation arrows ---- */
.bh-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.22s ease;
    padding: 0;
    outline: none;
}

.bh-hero-nav:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-50%) scale(1.08);
}

.bh-hero-nav-prev { left: 24px; }
.bh-hero-nav-next { right: 24px; }

/* ---- Pagination dots ---- */
.bh-hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}

.bh-hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bh-hero-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: #c9974a;
}

/* ---- Scroll indicator ---- */
.bh-hero-scroll {
    position: absolute;
    bottom: 28px;
    right: 36px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bh-hero-scroll-line {
    width: 1.5px;
    height: 46px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
    animation: bhScrollLine 1.8s ease-in-out infinite;
    transform-origin: top;
}

@keyframes bhScrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    49%  { transform: scaleY(1); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Trust badges strip below hero ---- */
.bh-hero-trust {
    background: #1a1612;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bh-hero-trust-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bh-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.70);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.bh-hero-trust-item svg {
    color: #c9974a;
    flex-shrink: 0;
}

/* ---- Mobile ---- */
@media (max-width: 991px) {
    .bh-hero-swiper {
        height: 78vh;
        min-height: 480px;
    }
    .bh-hero-scroll { display: none; }
}

@media (max-width: 767px) {
    .bh-hero-swiper {
        height: 72vh;
        min-height: 440px;
    }
    .bh-hero-nav { display: none; }
    .bh-hero-sub { font-size: 14px; margin-bottom: 28px; }
    .bh-btn-hero { padding: 11px 22px; font-size: 13px; }
    .bh-hero-trust-list { gap: 18px; }
    .bh-hero-trust-item { font-size: 11.5px; }
}
