/* ========================================================================= */
/* --- SECTION THREE: PRODUCT DETAILS --- */
/* ========================================================================= */
.sec-three {
    height: auto;
}

/* --- SECTION THREE LAYOUT --- */
.sec-three-layout {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    padding: 10vh 4vw;
    box-sizing: border-box;
    gap: 4vw;
}

.left-hero-image {
    flex: 0 0 50%;
    height: auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.left-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.left-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Single shadow to avoid banding, but extending further inward */
    box-shadow: inset 0 0 10vw 4vw #212020;
    pointer-events: none;
}

.right-vertical-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 1vw;
}

.connecting-line {
    flex: 1;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    /* Indent slightly to align with item padding */
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.intro-map {
    font-family: 'Nohemi', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2vh;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.right-vertical-stack::-webkit-scrollbar {
    width: 6px;
}

.right-vertical-stack::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
}

.stack-item {
    background-color: #d90429;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10000;
    padding: 4vh 2vw;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Nohemi', sans-serif;
    transition: background-color 0.3s ease;
    font-size: 1.2rem;
}

#stack-item1 {
    height: 30vh;
}

#stack-item2 {
    color: #F44D10;
    background: #212020;
    z-index: 3;
}

.product-image {
    width: 45vw;
    height: 120vh;
    background: url('../assets/7b56b699-031c-4954-95a6-ecf1e4536eeb-Photoroom (1) (1)-Photoroom.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20vh;
    z-index: 10000;
}
