.overlay[hidden] { display: none; }
.overlay { display: flex; /* layout when shown */ }
.body-locked { overflow: hidden; }
#featured-overlay video {
  -webkit-playsinline: true;
  touch-action: none;
  pointer-events: none;
  user-select: none;
    &::-webkit-media-controls {
    display: none !important;
  }
}
#featured-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: none;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            font: normal 1.125rem/1.5rem Roboto;
        }
        .overlay::after {
            content:"";
            background-color: #00000050;
            opacity: 100%;
            position: fixed;
            top:0;
            bottom: 0;
            left:0;
            right: 0;
            opacity: 0.5;
            z-index: 0;
        }
        .overlay .popup {
            position: relative;
            width: 90vw;
            max-width: 1200px;
            background: #111;
            overflow: hidden;
            animation: slideIn 0.3s ease-out;
            z-index: 9;
        }
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .overlay .close-btn {
            position: absolute;
            top: 0px;
            right: 0px;
            width: 50px;
            height: 50px;
            background: transparent;
            color: #44d62c;
            border-radius: 50%;
            border:none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s ease;
            z-index: 100;
        }
        .overlay .close-btn:hover {
            transform: rotate(90deg);
        }
        .overlay .content {
            display: flex;
            height: 100%;
        }
        .overlay .left-section {
            flex: 500px 1 1;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }
        .overlay .left-section > img, .overlay .left-section > video {
            position: relative;
            z-index: 2;
            height: 100%;
            max-width: -webkit-fill-available;
            object-fit: cover;
            object-position: center center;
            width: 100%;
        }
        .overlay .right-section {
            flex: 700px 1 1;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }
        .overlay .header {
            color: #44d62c;
            font: 700 3rem/1 "Titillium Web",RazerF5,Arial,Helvetica,sans-serif;
            margin-top:0.5rem;
        }
        .overlay .subhead {
            font: normal 1.5rem/1.2 Roboto;
            margin-bottom: 2rem;
            color: #9a9a9a;
            text-transform: uppercase;
        }
        .overlay .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .overlay .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        .overlay .feature-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        .overlay .feature-text {
            flex: 1;
        }
        .overlay .feature-title {
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 5px;
        }
        .overlay .color-options {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 30px;
        }
        .overlay .color-option {
            position: relative;
            width: 80px;
            height: 30px;
            border-radius: 3px;
            border: 1px solid #3b3b3b;
        }
        .overlay .color-black-green {
            background: linear-gradient(160deg, #000000 50%, #44d62c 50%);
        }
        .overlay .color-black {
            background: #000;
        }
        .overlay .color-dark-gray {
            background: #333333;
        }
        .overlay .color-label {
            position: absolute;
            bottom: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 12px;
            color: #fff;
            white-space: nowrap;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            #featured-overlay {
                align-items: flex-start;
                overflow-y: auto;
            }
            .overlay .popup {
                width: 90vw;
                margin:10vh auto;
                overflow-y: auto;
            }
            .overlay .content {
                flex-direction: column;
                overflow-y: auto;
                /*max-height: 100vh;*/
            }
            .overlay .right-section {
                padding:2rem 1rem;
                flex:auto;
            }
            .overlay .left-section {
                flex:auto;
                height: 300px;
                min-height: auto;
            }
            .overlay .left-section > img,
            .overlay .left-section > video{
                position: relative;
                z-index: 2;
                height: 100%;
                max-width: -webkit-fill-available;
            }
        }
        /* Responsive Design */
        @media (max-width: 480px) {
            .overlay .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
 @media screen and (max-width:767px){} @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px), screen and (min-width: 768px) and (max-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px){}