.elementor-2372 .elementor-element.elementor-element-9abf481{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-426ada4 *//* 1. Global Reset */
body {
    margin: 0;
    padding: 0;
    background-color: #080808;
    font-family: 'Arial Black', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.main-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. Desktop Side-by-Side Layout */
.product-wrapper {
    display: flex;
    flex-direction: row; /* Desktop: side-by-side */
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1500px; /* Depth for 3D touch */
}

/* 3. Real 3D Card */
.product-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 24px;
    flex: 1; 
    max-width: 400px;
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #222; /* Gap fix */
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 15px 15px 30px #000, -2px -2px 10px rgba(255,255,255,0.05);
}

/* 3D Slide Up & Tilt */
.product-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 25px 25px 50px #000, -4px -4px 15px rgba(255,255,255,0.08);
}

/* 3D Touch Press */
.product-card:active {
    transform: translateY(5px) scale(0.96);
    box-shadow: inset 10px 10px 20px #000, inset -2px -2px 10px rgba(255,255,255,0.02);
    transition: all 0.1s ease;
}

.img-box {
    width: 100%;
    background: #ffffff;
    line-height: 0;
    border-bottom: 2px solid #111;
}

.img-box img {
    width: 100%;
    height: auto;
}

/* 4. Content Area */
.content-area {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #FFFFFF !important;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
}

.product-price {
    color: #FFFFFF !important;
    font-size: 38px;
    font-weight: 900;
    margin: 15px 0;
}

.promo-text {
    color: #00FF00;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 25px;
}

/* 5. 3D Instructions */
.easter-info {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 25px;
    padding: 18px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 800;
    border: 2px solid;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.2);
}

.note-red { background: linear-gradient(135deg, #900, #f00); border-color: #ff4444; color: #fff; }
.note-blue { background: linear-gradient(135deg, #0044aa, #0077ff); border-color: #44aaff; color: #fff; }

.buy-now-btn {
    display: block;
    background: #FFFFFF;
    color: #000000 !important;
    width: 100%;
    padding: 20px 0;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 17px;
    border-radius: 10px;
    margin-top: auto;
    box-shadow: 0 5px 0 #bbb;
    transition: all 0.2s ease;
}

.buy-now-btn:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #888;
}

/* --- 6. MOBILE RESPONSIVE ENGINE --- */
@media (max-width: 850px) {
    .product-wrapper {
        flex-direction: column; /* Stacks cards vertically */
        align-items: center;
        gap: 40px;
        padding: 40px 15px;
    }

    .product-card {
        width: 100%;
        max-width: 100%; /* Card takes full width of phone */
        transform: none; /* Reset tilt for better mobile viewing */
    }

    .product-price {
        font-size: 32px; /* Slightly smaller text for small screens */
    }

    /* Mobile specific touch adjustment */
    .product-card:hover {
        transform: translateY(-5px); /* Less aggressive lift on mobile */
    }
}/* End custom CSS */