@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=VT323&display=swap');

:root { 
    --font-head: 'VT323', monospace; 
    --font-body: 'Inter', sans-serif; 
    --c-cyan: #00bcd4; 
    --c-magenta: #e91e63; 
    --c-yellow: #ffeb3b; 
    --c-dark: #121212; 
    --c-light: #ffffff; 
    --c-gray: #f4f4f5; 
    --border-thick: 3px solid var(--c-dark); 
    --shadow-hard: 6px 6px 0px var(--c-dark); 
}

html { scroll-behavior: smooth; }

body { 
    font-family: var(--font-body); 
    font-size: 1rem; 
    line-height: 1.6; 
    margin: 0; 
    background: var(--c-gray); 
    color: var(--c-dark); 
}

h1, h2, h3, .logo { font-family: var(--font-head); text-transform: uppercase; }

/* --- BREADCRUMBS --- */
.breadcrumbs {
    max-width: 1100px;
    margin: 20px auto 0;
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666;
}
.breadcrumbs a { color: #666; text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--c-magenta); text-decoration: underline; }
.breadcrumbs span { color: var(--c-dark); font-weight: 800; }

.announcement-bar { 
    background: var(--c-yellow); 
    color: var(--c-dark); 
    text-align: center; 
    padding: 8px; 
    font-family: var(--font-head); 
    font-size: 1.2rem; 
    border-bottom: var(--border-thick); 
    letter-spacing: 1px; 
}

/* --- FIXED NAVBAR --- */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: var(--c-light); 
    padding: 0 2rem; 
    border-bottom: var(--border-thick); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    height: 90px; 
    overflow: visible; 
}

.logo { 
    position: relative;
    width: 300px; 
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    text-decoration: none;
}

.logo img { 
    position: absolute; 
    height: 300px;      
    width: auto;        
    top: 50%;
    transform: translateY(-50%); 
    left: 0;
    z-index: 2000; 
}

.nav-links { list-style: none; display: flex; gap: 30px; padding: 0; margin: 0; }

.nav-links a { 
    color: var(--c-dark); 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    position: relative; 
    transition: color 0.2s; 
}

.nav-links a:hover { color: var(--c-magenta); }

.page-container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }

/* --- HERO SLIDER --- */
.hero-slider-container { position: relative; overflow: hidden; background: var(--c-dark); border-bottom: var(--border-thick); }
.hero-slider { display: flex; transition: transform 0.5s ease-in-out; }
.slide { 
    min-width: 100%; 
    min-height: 500px; 
    box-sizing: border-box; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--c-light); 
    padding: 2rem;
    background-image: radial-gradient(#333 1px, transparent 1px); 
    background-size: 20px 20px; 
}
.slide h1 { font-size: 4.5rem; margin: 0; line-height: 1; text-shadow: 4px 4px 0 var(--c-magenta); }
.slide p { font-size: 1.2rem; margin-top: 1rem; opacity: 0.9; max-width: 600px; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); color: white; border: none; font-size: 2rem; padding: 10px 20px; cursor: pointer; z-index: 10; transition: 0.2s; }
.slider-btn:hover { background: rgba(255,255,255,0.4); }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* --- STATIC HERO (REDUCED SIZE) --- */
.hero { 
    text-align: center; 
    min-height: 350px; /* REDUCED from 500px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--c-dark); 
    color: var(--c-light); 
    border-bottom: var(--border-thick); 
    background-image: radial-gradient(#333 1px, transparent 1px); 
    background-size: 20px 20px; 
}

.hero h1 { 
    font-size: 4.5rem; 
    margin: 0; 
    line-height: 1; 
    text-shadow: 4px 4px 0 var(--c-magenta); 
}

.hero p { 
    font-size: 1.2rem; 
    margin-top: 1rem; 
    opacity: 0.9; 
    font-family: var(--font-body); 
    max-width: 600px; 
}

.hero-btn { 
    display: inline-block; 
    margin-top: 30px; 
    padding: 15px 40px; 
    background: var(--c-magenta); 
    color: white; 
    font-family: var(--font-head); 
    font-size: 1.5rem; 
    text-decoration: none; 
    border: 3px solid white; 
    box-shadow: 5px 5px 0px var(--c-cyan); 
    transition: transform 0.2s; 
}

.hero-btn:hover { 
    transform: scale(1.05); 
    box-shadow: 8px 8px 0px var(--c-cyan); 
}

.why-us { padding: 4rem 1rem; background: #e0f7fa; border-bottom: var(--border-thick); }
.why-header { text-align: center; margin-bottom: 3rem; }
.why-header h2 { font-size: 3rem; margin: 0; color: var(--c-dark); }

.tech-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    max-width: 1300px; 
    margin: 0 auto; 
}

@media (max-width: 900px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tech-grid { grid-template-columns: 1fr; } }

.tech-card { 
    background: white; 
    border: var(--border-thick); 
    padding: 25px; 
    position: relative; 
    box-shadow: var(--shadow-hard); 
    text-align: center; 
    height: 100%; 
}

.tech-card h3 { 
    font-size: 1.8rem; 
    color: var(--c-magenta); 
    margin-top: 10px; 
    line-height: 1.1; 
}

.tech-icon { 
    width: 80px; 
    height: 80px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: visible;
}

.tech-icon img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    transform: scale(1.5); 
    transform-origin: center;
}

.scan-line { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 5px; 
    background: var(--c-cyan); 
    opacity: 0.5; 
    animation: scan 3s linear infinite; 
    box-shadow: 0 0 10px var(--c-cyan); 
}

@keyframes scan { 
    0% { top: 0; } 
    100% { top: calc(100% - 5px); } 
}

.gallery-container { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

.product-card { 
    background: var(--c-light); 
    border: var(--border-thick); 
    box-shadow: var(--shadow-hard); 
    transition: transform 0.2s, box-shadow 0.2s; 
    border-radius: 8px; 
    display: flex; 
    flex-direction: column; 
    position: relative; 
}

.product-card:hover { 
    transform: translate(-4px, -4px); 
    box-shadow: 10px 10px 0px var(--c-magenta); 
}

.img-placeholder, .vehicle-img-wrapper { 
    height: 250px; 
    background: transparent; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-bottom: var(--border-thick); 
    position: relative; 
    overflow: hidden; 
}

.img-placeholder img, .vehicle-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
}

.img-placeholder img.foamboard-img { --base-scale: 1.1; }

.card-content { padding: 25px; text-align: left; flex: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: 1.8rem; margin: 0 0 10px 0; }
.card-content p { margin: 0 0 20px 0; font-size: 0.95rem; color: #555; flex-grow: 1; }

.product-page-wrapper { 
    display: flex; 
    flex-wrap: wrap; 
    max-width: 1100px; 
    margin: 40px auto; 
    background: var(--c-light); 
    border: var(--border-thick); 
    box-shadow: var(--shadow-hard); 
    border-radius: 12px; 
    align-items: flex-start !important; 
}

.viz-side { 
    flex: 1; 
    min-width: 350px; 
    background: #f0f2f5; 
    padding: 40px; 
    border-right: var(--border-thick); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-end; 
    position: -webkit-sticky !important; 
    position: sticky !important; 
    bottom: 20px !important; 
    align-self: flex-end !important; 
    height: fit-content !important; 
    z-index: 10; 
}

.form-side { flex: 1; min-width: 350px; padding: 40px; display: flex; flex-direction: column; }

/* --- CONTACT & ABOUT STYLES --- */
.split-layout { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.split-layout .info-panel { flex: 1; min-width: 350px; background: white; padding: 30px; border: var(--border-thick); box-shadow: var(--shadow-hard); border-radius: 8px; }

.contact-grid { display: flex; flex-direction: column; gap: 20px; padding: 20px 0; }
.contact-item { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    background: #f5f5f5; 
    padding: 20px; 
    border: 2px solid #ddd; 
    border-radius: 8px; 
    transition: 0.2s; 
}

.contact-item:hover { 
    transform: translateX(10px); 
    border-color: var(--c-cyan); 
    background: white; 
    box-shadow: 5px 5px 0 var(--c-dark); 
}

.contact-icon { 
    width: 80px; 
    height: 80px; 
    flex-shrink: 0; 
    border: 2px solid var(--c-dark); 
    background: white; 
    border-radius: 50%; 
    padding: 10px; 
    box-sizing: border-box; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img { width: 100%; height: 100%; object-fit: contain; transform: none; }

.text-block { 
    padding: 40px; 
    font-size: 1.1rem; 
    color: #333; 
    background: white; 
    border: var(--border-thick); 
    box-shadow: var(--shadow-hard); 
    border-radius: 8px;
    margin-bottom: 30px;
}
.text-block p { margin-bottom: 25px; }
.text-block h2 { margin-top: 0; color: var(--c-dark); }

/* --- VISUALIZER & FORMS --- */
.viz-stage { 
    width: 100%; 
    height: 500px; 
    background: white; 
    border: var(--border-thick); 
    border-radius: 8px; 
    display: flex; 
    justify-content: center; 
    align-items: flex-end; 
    position: relative; 
    background-image: linear-gradient(#e5e5e5 1px, transparent 1px), linear-gradient(90deg, #e5e5e5 1px, transparent 1px); 
    background-size: 20px 20px; 
    overflow: visible !important; 
}

.product-rect { 
    background: rgba(0, 188, 212, 0.8); 
    border: 3px solid var(--c-cyan); 
    position: relative; 
    z-index: 2; 
    box-shadow: 5px 5px 0 rgba(0,0,0,0.1); 
    transition: all 0.5s ease-out; 
}

.human-silhouette { 
    position: absolute; 
    bottom: 0; 
    left: 20px; 
    fill: #333; 
    opacity: 0.3; 
    z-index: 1; 
    transition: height 0.5s ease-out; 
}

.form-group { margin-bottom: 1.5rem; }
label { display: block; font-weight: 700; margin-bottom: 0.5rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
input, select, textarea { width: 100%; padding: 12px 15px; border: 2px solid #ddd; border-radius: 6px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; box-sizing: border-box; transition: border-color 0.2s; }
input.invalid { border-color: var(--c-magenta); background-color: #ffebee; }

.limit-warning { display: none; color: #d32f2f; font-weight: 800; font-size: 0.9rem; margin-top: 5px; padding: 8px; background: #ffebee; border-left: 4px solid #d32f2f; }

.price-display { text-align: center; background: var(--c-dark); color: var(--c-yellow); border-radius: 8px; padding: 1.5rem; margin-bottom: 1rem; margin-top: auto; }
.price-tag { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; font-size: 3.5rem; margin: 0; line-height: 1; }

.submit-btn, .btn-select { 
    display: inline-block; 
    width: 100%; 
    padding: 16px; 
    background: var(--c-magenta); 
    color: white; 
    border: var(--border-thick); 
    border-radius: 8px; 
    box-shadow: 4px 4px 0 var(--c-dark); 
    cursor: pointer; 
    font-family: var(--font-body); 
    font-weight: 800; 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    text-decoration: none; 
    text-align: center; 
    box-sizing: border-box; 
}

.submit-btn:disabled { background: #ccc; cursor: not-allowed; box-shadow: none; transform: none; }

input[type="file"] { background: #e3f2fd; border: 2px dashed var(--c-cyan); padding: 10px; cursor: pointer; }
.file-success-msg { display: none; margin-top: 8px; color: #2e7d32; font-weight: 800; font-size: 0.9rem; padding: 8px; border-radius: 4px; background: #e8f5e9; border: 1px solid #2e7d32; }
.design-options { display: none; background: #e3f2fd; padding: 15px; margin-bottom: 20px; border: 2px solid var(--c-cyan); border-radius: 6px; }
.file-instruction { display: none; margin-top: 10px; color: #d32f2f; font-weight: bold; font-size: 0.9rem; background: #ffebee; padding: 10px; border: 1px solid #ffcdd2; border-radius: 4px; }

.radio-group, .checkbox-wrapper { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; min-height: 30px; }
.radio-group input, .checkbox-wrapper input { width: 20px; height: 20px; margin: 0; accent-color: var(--c-cyan); flex-shrink: 0; }

.cart-notification { 
    position: fixed; 
    top: 110px; 
    right: 20px; 
    width: 320px; 
    background: var(--c-light); 
    border: var(--border-thick); 
    box-shadow: var(--shadow-hard); 
    padding: 20px; 
    z-index: 2000; 
    border-radius: 8px; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s ease-in-out; 
}
.cart-notification.active { opacity: 1; visibility: visible; }

.mini-cart-btn { display: inline-block; width: auto; min-width: 150px; background: var(--c-dark); color: var(--c-yellow); text-align: center; padding: 10px; text-decoration: none; font-weight: bold; text-transform: uppercase; border-radius: 4px; }

table { width: 100%; border-collapse: collapse; margin-bottom: 20px; border: 2px solid #333; }
th { background: #333; color: white; padding: 12px; border: 1px solid #555; text-transform: uppercase; font-family: var(--font-head); letter-spacing: 1px; }
td { padding: 12px; border: 1px solid #ccc; font-size: 0.95rem; }
tr:nth-child(even) { background-color: #f9f9f9; }

.visual-selector { display: flex; gap: 15px; margin-top: 5px; }
.viz-option input { display: none; }
.viz-box { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100px; height: 90px; border: 2px solid #ccc; border-radius: 8px; cursor: pointer; background: #fff; transition: 0.2s; color: #777; }
.viz-box svg { margin-bottom: 5px; }
.viz-option input:checked + .viz-box { border-color: var(--c-magenta); background: #fce4ec; color: var(--c-magenta); box-shadow: 4px 4px 0 var(--c-dark); }

.info-box { margin-top: 20px; padding: 15px; border-radius: 6px; font-size: 0.9rem; }
.guide-box { background: #e3f2fd; border: 2px solid #2196f3; color: #0d47a1; }
.guide-box ul { padding-left: 20px; margin: 5px 0 0 0; }
.guide-box li { margin-bottom: 6px; }
.dim-limits { font-size: 0.8rem; color: #666; margin-top: 2px; font-weight: bold; }

#rush-disclaimer ul { margin: 5px 0 0 0; padding-left: 20px; }
#rush-disclaimer li { margin-bottom: 4px; }

.viz-side h3 { margin-bottom: 10px; }
.desc-box { background: #fff; border: 1px solid #ccc; padding: 15px; border-radius: 6px; margin-bottom: 20px; font-size: 0.9rem; line-height: 1.4; color: #444; }
.desc-box h4 { margin-top: 0; margin-bottom: 5px; color: #222; }

.tiling-info-box { background: #e8f5e9; padding: 10px; border-radius: 4px; border-left: 3px solid #2e7d32; font-size: 0.85rem; color: #1b5e20; margin-bottom: 10px; }
.tiling-info-box h5 { margin: 0 0 5px 0; font-weight: bold; }
.tiling-calc-info { margin-top: 10px; background: #e3f2fd; color: #0d47a1; padding: 8px; border-radius: 4px; font-size: 0.85rem; text-align: center; border: 1px solid #bbdefb; }

/* --- COMING SOON OVERLAY --- */
.coming-soon-wrapper {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.coming-soon-wrapper::after {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background: rgba(233, 30, 99, 0.3); 
    color: white;
    padding: 2px 10px;
    font-weight: bold;
    font-family: var(--font-head);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
    z-index: 10;
    white-space: nowrap;
    backdrop-filter: none;
}

/* --- PRODUCT CARD ZOOM --- */
.img-placeholder {
    overflow: hidden;
    position: relative;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15); 
    transition: transform 0.5s ease;
}

.product-card:hover .img-placeholder img {
    transform: scale(1.25);
}

/* --- FINAL MOBILE RESPONSIVENESS FIXES (v4) --- */

/* 1. Global Safety */
body {
    overflow-x: clip; 
}

/* 2. Mobile Layout Adjustments (Under 800px) */
@media screen and (max-width: 800px) {
    
    /* --- HEADER FIX --- */
    .navbar {
        flex-direction: column;
        height: auto !important;
        padding: 10px !important;
        position: relative;
    }
    .logo {
        width: 100% !important;
        height: 100px !important;
        justify-content: center;
        margin-bottom: 5px;
    }
    .logo img {
        position: relative !important;
        height: 130px !important; 
        transform: none !important;
        top: auto !important;
        margin-top: -25px;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px !important;
        margin-top: 5px;
    }

    /* --- CONTAINER FLOW --- */
    .product-page-wrapper, .split-layout {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .viz-side, .form-side, .info-panel {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 20px 10px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* --- INPUTS & TEXT --- */
    input, select, textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
    }

    .radio-group, .checkbox-wrapper {
        display: flex !important;
        width: 100% !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        text-align: left;
        margin-bottom: 8px !important;
    }
    
    .radio-group input, .checkbox-wrapper input {
        margin-top: 3px !important;
        margin-right: 8px !important;
        flex-shrink: 0;
        width: auto !important; /* Prevents checkbox stretching */
    }

    /* --- VISUALIZER SCALE FIX --- */
    .viz-stage {
        width: 100% !important;
        height: 350px !important; /* Set fixed stage height */
        display: flex;
        justify-content: center;
        align-items: flex-end;
        overflow: hidden;
        position: relative;
        background-color: #f9f9f9;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }

    /* CALIBRATION: 
       If Stage (350px) = approx 2.0m space.
       Then Human (1.7m) should be ~85-90% of Stage.
       This ensures 1.2m (A0) calculates to ~60% height, landing at chest level.
    */
    .human-silhouette {
        height: 90% !important; 
        width: auto !important;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.25;
    }

    /* Force the blue box to anchor bottom-center */
    .product-rect {
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important; /* Reset any JS margins */
        z-index: 2;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
}

/* =================================================== */
/* 📱 MOBILE OPTIMIZATION V7 (THE NUCLEAR OPTION)      */
/* =================================================== */
@media (max-width: 768px) {

    /* 1. THE BULLETPROOF 2-COLUMN GRID */
    .product-grid, .products-grid { 
        display: grid !important;
        /* minmax(0, 1fr) forces the grid to ignore child widths and strictly split 50/50 */
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
        gap: 10px !important;
        padding: 10px !important;
    }
    
    .product-card {
        width: 100% !important; 
        min-width: 0 !important; /* Annihilates the 300px desktop rule */
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .img-placeholder { height: 130px !important; }
    .card-content { padding: 12px !important; }
    .product-card h3 { font-size: 1.05rem !important; margin: 0 0 5px 0 !important; line-height: 1.2 !important; }
    .product-card p { font-size: 0.8rem !important; margin: 0 0 10px 0 !important; line-height: 1.3 !important; }

    /* 2. THE BULLETPROOF STACKING */
    .split-layout {
        display: flex !important;
        flex-direction: column !important; /* Default: Stacks normally (Profile Details on top) */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Target EVERY child inside the split layout and force them to shrink */
    .split-layout > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important; /* Annihilates the 350px desktop rule */
        margin: 0 0 20px 0 !important;
        box-sizing: border-box !important;
    }

    /* CHECKOUT OVERRIDE: Uses the custom HTML class you will add in Step 2 */
    .mobile-checkout-flip {
        flex-direction: column-reverse !important; 
    }

    /* 3. VISUALIZER (Unchanged - Working perfectly) */
    .viz-stage {
        position: relative !important; 
        width: 100% !important;
        height: 350px !important;
        transition: box-shadow 0.3s ease, border-radius 0.3s ease !important;
        background: #f9f9f9 !important;
        z-index: 9999 !important;
        touch-action: none; 
    }
    
    .viz-stage.pip-mode {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        transform-origin: bottom right !important; 
        box-shadow: -10px 10px 30px rgba(0,0,0,0.5) !important;
        border: 4px solid var(--c-cyan) !important;
        border-radius: 20px !important; 
    }

    /* 4. Ensure Tables stay swipeable */
    table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch; 
        width: 100%;
    }

    /* FORCE PROFILE TO STACK (Overrides the inline HTML grid) */
    .mobile-profile-stack {
        display: flex !important;
        flex-direction: column !important; 
    }

    /* CHECKOUT: Normal Flow (Pushes content down, no sticky overlap) */
    .mobile-checkout-flip {
        flex-direction: column-reverse !important; 
    }
    .mobile-checkout-flip .info-panel {
        position: static !important; /* Forces normal block flow */
        height: auto !important;
        max-height: none !important;
    }
}