    body {
        margin: 0;
    }

    :root {
        --Geotrek-Cream: #E7E2D9;
        --Geo-near-white: #F6F3EE;
        --Geo-Dark-Gray: #343434;
        --Geotrek-Dark-Orange: #C7520C;
        --Geo-white: #FFFFFF;
        --Geo-black : #000000;

    }
    

    .main-inner-body {
        background: var(--Geotrek-Cream);
        font-family: Inter, sans-serif;
    }
    .fixed-height-box{
        height: 100vh;
        overflow: auto;
    }
    .container.tabs-container{
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }
    .single-page-template.main-inner-body .container{
        padding: 0 20px;
        max-width: 1480px !important;
        width: 100% !important;
    }
    .option-addons-div{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 16px;
    }
    
    
    .single-addon-card{
        
    }

    .wrapper {
        padding: 20px
    }

    .main-inner-content {
        height: calc(100vh - 130px);
    }

    .panel {
        border-radius: 8px;
        height: 100%
    }

    .left-panel {
        background: var(--Geo-near-white);
        padding: 0;
        display: flex;
        align-items: center;
        padding: 24px 32px;
        height: 100%;
    }

    .right-panel {
        background: var(--Geo-white);
        padding: 0 !important;
        height: 100%;
        overflow: auto;
        border-radius: 8px;
        padding-inline: 0px;
        anchor-name: --footer-button;
    }

    .right-panel::-webkit-scrollbar {
        display: none;
    }

    .right-panel .modal-header {
        padding: 24px 32px 16px;
        position: sticky;
        top: 0;
        width: 100%;
        background: var(--Geo-white);
        border-bottom: 1px solid var(--Geo-Dark-Gray);
        z-index: 99;
    }

    .right-panel .inner-section {
        padding: 16px 32px 115px;
        z-index: 9;
    }

    .right-panel h5 {
        font-size: 22px;
        line-height: 28px;
        font-weight: 700;
        color: var(--Geo-Dark-Gray);
        margin: 0;
    }
    .modal-header .modal-price {
        font-size: 18px;
        line-height: 28px;
        font-weight: 700;
        color: var(--Geo-Dark-Gray);
        margin: 0;
    }

    .left-panel img {
        width: 100%;
        border-radius: 14px;
        max-height: 400px;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 0.5px solid #666;
    }


    .price {
        font-size: 18px;
        font-weight: 700;
        color: var(--Geo-Dark-Gray);
        line-height: 18px;
    }

    .modal-addon-tabs {
        display: flex;
        gap: 8px;
        background: var(--Geo-near-white);
        padding: 6px 7px;
        border-radius: 50px;
        margin: 0 auto 0;
        width: max-content;
    }

    .modal-addon-tabs button {
        border: none;
        background: transparent;
        padding: 12px 21px;
        border-radius: 50px;
        font-size: 16px;
        color: var(--Geo-Dark-Gray);
    }

    .modal-addon-tabs button.active {
        background: var(--Geo-Dark-Gray);
        color: var(--Geo-white);
    }
    .section-group{
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--Geo-Dark-Gray);
    }

    .option-card {
        border: 2px solid var(--Geo-white);
        border-radius: 8px;
        padding: 32px;
        cursor: pointer;
        background: var(--Geo-near-white);
        transition: .2s;
        height: 100%;
        position: relative;
    }

    .option-card img {
        width: 100%;

    }
    .option-card .addon-price{
        font-size: 14px;
        font-weight: 400;
    }
    .option-card .add-btn{
        font-size: 12px;
        font-weight: 400;
        text-decoration: none;
        padding: 6px 11px;
        color: var(--Geo-Dark-Gray);
        border: 1px solid var(--Geo-Dark-Gray);
        border-radius: 4px;
    }

    .option-card.active {
        border: 2px solid var(--Geo-Dark-Gray);
    }

    .option-card.active:before {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        background: url('../images/select-tick-icon.svg');
        background-size: 100% 100%;
        top: 14px;
        right: 14px;
    }

    .option-title {
        font-size: 18px;
        font-weight: 700;
        margin-top: 16px;
        color: var(--Geo-Dark-Gray);
    }

    .option-price {
        font-size: 12px;
        color: var(--Geo-Dark-Gray);
        display: none;
    }

    .option-description ul {
        padding: 0 0 0 16px;
    }

    .option-description ul li {
        font-size: 14px;
        font-weight: 500;
        margin-top: 16px;
        line-height: 14px;
        color: var(--Geo-Dark-Gray);
        margin-top: 5px;
    }

    .color-card {
        border: 2px solid var(--Geo-white);
        border-radius: 6px;
        padding: 10px 6px;
        cursor: pointer;
        background: var(--Geo-near-white);
        transition: .2s;
        height: 100%;
        position: relative;
    }

    .color-card img {
        width: 100%;
        height: 135px;
        border-radius: 4px;

    }

    .color-card.active {
        border: 2px solid var(--Geo-Dark-Gray)
    }

    .color-card.active:before {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        background: url('../images/select-tick-icon.svg');
        background-size: 100% 100%;
        top: 19px;
        right: 19px;
    }

    .color-card .option-title {
        margin-top: 4px;
        font-size: 14px;
    }

    /* Addons Card  */

    .addon-card {
        border: 2px solid var(--Geo-white);
        border-radius: 6px;
        padding: 6px;
        cursor: pointer;
        background: var(--Geo-near-white);
        transition: .2s;
        height: 100%;
        position: relative;
    }

    .addon-card img {
        width: 100%;
        height: 135px;
        object-fit: cover;
        border-radius: 4px;

    }
    .single-addon-card .addon-price {
        font-size: 14px;
        font-weight: 400;
    }
    .single-addon-card .add-btn {
        font-size: 12px;
        font-weight: 400;
        color: var(--Geo-Dark-Gray);
        padding: 2px 11px;
        border: 1px solid  var(--Geo-Dark-Gray);
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.5s ease;
    }
    .single-addon-card .add-btn:hover,
    .single-addon-card .addon-card.added .add-btn{
        background:  var(--Geo-Dark-Gray);
        color: var(--Geo-white);
        transition: all 0.5s ease;
    }
    .single-addon-card .learn-more{
        color: var(--Geo-Dark-Gray);
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 8px
    }
    .single-addon-card .learn-more:hover{
        text-decoration: underline;
    }

    
    .addon-card.added {
        border: 2px solid var(--Geo-Dark-Gray);
    }

    .addon-card.active:before {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        background: url('../images/select-tick-icon.svg');
        background-size: 100% 100%;
        top: 19px;
        right: 19px;
    }

    .addon-card .option-title {
        margin-top: 4px;
        font-size: 14px;
    }


    .footer {
        display: flex;
        justify-content: end;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 24px;
        background: var(--Geo-white);
        position-anchor: --footer-button;
        bottom: anchor(bottom);
        left: anchor(left);
        right: anchor(right);
        border-radius: 0 0 8px 8px;
    }

    .options-addon {
        display: flex;
        padding: 0;
        gap: 16px;
        list-style: none;
        margin: 0;
    }

    .options-addon a.active {
        font-weight: 700;
    }

    .options-addon a {
        text-decoration: none;
        color: var(--Geo-Dark-Gray);
        font-size: 16px;
        line-height: 28px;
        font-weight: 400;
    }

    .btn-next {
        background: var(--Geo-Dark-Gray);
        color: var(--Geo-white);
        border: none;
        padding: 10px 10px 10px 20px;
        border-radius: 6px;
    }

    .btn-next img {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }

    .summary-box {
        background: #fafafa;
        border-radius: 12px;
        padding: 15px
    }

    .summary-item {
        font-size: 13px;
        margin-bottom: 6px
    }

    .summary-title {
        font-weight: 600;
        margin-bottom: 10px
    }

    .total {
        font-weight: 600;
        font-size: 16px
    }



    .add-btn {
        cursor: pointer;
    }

    /* summary-page */
    .detail-summary-product-box{
        background: var(--Geo-white);
        border-radius: 8px;
    }
    .detail-summary-product-box-top{
        padding: 10px 32px;
        max-height: 770px;
    }
    .detail-summary-product-box-top .modal-product-title{
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        color: var(--Geo-Dark-Gray);
    }
    .detail-summary-product-box-top .modal-product-description{
        font-size: 14px;
        font-weight: 500;
        margin: 0;
        color: var(--Geo-Dark-Gray);
    }
    .detail-summary-product-box-middle{
        padding: 0px 32px 10px;
        max-height: 277px;
        overflow: auto;
    }
    .detail-summary-product-box-middle::-webkit-scrollbar{
        display: none;
    }
    .detail-summary-product-box-bottom{
        padding: 24px 32px 40px;
    }
    .detail-summary-product-box-bottom .pdf-download-box{
        display: flex;
        justify-content: center;
        margin-top: 37px;
    }
    .detail-summary-product-box-bottom .pdf-download-box a{
        font-size: 14px;
        line-height: 24px;
        color: var(--Geo-black);
        text-decoration: underline;
    }

    .summary-item {
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }

    .summary-header {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        align-items: end;
    }

    .summary-header small {
       font-size:14px;
       font-weight: 500;
       color: var(--Geo-Dark-Gray);
    }
    .summary-header h6,.summary-header strong,.summary-total h5{
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        letter-spacing: 0;
        text-transform: capitalize;
    }

    .summary-body {
        display: none;
        padding-top: 10px;
    }

    .summary-body ul {
        padding-left: 18px;
    }
    .detail-summary-product-box hr{
        margin: 0;
    }
@media (max-width:992px){
    .option-addons-div{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width:767px){
    .main-inner-body{
        padding-bottom: 40px;
        padding-inline: 10px;
    }
    .fixed-height-box{
        height: auto;
    }
    .main-inner-content{
        height: auto;
    }
    .left-panel{
        height: 240px;
    }
    .modal-addon-tabs{
        padding: 0;
        background: none;
    }
    .modal-addon-tabs button{
        font-size: 14px;
        line-height: 33px;
        padding: 2px 15px;
    }
    .right-panel .modal-header{
        padding: 16px;
    }
    .right-panel .inner-section{
        padding: 16px 16px 118px 16px;
    }
    .footer{
        background: none;
        padding: 0 0 20px 0;
        justify-content: center;
    }
    .btn-next{
        width: 234px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .main-inner-content {
        height: unset;
    }
    .option-addons-div{
        grid-template-columns: 1fr 1fr;
    }
    .options-addon li {
        width: max-content;
    }
    .option-tags{
        padding: 8px 16px;
        border-bottom: 1px solid black;
        overflow:auto;
    }
    .option-tags::-webkit-scrollbar{
        display: none;
    }
}
