.luxury-banner {
    position: relative;
    min-height: 100vh;
    /* background: linear-gradient(140deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%); */
    /* padding: 2rem 0; */
    overflow: hidden;
}
@media (max-width:425px){
    .luxury-banner{
        padding: 0;
    }
}
.luxury-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(139, 133, 137, 0.03) 50%, rgba(139, 133, 137, 0.1) 100%);
    transform: translateX(10%) skewX(-15deg);
    z-index: 1;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
}
@media (max-width:991px){
    .banner-container{
        padding: 30px 20px;
    }
}
.content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content {
    max-width: 580px;
}

.elegant-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}
@media (max-width:991px){
    .elegant-label{
        margin-bottom: 15px;
    }
}
.main-heading {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards;
}
@media (max-width:991px){
    .description{
        margin-bottom: 25px;
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
}
@media (max-width:991px){
    .stats-grid{
        margin-bottom: 25px;
    }
}
.stat-box {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    display: block;
}


.cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards;
}

.primary-btn {
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    text-wrap-mode: nowrap;
}

.primary-btn:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.video-btn {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    text-wrap-mode: nowrap;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.video-btn:hover {
    color: var(--text-color);
}

.video-btn:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.visual-side {
    position: relative;
}

.image-gallery {
    position: relative;
    transform: translateX(50px);
    opacity: 0;
    animation: fadeInRight 0.8s 0.6s forwards;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-main:hover .main-image {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s 1s forwards;
}

.card-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: bold;
}

.gallery-strip {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.strip-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.strip-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.strip-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.scroll-prompt {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s 1.2s forwards;
}

.prompt-text {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    animation: scrollDown 1.5s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 1200px) {
    .main-heading {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-group {
        justify-content: center;
    }

    .image-gallery {
        max-width: 700px;
        margin: 0 auto;
    }
}
@media (max-width:991px){
    .main-heading{
        font-size: 35px;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn, .video-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width:767px){
    .main-heading{
        font-size: 35px;
    }
    .primary-btn, .video-btn{
        width: 45%;
    }
}
@media (max-width: 576px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .floating-card {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}
@media (max-width:543px){
    .main-heading{
        font-size:25px;
        margin-bottom: 15px;
    }
    .primary-btn, .video-btn{
        width: 65%;
    }
}
@media (max-width:375px){
    .main-heading{
        font-size: 20px;
    }
    .primary-btn, .video-btn{
        width: 100%;
    }
    .description{
        font-size: 15px;
    }
}
@media (max-width:325px){
    .main-heading{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .description{
        font-size: 15px;
    }
   
}
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.close-modal {
    position: absolute;
    right: 0;
    top: -40px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Counter Animation Styles */
.stat-number {
    display: inline-block;
}

.stat-plus {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
}
@media(max-width: 1199px){
    .stat-plus, .stat-number{
        font-size: 21px;
    }
}

@media (max-width: 767.5px){
    .product-title{
        font-size: 15px;
    }
    .regular-price{
        font-size: 15px;
    }
    .old-price{
        font-size: 14px;
    }
}