/* ==========================================================
   OOTACAMUND'S Core V6
   Master Layout
========================================================== */

body{

    margin:0;
    padding:0;

    font-family:Arial,sans-serif;

    background:#f5f5f5;

}

/* Main Product Wrapper */

.oota-product-layout{

    max-width:1400px;

    margin:40px auto;

    display:grid;

    grid-template-columns:60% 40%;

    gap:40px;

    align-items:start;

    padding:20px;

}

/* LEFT COLUMN */

.oota-left-column{

    display:flex;

    flex-direction:column;

    gap:30px;

}

/* RIGHT COLUMN */

.oota-right-column{

    display:flex;

    flex-direction:column;

    gap:25px;

}

/* FULL WIDTH AREA */

.oota-full-width-sections{

    max-width:1400px;

    margin:0 auto;

    padding:0 20px 60px;

}

.oota-full-width-sections > *{

    margin-bottom:35px;

}

/* Sticky Gallery */

.oota-left-column{

    position:sticky;

    top:20px;

    align-self:start;

}

/* Mobile */

@media(max-width:991px){

    .oota-product-layout{

        grid-template-columns:1fr;

    }

    .oota-left-column{

        position:relative;

        top:auto;

    }

}