#section1{
    color: #fff;
    background-color: #000;
}
#section2{
    color: #000;
}
.title-right{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;

    padding-right: 16px;
}
.title-left{
    padding-left: 16px;
}

#section2 .container{
    width: 100vw;
    height: 100vh;

    display: flex;
    overflow-y: hidden;
}
#section2 .container .col1, #section2 .container .col2{
    flex: 1;
}
#section2 .container .col1{
    /* background: radial-gradient(50% 50% at 50% 50%, #FFE5B7 0%, #FFFFFF 100%);  */
    background-color: #3c3c3c;
}
#section2 .container .col2{
    /* background: radial-gradient(50% 50% at 50% 50%, #4D3E15 0%, #261F0B 43.7%, #000000 100%); */
    /* background-color: #000; */

    background-color: #2b2b2b;
}
#section2 .container .col1, #section2 .container .col2{
    padding-top: 11svh;
    padding-left: 30px;
    padding-right: 30px;
}

#section2 .container .title{
    text-align: left;
}
#section2 .title .underline {
  height: 1px;
  width: 30%;

  margin-top: 6px;

  background: linear-gradient(90deg, #FFAC59 49.47%, #855F39);
  opacity: 0.8;
}

#section2 .container {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: 0;  /* Firefox */
}
.products::-webkit-scrollbar { 
    width: 0;
}

#section2 .container .title h1{
  line-height: 1.1;
  /* background-image: linear-gradient(88.61deg, #855F39 9.56%, #FFAC59 59.84%); */
  background-image: linear-gradient(88.61deg, #FFAC59 9.56%, #855F39 59.84%);

  color: transparent;
  background-clip: text;

  font-style: italic;
  font-family: 'Gilda', serif;

  font-size: 30px;

  font-weight: 500;
}

#section2 .container .products{
    margin-top: 26px;

    gap: 12px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

#section2 .container .products .card{
    /* width: 210px; */
    height: 225px;

    background-color: #535353;
    border: 1px solid #FFAC59;

    position: relative;

    min-width: 130px;
    max-width: 210px;

    cursor: pointer;
}

#section2 .container .products .card:hover .content{
    color: #FFAC59;
}

#section2 .container .products .card:hover .product-number{
    color: #FFAC59;
}

#section2 .container .products .card .img{
    width: 100%;
    height: 120px;
}
#section2 .container .products .card .img img{
    width: 100%;
    height: 100%;

    /* object-fit: cover; */
}
#section2 .container .products .card .content{
    font-family: 'Montserrat';
    text-align: left;

    padding: 10px;
    font-size: 14px;
    font-weight: 500;

    color: rgb(255, 255, 255);
}
#section2 .container .products .card .content .checkbox-wrapper{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute;
    bottom: 10px;
}

#section2 .container .contact{
    text-align: left;

    padding: 20px;
    border: 1px solid #FFAC59;

    grid-column: 1 / 3;
}

#section2 .container .contact .contact-title{
    text-align: left;
}

#section2 .container .contact .contact-title p{
    font-family: 'Gilda', serif;
    font-size: 22px;

    /* background-image: linear-gradient(88.61deg, #855F39 9.56%, #FFAC59 59.84%); */
    background-image: linear-gradient(88.61deg, #f3e1cf 9.56%, #ffac59 59.84%);

    color: transparent;
    background-clip: text;


    font-weight: 500;
}


.contact-title span{
    font-style: italic;
}

#section2 .container .contact input{
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px;

    font-size: 16px;

    margin-top: 30px;

    font-family: 'Montserrat', sans-serif;
}

#section2 .container .contact button{
    margin-top: 20px;

    background: linear-gradient(81.46deg, #855F39 -34.49%, #FFAC59 41.99%);
    font-size: 16px;
    font-weight: 400;

    padding: 12px 18px;
    color: #fff;

    border: none;
    outline: none;

    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

#section2 .container .info{
    text-align: left;

    padding: 16px 20px 16px 36px;
    border: 1px solid #FFAC59;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;

    color: #fff;

    grid-column: 3 / 5;
}
#section2 .container .info li{
    padding-bottom: 3px;
}
.highlight{
    color: #FFAC59;
}

/* Checkbox styling */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #434343;
    /* border: 1px solid #ccc; */

    border: 1px solid rgb(161 161 161);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: #C88A4B;
    border: 1px solid #C88A4B;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 30%;
    top: 20%;

    transform: translate(-50%, -50%);
    width: 4px;
    height: 8px;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-color: white;
    border-style: solid;
}

.product-number{
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 28px;
}

.checked{
    background-color: transparent;
}

.empty-container-flex{
    background-color: #535353;
}

.contact-mobile{
    display: none;
}
.info-mobile{
    display: none;
}


@media screen and (max-width: 1780px){
    #section2 .container .info{
        font-size: 12px;
    }
}

@media screen and (max-width: 1536px){
    #section2 .container .products .card .content{
        padding: 10px;
        font-size: 12px;
    }
    #section2 .container .products .card .img{
        width: 100%;
        height: 80px;
    } 
    #section2 .container .products .card{
        height: 190px;
    }
    #section2 .container .info{
        font-size: 11px;
    }
    .product-number {
        font-size: 18px;
    }
    input[type="checkbox"]{
        width: 14px;
        height: 14px;
    }
    input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        left: 30%;
        top: 10%;
        width: 3px;
    }
    #section2 .container .contact .contact-title p{
        font-size: 18px;
    }
    #section2 .container .contact input {
        margin-top: 18px;
    }
    #section2 .container .contact button {
        margin-top: 16px;
    }
    #section2 .container .info {
        padding: 10px 14px 10px 22px;
    }
    #section2 .container .products .card .content .checkbox-wrapper {
        width: 85%;
    }
}

@media screen and (max-width: 1400px){
    #section2 .container .products .card{
        height: 140px;
    }
    #section2 .container .products .card .content{
        padding: 8px;
        font-size: 9px;
        font-weight: 400;
    }
   #section2 .container .info {
        font-size: 9px;
    }
    #section2 .container .contact input {
        font-size: 10px;
    }
    #section2 .container .contact button {
        font-size: 12px;
        font-weight: 400;
        padding: 8px 14px;
    }
    .product-number {
        font-size: 13px;
    }
    #section2 .container .products .card .content .checkbox-wrapper{
        bottom: 6px;
    }
    #section2 .container .title h1 {
        font-size: 24px;
    }
    #section2 .container .contact {
        padding: 12px;
    }
    #section2 .container .contact .contact-title p {
        font-size: 14px;
    }
    #section2 .container .contact input {
        padding: 6px;
    }
    #section2 .container .contact button {
        font-size: 10px;
    }
}

@media screen and (max-width: 1200px){
  #section2{
    background-color: #3c3c3c;
  }
  #section2 .container {
    flex-direction: column;
  }
  #section2 .container .contact, #section2 .container .info {
    display: none;
  }
  #section2 .container .products {
    display: flex;
    overflow-x: scroll;
  }

  #section2 .container .col1, #section2 .container .col2 {
    flex: 0;
  }
  #section2 .container .col2 {
    padding-top: 5svh;
  }
  #section2 .container .col1, #section2 .container .col2 {
    padding-right: 0px;
  }
  #section2 .container .products {
    padding-right: 20px;
  }
  #section2 .container .col1, #section2 .container .col2 {
    padding-left: 0px;
  }
  #section2 .container .col2 {
    padding-top: 2svh;
  }
  #section2 .container .products .card {
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border: none;
  }

    #section2 .container .title h1 {
    font-size: 16px;
    }

     #section2 .container .products .card{
        height: 128px;
        min-width: 120px;
        margin-bottom: 8px;
    }
    #section2 .container .products .card:nth-child(1){
        margin-left: 16px;
    }

    #section2 .container .products .card .img{
        width: 100%;
        height: 70px;
    } 
    #section2 .container .products {
        margin-top: 14px;
    }

    /* Stacking Part */
    #section2 .container .contact-mobile{
        display: block;
        text-align: center;

        padding: 12px 16px;
        /* border: 1px solid #FFAC59; */

        width: 90%;
        margin: auto;

        background-color: #2b2b2b;
        margin-top: 0;
        margin-bottom: 0;


    }

    .contact-mobile .contact-title p{
        font-family: 'Gilda', serif;
        font-size: 14px;

        background-image: linear-gradient(88.61deg, #f3e1cf 9.56%, #ffac59 59.84%);

        color: transparent;
        background-clip: text;

        font-weight: 400;
    }


    .contact-title span{
        font-style: italic;
    }

    .contact-row{
        display: flex;
        align-items: flex-end;
    }

    .contact-mobile input{
        width: 100%;
        border: 1px solid #ddd;
        padding: 6px 8px;

        font-size: 12px;

        margin-top: 8px;

        font-family: 'Montserrat', sans-serif;
        background-color: #444444;
        color: #fff;
        border: none;
        outline: none;
    }

    .contact-mobile button{
        margin-top: 5px;

        background: linear-gradient(81.46deg, #855F39 -34.49%, #FFAC59 41.99%);
        font-size: 10px;
        font-weight: 400;

        padding: 7px 8px;
        color: #fff;

        border: none;
        outline: none;

        font-family: 'Montserrat', sans-serif;
        cursor: pointer;
        width: 124px;
    }

    .info-mobile{
        display: block;

        width: 90%;
        margin: auto;

        text-align: left;

        padding: 12px 4px 12px 16px;
        /* border: 1px solid #FFAC59; */

        font-family: 'Montserrat', sans-serif;
        font-size: 9px;
        font-weight: 500;

        color: #cfcfcf;

        background-color: #3c3c3c;
        margin: auto;
        margin-top: 0;
        margin-bottom: 0;

        font-weight: 400;
    }
    .info-mobile li{
        padding-bottom: 3px;
    }
    input[type="checkbox"]:checked::after {
        top: 5%;
    }

}