/* Home Page CTA Banner Section */

.home-cta-banner {
    position: relative;
    width: 100%;
    min-height: 648px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Gradient Overlay */
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44));
    overflow: hidden;
    padding: 60px 20px;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
}

/* Heading Wrapper (Component 176) */
.cta-banner-heading-wrapper {
    position: relative;
    width: 458px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Big Heading "Jewellery" */
.cta-banner-heading h2 {
    font-family: 'Expert 2.0', serif;
    font-size: 170px !important;
    font-weight: 400;
    line-height: 242px;
    color: #FFFFFF;
    margin: 0;
    text-transform: capitalize;
    position: relative;
    top: 3.2%;
    z-index: 2;
}

/* Subtext */
.cta-banner-text p {
font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 458px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

/* Shop Now Button (Sliding Animation Logic) */
.home-cta-banner .cta-banner-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    gap: 8px;
    background: #FFFFFF !important;
    border: 1px solid #000000 !important;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.home-cta-banner .cta-banner-button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #000000;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.home-cta-banner .cta-banner-button:hover::after {
    width: 100%;
}

.home-cta-banner .cta-banner-button span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    color: #000000 !important;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 10;
    transition: color 0.4s ease;
}

.home-cta-banner .cta-banner-button svg {
    width: 22px !important;
    height: auto;
    position: relative;
    z-index: 10;
}

.home-cta-banner .cta-banner-button svg path {
    stroke: #000000 !important;
    transition: stroke 0.4s ease;
}

/* Hover States for Content */
.home-cta-banner .cta-banner-button:hover span {
    color: #FFFFFF !important;
}

.home-cta-banner .cta-banner-button:hover svg path {
    stroke: #FFFFFF !important;
}

/* Responsive Scaling & Refinements */
@media (max-width: 1440px) {
    .cta-banner-heading h2 {
        font-size: 160px !important;
        line-height: 1.1;
    }
    .cta-banner-heading-wrapper {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1100px) {
    .home-cta-banner {
        min-height: 500px;
    }
    .cta-banner-heading h2 {
        font-size: 120px !important;
    }
    .cta-banner-text p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .home-cta-banner {
        min-height: 450px;
        padding: 50px 20px;
    }
    .cta-banner-heading h2 {
        font-size: 80px !important;
    }
    .cta-banner-text p {
        font-size: 18px;
        line-height: 26px;
    }
    .home-cta-banner .cta-banner-button {
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .home-cta-banner {
        min-height: 400px;
    }
    .cta-banner-heading h2 {
        font-size: 50px;
    }
    .cta-banner-text p {
        font-size: 16px;
        line-height: 24px;
        padding: 0 10px;
    }
    .home-cta-banner .cta-banner-button span {
        font-size: 13px;
    }
}
