/* ========================================
   CUSTOM HERO SECTION - PURE BOTANICALS
   Based on Reference Design
   ======================================== */

/* Hero Container */
.custom-hero-section {
    position: relative;
    width: 100%;
    height: 100vh !important;
    /* Reduced from 700px to further reduce zoom */
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slide */
.custom-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.custom-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Dark Overlay for Text Readability */
.custom-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Hero Content Container */
.custom-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

/* NEW ARRIVALS Label */
.custom-hero-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #CDBA98;
    margin-bottom: 20px;
    display: block;
}

/* Pure Botanicals Heading */
.custom-hero-title {
    font-family: var(--font-heading);
    /* Use Serif font for premium look */
    font-size: 84px;
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

/* Description Text */
.custom-hero-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 450px;
    letter-spacing: 0.02em;
}

/* SHOP NOW Button - Premium Solid Style */
.custom-hero-button {
    display: inline-block;
    padding: 10px 0;
    /* Reduced vertical padding for border-bottom style */
    background-color: transparent;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border-bottom: 1px solid #FFFFFF;
}

.custom-hero-button:hover {
    color: #cccccc;
    border-bottom-color: #cccccc;
    transform: translateY(-1px);
}

/* Slider Navigation Dots */
.custom-hero-dots {
    position: absolute;
    bottom: 50px;
    left: 80px;
    z-index: 3;
    display: flex;
    gap: 15px;
    align-items: center;
}

.custom-hero-dot {
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-hero-dot.active {
    background-color: #FFFFFF;
    width: 50px;
}

/* Slider Arrows */
.custom-hero-arrows {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.custom-hero-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.custom-hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #cccccc;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-hero-section {
        height: 500px;
    }

    .custom-hero-content {
        padding: 0 30px;
    }

    .custom-hero-title {
        font-size: 48px;
    }

    .custom-hero-description {
        font-size: 14px;
    }

    .custom-hero-dots,
    .custom-hero-arrows {
        left: 30px;
        right: 30px;
    }
}

@media (max-width: 480px) {
    .custom-hero-section {
        height: 400px;
    }

    .custom-hero-content {
        padding: 0 20px;
    }

    .custom-hero-title {
        font-size: 36px;
    }

    .custom-hero-label {
        font-size: 10px;
    }

    .custom-hero-button {
        padding: 12px 30px;
        font-size: 10px;
    }

    .custom-hero-dots {
        bottom: 20px;
        left: 20px;
    }

    .custom-hero-arrows {
        bottom: 20px;
        right: 20px;
    }

    .custom-hero-arrow {
        width: 35px;
        height: 35px;
    }
}