/* 
 * Ethical Jewellery Section V2 - Optimized
 * Performance: Cleaned media queries and merged redundant selectors.
 */
:root {
    --cj-ethical-v2-bg: #f2f2f2;
    --cj-ethical-v2-text-grey: #666666;
    --cj-ethical-v2-black: #000000;
    --cj-ethical-v2-font-the-seasons: 'Montserrat', sans-serif;
    --cj-ethical-v2-font-expert: 'Expert 2.0', cursive;
    --cj-ethical-v2-font-main: 'Montserrat', sans-serif;
}

.ethical-jewellery-v2 {
    background: var(--cj-ethical-v2-bg);
    width: 100%;
    min-height: 797px;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
}

.ethical-v2-container {
    height: 100%;
    margin: 0 auto;
    position: relative;
}

/* --- Media Elements (Shared Properties) --- */
.ethical-v2-main-img,
.video-box {
    background: #D9D9D9;
    overflow: hidden;
    position: absolute;
}

.ethical-v2-main-img video,
.video-box video,
.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Desktop Specific Placement --- */
.ethical-v2-main-img {
    width: 589px;
    height: 654px;

}

.video-box.small {
width: 287px;
    height: 363px;
    top: 0;
    right: 50px;
}

.video-box.medium {
right: 0;
    top: 416px;
    width: 374px;
    height: 245px;
}

/* --- Content Styling --- */
.ethical-v2-content {
    position: absolute;
    width: 656px;
    left: 710px;
    top: 68px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    z-index: 5;
}

.ethical-v2-content .top-heading {
line-height: 1.2;
    color: #232323;
    font-size: 28px;
    margin: 0;
    font-weight: normal;
    text-align: center;
    font-family: 'Montserrat';
    margin-bottom: 30px;
    font-style: italic;
}

.ethical-v2-content .main-title {
text-transform: lowercase;
    font-size: 170px;
    font-family: 'Expert 2.0';
    color: #000;
    margin: 10px 0;
}

.ethical-v2-content .description {
    width: 100%;
    max-width: 520px;
    font-family: var(--cj-ethical-v2-font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--cj-ethical-v2-text-grey);
    padding-bottom: 20px;
}

/* --- Button Component --- */
.shop-now-btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 146px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--cj-ethical-v2-black);
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shop-now-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--cj-ethical-v2-black);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.shop-now-btn:hover::after {
    width: 100%;
}

.shop-now-btn span,
.shop-now-btn svg {
    position: relative;
    z-index: 10;
    color: var(--cj-ethical-v2-black);
    transition: color 0.4s ease;
}

.shop-now-btn span {
    font-family: var(--cj-ethical-v2-font-main);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
}

.shop-now-btn svg {
    margin-left: 6px;
}

.shop-now-btn:hover span,
.shop-now-btn:hover svg {
    color: #fff;
}

/* --- RESPONSIVE OPTIMIZATION --- */

@media (max-width: 1600px) {
    .ethical-v2-main-img {
        width: 450px;
    }

    .ethical-v2-content {
        left: 510px;
        width: 476px;
    }

    .ethical-v2-content .main-title {
        font-size: 120px;
        line-height: 1.1;
    }

    .video-box.small {
right: 30px;
    }

    .video-box.medium {
      right: -10px;
    }
}
@media (max-width: 1399px) {
    .video-box.small {
        right: 20px;
    }
    .video-box.medium{right: 0px;width: 324px;}
    .ethical-v2-content{
        width: 416px;}
}
/* Shared Mobile/Tablet Layout (Below 1440px) */
@media (max-width: 1340px) {
    .ethical-jewellery-v2{padding: 60px 20px;}
    .video-box.small {right: 0;}
    .video-box.medium{width: 284px;}
    .ethical-v2-content .main-title{font-size: 100px;}
    .ethical-v2-content {width: 366px;}
}

@media (max-width: 1240px) {
    .ethical-jewellery-v2 {
        padding-bottom: 60px;
    }

    .ethical-v2-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }


.ethical-v2-content{left: 490px;}
    .ethical-v2-content {

    }

    .ethical-v2-content .main-title {
        font-size: 110px;
        line-height: 1.1;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .ethical-v2-content .main-title {
        font-size: 100px;
    }

.ethical-v2-main-img, .video-box{position: unset;}
.ethical-v2-container{display: block;}
.ethical-v2-main-img { width: 50%;}
.ethical-v2-content{width: 50%;left: unset; right: -40px;}
.ethical-v2-content .main-title{margin: unset;}
    .video-box.medium {
        width: 50%;
        margin: auto;
        margin-top: 50px; height: auto;
    }
        .video-box.small {
        width: 50%;
        margin: auto;
        margin-top: 40px;  height: 600px;
    }

    .ethical-v2-content .top-heading {
        font-size: 26px;
    }
}
@media (max-width: 991px) {
        .ethical-v2-main-img {
        width: 100%;
    }
    .ethical-v2-content{position: unset; width: 100%; padding: 30px;}
    .video-box.medium{padding: 20px;
        background: unset; width: 100%;}
}
@media (max-width: 767px) {
     .ethical-v2-main-img{height: 514px;}
    .video-box.medium{margin-top: 0; padding-bottom: 0;}
    .ethical-jewellery-v2 {
        padding: 0;
    }
    .video-box.small {
        height: 510px ! IMPORTANT;
        width: 100%;
        padding: 0 20px;
        background: unset; 
    }
    .ethical-v2-content {
        gap: 15px; padding-bottom: 0;
    } 

    .ethical-v2-content .top-heading {
        font-size: 20px;
        padding: 0 10px; margin: 0;
    }

    .ethical-v2-content .main-title {
        font-size: 15vw !important;
        line-height: 1.8 !important;
        display: block !important; padding-left: 20px;
    }

    .ethical-v2-content .description {
        font-size: 15px;
        line-height: 1.5;
        padding: 0px;
    }

    .video-box {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .ethical-v2-content .top-heading {
        font-size: 18px;
    }

    .ethical-v2-content .main-title {
        font-size: 14vw !important;
        line-height: 1.85 !important;
    }

    .ethical-v2-content .description {
        font-size: 14px;
    }
}