@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Rubik:wght@300;400;500;600&display=swap');
  /* 
 Fonts:
- Poppins: 300, 400, 600, 700, 800
- Rubik: 300, 400, 500, 600
#f2b454; #a52a25; #5f1c19;
  */
:root
    {
        --primary-color: #a52a25;
        --secondary-color: #7e5d2c;
        --secondary-dark-color: #f2b454;

        --white-color: #ffffff;
        --light-bg-color: #f2f3f5;
        --light-text-color: #7c899a;
        --border-color: #e5e8ec;
        --dark-color: #0a021c;

        --font-small: 13px;
        --font-smaller: 11px;

        --percent100: 100%;
        --percent50: 50%;

        --fw3: 300;
        --fw5: 500;
        --fw6: 600;
        --fw7: 700;
        --fw8: 800;

        --trans-background-color: background-color: .3s, color .3s;
        --trans-background: background-color .3s;
        --trans-color: color .3s;
    }
*
    {
        margin: 0;
        padding: 0;
    }
*,::before,::after
    {
        box-sizing: border-box;
    }
body
    {
        font-family: 'Rubik', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        color: var(--dark-color);
        background-color: var(--white-color);
        overflow-x: hidden;
    }
a
    {
        text-decoration: none;
        color: inherit;
        -webkit-tap-highlight-color: transparent;
    }
ul
    {
        list-style: none;
    }
img
    {
        max-width: var(--percent100);
        vertical-align: middle;
    }
strong
    {
        font-weight: var(--fw8);
    }
table
    {
        border-collapse: collapse;
        border-spacing: 0;
    }
input::placeholder
    {
        font: inherit;
    }
h1,h2,h3,h4
    {
        font-family: 'Poppins';
    }
h1
    {
        font-size: calc(1.3em + 1vw);
        font-weight: var(--fw8);
        line-height: 1;
    }
h2
    {
        font-size: 2.5em;
        text-align: center;
        color: #fff ;
    }
h3
    {
        font-size: 1.2em;
        font-weight: var(--fw7);
    }
h4
    {
        font-size: 1em;
        font-weight: var(--fw6);
    }

/* REUSABLE SELECTOR */
.container
    {
        max-width: 1280;
        margin: 0 auto;
        padding: 0 0.938em;
    }
.column
    {
        margin-left: -0.938em;
        margin-right: -0.938em;
    }
.column .row
    {
        padding: 0 0.938em;
    }
.flexwrap
    {
        display: flex;
        flex-wrap: wrap;
    }
.flexcenter
    {
        display: flex;
        align-items: center;
        justify-content: center;
    }
.flexitem
    {
        display: flex;
        align-items: center;
    }
.flexcol
    {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
.main-links a:hover
    {
        color: var(--secondary-color);
    }
.second-links a:hover
    {
        color: var(--light-text-color);
    }
.icon-small, .icon-large
    {
        display: flex;
        align-items: center;
        padding: 0 0.25em;
        font-weight: normal;
    }
.icon-small
    {
        font-size: 1.25em;
        margin-left: auto;
    }
.icon-large
    {
        font-size: 1.75em;
        padding: 0 0.75em 0 0;
    }
.mobile-hide
    {
        display: none;
    }
.object-cover img
    {
        position: absolute;
        object-fit: 100%;
        width: var(--percent100);
        height: var(--percent100);
    }
.products .media
    {
        position: relative;
        flex-shrink: 0;
        overflow: hidden;
    }
.primary-button, .secondary-button, .light-button
    {
        font-size: var(--font-small);
        padding: 0.9em 2em;
        height: auto;
        width: fit-content;
        border-radius: 2em;
        transition: var(--trans-background-color);
    }
.primary-button
    {
        background-color: var(--primary-color);
        color: var(--white-color);
    }
.primary-button:hover
    {
        background-color: var(--dark-color);
    }
.secondary-button
    {
        background-color: var(--secondary-dark-color);
        color: var(--white-color);
    }
.secondary-button:hover
    {
        background-color: var(--light-bg-color);
        color: var(--secondary-dark-color);
    }
.light-button
    {
        background-color: var(--light-bg-color);
    }
.light-button:hover
    {
        background-color: var(--secondary-dark-color);
        color: var(--white-color);
    }
.view-all
    {
        font-size: var(--font-small);
        display: flex;
        gap: 1em;
        transition: var(--trans-color);
    }
.mini-text
    {
        font-size: var(--font-smaller);
        color: var(--light-text-color);
    }

/* Header */
:where(.off-canvas, header) li > a
    {
        display: flex;
        position: relative;
        line-height: inherit;
        transition: var(--trans-color);
    }
/* Header Top */
.header-top .wrapper
    {
        font-size: var(--font-small);
        font-weight: var(--fw3);
        justify-content: space-between;
        line-height: 42px;
    }
.header-top .wrapper ul
    {
        gap: 2em;
    }
.header-top li
    {
        position: relative;
    }
.header-top ul ul
    {
        position: absolute;
        left: -1em;
        line-height: 2em;
        background-color: var(--white-color);
        border: 1px solid var(--border-color);
        z-index: 1;
        display: none;
    }
:where(.header-top, .thetop-nav) .right ul ul li a
    {
        padding: 0.25em 1em;
    }
:where(.header-top, .thetop-nav) .right ul ul li.current a
    {
        background-color: var(--border-color);
    }
.header-top li:hover ul
    {
        display: block;
    }
/* Header Nav */
.header-nav
    {
        padding: 0.5em;
        margin-bottom: 1.5em;
        border-bottom: 1px solid var(--border-color);
    }
.trigger
    {
        font-size: 1.5em;
        display: flex;
        padding: 0.25em;
        margin-right: 0.5em;
    }
.logo
    {
        margin-top: -8px;
    }
.logo a
    {
        font-family: 'Poppins';
        font-size: 1.75em;
        position: relative;
        font-weight: var(--fw8);
        display: flex;
        padding-left: 0.75em;
        margin-right: 2em;
    }
.header-nav nav > ul
    {
        line-height: 100px;
        gap: 2em;
    }
.fly-item
    {
        position: absolute;
        height: 16px;
        font-size: var(--font-smaller);
        padding: 3px;
        text-align: center;
        line-height: 10px;
        color: var(--white-color);
    }
nav .fly-item
    {
        top: 50%;
        margin-top: -24px;
        width: 30px;
        border-radius: 3px;
        right: -32px;
        background-color: var(--primary-color);
    }
.header-nav .right
    {
        position: relative;
        margin-left: auto;
    }
.header-nav .right .icon-large
    {
        position: relative;
    }
.header-nav .right .fly-item
    {
        top: 0;
        right: 16px;
        width: 16px;
        background-color: var(--secondary-dark-color);
        border-radius: var(--percent50);
    }
.mega .flexcol
    {
        flex: 1;
        min-width: 180px;
        padding-right: 2.5em;
        margin-bottom: 1.5em;
        z-index: 1;
    }

/* Header Main, Departments Category */
.header-main
    {
        background-color: var(--secondary-dark-color);
        padding: 0.5em 0;
        margin-bottom: 2em;
    }
.dpt-cat
    {
        position: relative;
        z-index: 10;
    }
.dpt-cat .dpt-head
    {
        position: relative;
        width: 300px;
        padding: 0.75em 1.5em;
        background-color: var(--primary-color);
        border-radius: 7px 7px 0 0;
        color: var(--white-color);
        margin-bottom: -2.15em;
        margin-left: -200;
        margin-top: -15px;
    }
.dpt-cat .dpt-head .mini-text
    {
        color: var(--light-bg-color);
    }
.dpt-cat .dpt-trigger
    {
        position: absolute;
        right: 0;
        top: 0;
        padding: 1.3em;
        height: 60px;
        width: 60px;
    }
.dpt-menu > ul > li > a
    {
        font-size: var(--font-small);
        height: 46px;
        align-items: center;
    }
.dpt-menu .has-child:hover ul
    {
        display: block;
    }
.dpt-menu .has-child li a:hover
    {
        text-decoration: underline;
    }

    /* Search Form */
.header-main .right
    {
        flex: 1;
    }
form
    {
        position: relative;
    }
form.search input
    {
        line-height: 3.25em;
        padding: 0 7em 0 4.5em;
        border: 0;
        outline: 0;
        width: var(--percent100);
        border-radius: 7px;
        font-size: 0.9em;
        font-weight: var(--fw3);
    }
form.search :where(span,button)
    {
        position: absolute;
        padding: 0.55em 1.5em;
        font-size: 1em;
        color: var(--light-text-color);
        height: var(--percent100);
    }
form.search button
    {
        right: 0;
        border: 0;
        outline: 0;
        font-size: 0.875em;
        font-weight: var(--fw6);
        background-color: var(--primary-color);
        color: var(--white-color);
        border-radius: 0 7px 7px 0;
        cursor: pointer;
        transition: var(--trans-background);
    }
form.search button:hover
    {
        background-color: var(--dark-color);
    }

/* Responsive MENU - off Canvas */
.site-off
    {
        position: fixed;
        width: 320px;
        height: var(--percent100);
        background-color: var(--white-color);
        overflow-y: auto;
        z-index: 1000;
        transform: translateX(-100%);
        visibility: hidden;
        transition: transform .4s, visibility .4s;
        will-change: transform, visibility;
    }
.showmenu .site-off
    {
        transform: translateX(0);
        visibility: visible;
        transform: transform .4s 0s, visibility 0s 0s;
    }
.off-canvas
    {
        width: var(--percent100);
        height: var(--percent100);
        touch-action: auto;
        padding: 1.5em;
    }
.off-canvas .canvas-head
    {
        color: var(--white-color);
        justify-content: space-between;
        padding: 1.5em;
        margin: -1.5em -1.5em 1.5em;
        background-color: var(--secondary-dark-color);
        border-bottom-right-radius: 160px 25px;
    }
.off-canvas .canvas-head .logo
    {
        z-index: 10;
        position: relative;
    }
.off-canvas .canvas-head .logo .circle
    {
        opacity: .75;
    }
.t-close
    {
        font-size: 1.25em;
        width: 32px;
        height: 32px;
        border-radius: var(--percent50);
        background-color: var(--secondary-dark-color);
        color: var(--white-color);
        transition: var(--trans-background-color);
    }
.t-close:hover
    {
        background-color: var(--white-color);
        color: var(--secondary-dark-color);
        opacity: .75;
    }
.off-canvas .dpt-head
    {
        font-size: var(--font-small);
        padding: 1em;
        margin-bottom: 1em;
        text-align: center;
        background-color: var(--light-bg-color);
        border-radius: 7px 7px 0 0;
    }
.off-canvas .has-child > :where(ul, .mega)
    {
        font-size: var(--font-small);
        font-weight: var(--fw3);
        line-height: 28px;
        padding: 1px;
        
        height: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s cubic-bezier(0.215, 0.610, 0.355, 1);
    }
.off-canvas .expand > :where(ul, .mega)
    {
        max-height: 2000px;
    }
.off-canvas .thetop-nav ul, .off-canvas nav > ul
    {
        flex-direction: column;
        align-items: flex-start;
        font-size: var(--font-small);
        line-height: 36px;
        padding-top: 1.25em;
        margin: 1.25em 0;
        border-top: 1px solid var(--border-color);
    }
.off-canvas nav .mega
    {
        padding: 0;
    }
.off-canvas nav .mega .products
    {
        display: none;
    }
.off-canvas .has-child .icon-small
    {
        padding: 0.5em;
        line-height: initial;
    }
.off-canvas .dpt-menu .icon-small i
    {
        transform: rotate(90deg);
    }
.off-canvas .has-child
    {
        width: var(--percent100);
    }
.off-canvas .thetop-nav .right > ul > :where(:nth-child(4), li:nth-child(5)) > a
    {
        display: none;
    }
.off-canvas .thetop-nav .right ul ul
    {
        display: flex;
        flex-direction: row;
    }
.off-canvas .thetop-nav .right ul ul li a
    {
        padding: 0.5em;
        border: 1px solid var(--border-color);
        line-height: 16px;
        margin: 0 0.5em 0.5em 0;
    }

    /* SLIDER */
   
.slider .item
    {
        position: relative;
        height: 474px;
    }
.slider .item::before
    {
        content: "";
        position: sticky;
        left: 0;
        width: 450px;
        height: 300px;
        background-color: var(--white-color);
        z-index: 1;
        filter: blur(50px);
        opacity: .1;
    }
.slider .text-content
    {
        position: relative;
        height: var(--percent100);
        justify-content: flex-end;
        padding: 0 0 10% 10%;
        z-index: 1;
    }
.slider h4
    {
        font-size: var(--font-small);
        font-weight: var(--fw7);
        width: fit-content;
        padding: 4px 10px;
        background-color: var(--dark-color);
        color: var(--white-color);
        border-radius: 4px;
    }
.text-content :where(h2,h3) span:first-child
    {
        font-weight: var(--fw3);
        color: var(--light-text-color);
    }
.text-content :where(h2,h3) span:last-child
    {
        color: var(--secondary-dark-color);
        text-transform: uppercase;
        letter-spacing: -1px;
    }
.swiper-pagination .swiper-pagination-bullet-active
    {
        background-color: var(--secondary-dark-color);
    }
  
    /* BRANDS */

    .brands .wrapper
    {
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 2em 0;
    }
.brands .item img
    {
        opacity: 1;
        border-radius: 5px;
    }
.brands .item a:hover img
    {
        opacity: .50;
        transition: opacity .3s;
    }
    
    /* ACCOUNTS */
    .wrapper_accounts
    {
        position: relative;
        width: 400px;
        height: 440px;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, .5);
        border-radius: 20px;
        backdrop-filter: blur(20px);
        box-shadow: 0 0 30px rgba(0, 0, 0, .5);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        transform: scale(0);
        transition: transform .5s ease, height .2s ease;
        top: 60px;
        left: 500px;
    }
.wrapper_accounts.active-popup
    {
        transform: scale(1);
    }
.wrapper_accounts.active
    {
        height: 470px;
    }
.wrapper_accounts .form-box
    {
        width: 100%;
        padding: 20px;
    }
.wrapper_accounts .form-box.login
    {
       transition: transform .18s ease;
       transform: translateX(0);
    }
.wrapper_accounts.active .form-box.login
    {
        transition: none;
        transform: translateX(-400px);
    }
.wrapper_accounts .form-box.register
    {
        position: absolute;
        transition: none;
        transform: translateX(400px);
    }
.wrapper_accounts.active .form-box.register
    {
       transition: transform .18s ease;
       transform: translateX(0);
    }
.wrapper_accounts .icon-close
    {
        position: absolute;
        top: 0;
        right: 0;
        width: 45px;
        height: 45px;
        background: #f2b454;
        font-size: 32px;
        color: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom-left-radius: 20px;
        cursor: pointer;
        z-index: 1;
    }
.form-box h2
    {
        font-size: 32px;
        color: #a52a25;
        text-align: center;
    }
.input-box
    {
        position: relative;
        width: 100%;
        height: 50px;
        border-bottom: 2px solid #a52a25;
        margin: 30px 0;
    }
.input-box label
    {
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        font-size: 16px;
        color: var(--primary-color);
        font-weight: 500;
        pointer-events: none;
        transition: .5s;
    }
.input-box input:focus~label,
.input-box input:valid~label
    {
        top: -5px;
    }
.input-box input
    {
        width: 100%;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        font-size: 16px;
        color: var(--primary-color);
        font-weight: 600;
    }
.input-box .icon
    {
        position: absolute;
        right: 8px;
        font-size: 20px;
        color: var(--primary-color);
        line-height: 57px;
    }
.remember-forgot
    {
        font-size: 15px;
        color: var(--white-color);
        font-weight: 500;
        margin: -15px 0 15px;
        display: flex;
        justify-content: space-between;
    }
.remember-forgot label input
    {
        accent-color: var(--white-color);
        margin-right: 3px;
    }
.remember-forgot a
    {
        color: var(--white-color);
        text-decoration: none;
    }
.remember-forgot a:hover
    {
        text-decoration: underline;
    }
.btn
    {
        width: 100%;
        height: 45px;
        background: #f2b454;
        border: none;
        outline: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        color: #a52a25;
        font-weight: 500;
        transition: .5s;
    }
.btn:hover
    {
        color: white;
        background: #f2b454;
    }
.login-register
    {
        font-size: 15px;
        color: #a52a25;
        text-align: center;
        font-weight: 500;
        margin: 25px 0 10px;
    }
.login-register p a
    {
        color: #a52a25;
        text-decoration: none;
        font-weight: 600;
    }
.login-register p a:hover
    {
        text-decoration: underline;
    }

   /* ABOUT */
   
.heading{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align:center;
    margin: 20px auto;
    background-color: var(--secondary-dark-color);
    margin-top: -400px;
    border-radius: 5px;
  }
  .heading h1{
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    margin-top: 45px;
  }
  .heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #a52a25;
  }
  .heading h2{
    font-size: 45px;
    color: #a52a25;
    margin-bottom: 35px;
  }
  .container-about{
    width: 90%;
    margin: 0 auto;
    padding: 0px 0px; 
    opacity: 0.8;
  }
  .about{
    display: flex;
    justify-content: space-between;
    align-content: center;  
    flex-wrap: wrap;
  }
  .about-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
  }
  .about-image img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
  }
  .about-image:hover img{
    transform: scale(1.2);
  }
  .about-content{
    flex: 1;
    align-items: justify;
  }
  .about-content h2{
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
    padding-bottom: 15px;
  }
  .about-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #a52a25;
    text-align: justify;
  }
  .about-content span{
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    text-align: justify;
  }
  #myBtn{
    display: block;
    padding: 10px 10px;
    background-color: #a52a25;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 15px;
    transition: 0.3s ease;
    margin-bottom: 10px;
  }
  #myBtn:hover{
    background-color: #000;
  }

    /* SWIPE SLIDER */
    .filipino
        {
            margin-top: -450px;
        }



    /* CONTACT US */

    .contactUs{
        position: relative;
        width: 100%;
        padding: 40px 100px;
        margin-top: -440px;
        background: linear-gradient(80deg, #a52a25 0%,#a52a25 30%, #f2b454 30%, #f8c77e 100%);
        opacity: 0.85;
      }
      .contactUs .title{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
       
      }
      .contactUs .title h2{
        color: var(--dark-color);
        font-weight: 500;
      }
      .form{
        grid-area: form;
      }
      .info{
        grid-area: info;
      }
      .map{
        grid-area: map;
      }
      .contact{
        padding: 40px;
        background: #ffffff;
        box-shadow: 0 5px 35px rgba(0,0,0,0.15);
      }
      .box{
        position: relative;
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 5fr 4fr;
        grid-template-areas:
        "form info"
        "form map";
        grid-gap: 20px;
        margin-top: 20px;
      }
      .contact h3{
        color: #f2b454;
        font-weight: 500;
        font-size: 1.4em;
        margin-bottom: 10px;
      }
      /* Form */
      .formBox{
        position: relative;
        width: 100%;
      }
      .formBox .row50{
        display: flex;
        gap: 20px;
      }
      .inputBox{
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        width: 50%;
      }
      .formBox .row100 .inputBox{
        width: 100%;
      }
      .inputBox span{
        color: #a52a25;
        margin-top: 10px;
        margin-bottom: 5px;
        font-weight: 500;
      }
      .inputBox input{
        padding: 10px;
        font-size: 1.1em;
        outline: none;
        border: 1px solid #333;
      }
      .inputBox textarea{
        padding: 10px;
        font-size: 1.1em;
        outline: none;
        border: 1px solid #333;
        resize: none;
        min-height: 220px;
        margin-bottom: 10px;
      }
      .inputBox input[type="submit"]{
        background: #f2b454;
        color: #a52a25;
        border: solid #a52a25;
        font-size: 1.1em;
        max-width: 120px;
        font-weight: 500;
        cursor: pointer;
        padding: 14px 15px;
      }
      .inputBox ::placeholder{
        color: #999;
      }
     
      /* Contact Us Info */
      .info{
        background: #a52a25;
      }
      .info h3{
        color: #f2b454;
      }
      .info .infoBox div{
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: #fff;
      }
      .info .infoBox div span{
        min-width: 40px;
        height: 40px;
        color: #fff;
        background: #f2b454;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-right: 15px;
      }
      .info .infoBox div p{
        color: #fff;
        font-size: 1.1em;
      }
      .info .infoBox div a{
        color: #fff;
        text-decoration: none;
        font-size: 1.1em;
      }
      .sci{
        margin-top: 40px;
        display: flex;
      }
      .sci li{
        list-style: none;
        margin-right: 15px;
        align-items: center;
      }
      .sci li a{
        color: #fff;
        font-size: 2em;
        color: #ccc;
      }
      .sci li a:hover{
        color: #f2b454;
      }
      /* Map */
      .map{
        padding: 0;
      }
      .map iframe{
        width: 100%;
        height: 100%;
      }
    
      /* FOOTER */
    .footer
        {
            margin-top: 10px;
            max-width: 100vw;
        }
    .container_footer{
        width: 100%;
        margin: auto;
        padding-top: 20px;
        padding-left: 120px;
        padding-right: 0;
      }
      .row{
        display: flex;
        flex-wrap: wrap;
      }
      ul{
        list-style: none; 
      }
      .footer{
        background-color: #f2b454;
        padding: 5px 0;
      }
      .footer-col{
        width: 25%;
        padding: 0 15px;
      }
      .footer-col h4{
        font-size: 18px;
        color:#ffffff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
        margin-left: 60px;
      }
      .footer-col h4::before{
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        background-color: #a52a25;
        height: 2px;
        box-sizing: border-box;
        width: 50px;
      }
      .footer-col ul li:not(:last-child){
        margin-bottom: 10px;
      }
      .footer-col ul li a{
        font-size: 16px;
        text-transform: capitalize;
        color: #ffffff;
        text-decoration: none;
        font-weight: 300;
        color: #a52a25;
        display: block;
        transition: all 0.3s ease;
        margin-left: 30px;
      }
      .footer-col ul li a:hover{
        color: #ffffff;
        padding-left: 8px;
      }
      .footer-col .social-links a{
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255,255,255,0.2);
        margin: 0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
      }
      .footer-col .social-links a:hover{
        color: #f2b454;
        background-color: #a52a25;
      }
      .footer .copyright{
        width: 100%;
        text-align: center;
        color: #a52a25;
        padding-bottom: 10px;
      }

/* TERMS and Conditions */
/* body{
    margin: 0;
    padding: 0;
    background-color: #f2b454;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  } */

  h3{
    color: #a52a25;
    font-weight: 400;
    text-align: center;
  }
  ol{
    margin-left: 50px;
  }
  .terms-box{
    max-width: 70%; 
    background-color: #f2b454;
    color: #0d0808;
    padding: 60px 60px;
    margin-left: 250px;
    margin-right: 200px;
  }
  .terms-text{
    padding: 0 20px;
    height: 400px;
    overflow: auto;
    font-size: 14px;
    font-weight: 500;
    color: #0d0808;
    line-height: 3vh;
    align-content: justify;
  }
  .terms-text::-webkit-scrollbar{
    width: 2px;
    background-color: #fff;
  }
  .terms-text::-webkit-scrollbar-thumb{
    background-color: #a52a25;
  }
  .terms-text h2{
    text-transform: uppercase;
  }
  .terms-box h4{
    font-size: 13px;
    text-align: center;
    padding: 30px 40px;
  }
  .terms-box h4 span{
    color: #a52a25;
  }
  .buttons {
    display: flex;
    padding: 0 20px; 
    justify-content: space-between;
  }
  .btn{
    height: 50px;
    width: calc(50% - 6px);
    border: 0;
    border-radius: 6px;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    transition: .3s linear;
  }
  .red-btn{
    background-color: #0d0808;
  }
  .gray-btn{
    background-color: #a52a25;
  }
  .btn:hover{
    opacity: 0.8;
    background-color: #7e5d2c;
  }

/* Delivery Areas */
.delivery-area{
    max-width: 100%;
    background: #f2b454;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 40px;
    padding-right: 10px;
    padding-bottom: 20px;
}
.delivery-area p{
    padding-left: 20px;
    font-size: 20px;
    color: #0d0808;
}
.delivery-area h3{
    padding-left: 20px;
    font-size: 30px;
    color: #000;
}

      /* Create two equal columns that floats next to each other */
      .column {
        float: left;
        width: 50%;
        padding-right: 30px;
        padding-top: 10px;
        margin-left: 50px;
        margin-right: 50px;
      }
      
      /* Clear floats after the columns */
      .row:after {
        content: "";
        display: table;
        clear: both;
        padding-right: 30px;
      }
      /* Style the buttons */
      .btn-deli {
        border: none;
        margin: 10px;
        outline: none;
        height: 7vh;
        width: 35vh;
        padding: 12px 16px;
        background-color: #a52a25;
        cursor: pointer;
        margin-left: 40px;
      }
      
      .btn-deli:hover {
        background-color: #ddd;
      }
      
      .btn-deli.active {
        background-color: #0d0808;
        color: white;
      }

      /* FAQs */
      *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins" , sans-serif;
      }
      /* body{
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        background: #f2b454;
        padding: 40px;
      } */
      ::selection{
        background: #0d0808;
        color: #000;
      }
      .accordion{
        display: flex;
        max-width: 100%;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        background: #f2b454;
        /* border-radius: 25px; */
        padding: 45px 90px 45px 60px;
        min-height: 60vh;
      }
      .accordion .image-box{
        height: 400px;
        width: 580px;
      }
      .accordion .image-box img{
        height: 100%;
        width: 100%;
        object-fit: contain;
      }
      .accordion .accordion-text{
        width: 60%;
      }
      .accordion .accordion-text .accordion-title{
        font-size: 35px;
        font-weight: 600;
        color: #0d0808;
        font-family: 'Poppin', sans-serif;
        margin-left: 35px;
      }
      .accordion .accordion-text .faq-text{
        margin-top: 25px;
        height: 263px;
        overflow-y: auto;
      }
      .faq-text::-webkit-scrollbar{
        display: none;
      }
      .accordion .accordion-text li{
        list-style: none;
        cursor: pointer;
      }
      .accordion-text li .question-arrow{
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .accordion-text li .question-arrow .question{
        font-size: 18px;
        font-weight: 500;
        color: #a52a25;
        transition: all 0.3s ease;
      }
      .accordion-text li .question-arrow .arrow{
        font-size: 20px;
        color: #a52a25;
        transition: all 0.3s ease;
      }
      .accordion-text li.showAnswer .question-arrow .arrow{
        transform: rotate(-180deg);
      }
      .accordion-text li:hover .question-arrow .question,
      .accordion-text li:hover .question-arrow .arrow{
        color: #fff;
      }
      .accordion-text li.showAnswer .question-arrow .question,
      .accordion-text li.showAnswer .question-arrow .arrow{
        color: #fff;
      }
      .accordion-text li .line{
        display: block;
        height: 2px;
        width: 100%;
        margin: 10px 0;
        background: rgba(0, 0, 0, 0.1);
      }
      .accordion-text li p{
        width: 92%;
        font-size: 15px;
        font-weight: 500;
        color: #0d0808;
        display: none;
      }
      .accordion-text li a{
        color: #a52a25;
      }
      .accordion-text li.showAnswer p{
        display: block;
      }
      
/* Payment Methods */
.pay
    {
        font-family: 'Poppins';
        font-size: calc(1.3em + 1vw);
        font-weight: var(--fw8);
        line-height: 1;
        color:#a52a25;
        margin-top: -430px;
        background-color: var(--secondary-dark-color);
        padding: 15px;
    }
.container-payment {
    max-width: 90%;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
  }
  
  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
    padding: 10px;
  }
  
  .payment-method {
    width: 45%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .payment-method img {
    max-width: 80%;
    margin-bottom: 10px;
    height: 150px;
    width: 150px;
    display: flex;
    content: contain;
    margin-top: 20px;
  }
  
  .payment-method p, li {
    margin: 0;
    font-size: 14px;
    text-align: justify;
  }
  
  
  .visa {
    border-color: #1a1a1a;
  }
  
  .mastercard {
    border-color: #f1c40f;
  }
  
  .gcash {
    border-color: #27ae60;
  }
  
  .online-bank {
    border-color: #3498db;
  }


/* ORDER TRACKING */
.order-track-table{
  display: flex;
  margin: 20px;
}
h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #a52a25;
}
table {
  border-collapse: collapse;
  margin: 20px auto;
  width: 100%;
  height: 50px;
  max-width: 1000px;

}
th, td {
  border: 1px solid #a52a25;
  padding: 10px;
  text-align: center;
}
th {
  background-color: #f2b454;
  color: #000;
  font-weight: 500;
}
td {
  background-color: #fff;
  color: #000;
}
.order-status {
  color: #a52a25;
  font-weight: 500;
}

/* Responsive CSS for Order Tracking */
@media (max-width: 768px) {
  table {
    font-size: 0.8em;
  }
}
@media (max-width: 480px) {
  table {
    font-size: 0.6em;
  }
}


  /* Responsive CSS for Payment Methods */
  @media only screen and (max-width: 768px) {
    .payment-methods {
      flex-direction: column;
      align-items: center;
    }
    ol {
        margin-left: 0px;
    }
    .payment-method {
      width: 90%;
      margin: 10px 0;
    }
  }
    /* Responsive CSS for FAQs */
      @media (max-width: 994px) {
        /* body{
          padding: 40px 20px;
        } */
        .accordion{
          max-width: 100%;
          padding: 5px;
        }
        .accordion .image-box{
          height: 360px;
          width: 250px;
          padding: 0px;
        }
        .accordion .accordion-text{
          width: 63%;
        }
      }

      @media (max-width: 820px) {
        .accordion{
          flex-direction: column;
        }
        .accordion .image-box{
          height: 360px;
          width: 300px;
          background: #f2b454;
          width: 100%;
          border-radius: 25px;
          padding: 0px;
          border: 0px;
        }
        .accordion .accordion-text{
          width: 100%;
          margin-top: 30px;
        }
      }
      @media (max-width: 538px) {
        .accordion{
          padding: 25px;
        }
        .accordion-text li p{
          width: 98%;
        }
      }

    /* -------------------------------------------------------------------------------------------------------- */
    /* RESPONSIVENESS */
   
    /* ABOUT US */

    @media screen and (max-width: 768px){
        .heading{
          padding: 0px 20px;
        }
        .heading h1{
          font-size: 36px;
        }
        .heading h2{
          font-size: 17px;
          margin-bottom: 0px;
        }
        .container{
          padding: 0px;
        }
        .about{
          padding: 20px;
          flex-direction: column;
        }
        .about-image{
          margin-right: 0px;
          margin-bottom: 20px;
        }
        .about-content p{
          padding: 0px;
          font-size: 16px;
        }
        .about-content .read-more{
          font-size: 16px;
        }
      }
      #more {
        display: none;
      }

    /* CONTACT US */
@media (max-width: 991px){
    body{
      background: #f2b454;
    }
    .contactUs{
      padding: 20px;
    }
    .box{
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-template-areas: 
      "form"
      "info"
      "map";
    }
    .formBox .row50{
      display: flex;
      gap: 0;
      flex-direction: column;
    }
    .inputBox{
      width: 100%;
    }
    .contact{
      padding: 30px;
    }
    .map{
      min-height: 300px;
      padding: 0;
    }
  }
  /* FOOTER */
@media(max-width: 767px){
    .container_footer {
        width: 100%;
        margin: auto;
        padding: 0 0px;
        padding-top: 20px;
        margin-left: 10px;
    }
    .footer-col {
        padding: 0px;
    }
    .footer-col .social-links {
        padding-left: 50px;
    }
    .footer-col h4{
      width: 50%;
      padding: -20 -15px;
      margin-bottom: 25px;
    }
    .footer-col ul li{
        padding-left: 0px;
    }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
    }
}
    @media (min-width:768px) {
        .container_footer {
            width: 100%;
            margin: auto;
            padding-top: 20px;
            padding-left: 20px;
            padding-right: 0;
  }
  .footer-col .social-links {
    padding-left: 45px;
}
    }
    
    @media screen and (min-width: 992px)
    {
        .container
            {
                padding: 0 2em;
            }
        .desktop-hide
            {
                display: none;
            }
        .mobile-hide
            {
                display: block;
            }
        .logo a
            {
                margin-right: 2em;
            }
        .header-nav
            {
                padding: 0;
                margin: 0;
                border-bottom: 0;
            }
        .header-nav .right li > a
            {
                margin-left: 1em;
            }

        /* mega menu */
        nav .mega
            {
                position: absolute;
                width: var(--percent100);
                height: auto;
                top: auto;
                left: 0;
                right: 0;
                padding: 2.5em;
                line-height: 2em;
                background-color: var(--light-bg-color);
                box-shadow: rgb(0, 0, 0 /20%) 0 30px 20px -30px;
                z-index: 100;

                display: none;
            }
        nav li.has-child:hover .mega
            {
                display: block;
            }
        nav .mega .wrapper
            {
                display: flex;
            }
        nav .mega h4
            {
                font-size: 0.8em;
                text-transform: uppercase;
            }
        nav .mega ul
            {
                font-size: var(--font-small);
            }
        nav .mega .women-brands
            {
                display: flex;
                flex-wrap: wrap;
                max-width: 180px;
            }
        nav .mega .women-brands li
            {
                min-width: 80px;
            }
        nav .mega .view-all
            {
                margin-top: 1em;
            }
        nav .mega .products
            {
                flex: 2;
                padding: 0;
                align-items: center;
                position: relative;
            }
        nav .mega .products .row
            {
                width: var(--percent100);
            }
        nav .mega .products .media
            {
                height: 400px;
            }
        nav .mega .products .text-content
            {
                line-height: initial;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.5em;
                margin-top: 0.5em;
                position: absolute;
                bottom: 4em;
                width: var(--percent100);
            }
        nav .mega .products .text-content h4
            {
                font-size: 2em;
                font-weight: var(--fw8);
                text-align: center;
                color: var(--secondary-dark-color);
            }
        .header-main .right
            {
                max-width: 600px;
                margin-left: auto;
            }
        /* Departments Menu */
        .dpt-menu
            {
                position: absolute;
                top: var(--percent100);
                width: 300px;
                background-color: var(--white-color);
                border: 1px solid var(--border-color);
                border-top: 0;
                border-bottom: 0;
                margin-left: -200px;
            }
        .dpt-menu > ul > li > a
            {
                font-weight: var(--fw5);
                padding: 0 1.5em;
                border-bottom: 1px solid var(--border-color);
            }
        .dpt-menu .has-child > ul, .dpt-menu .mega
            {
                position: absolute;
                top: 0;
                left: var(--percent100);
                width: var(--percent100);
                height: auto;
                min-height: var(--percent100);
                padding: 1.5em;
                font-size: var(--font-small);
                line-height: 2.5em;
                border: 1px solid var(--border-color);
                border-top: 0;
                display: none;
                background-position: right bottom;
                background-repeat: no-repeat;
                background-size: auto;
            }
        /* Showing the first sub menu */
        /* .dpt-menu  .mega
            {
                display: block;
            } */
        .dpt-menu .beauty ul
            {
                background-image: url(images/sidebar/filipino.jpg);
            }
        .dpt-menu .electronics ul
            {
                background-image: url(images/sidebar/indian.jpg);
            }
        .dpt-menu .fashion ul
            {
                background-image: url(images/sidebar/italian.jpg);
            }
        .dpt-menu .homekit .mega
            {
                background-image: url(images/sidebar/mexican.jpg);
            }
        .dpt-menu .has-child > :where(ul,.mega)::before
            {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(90deg, rgba(225,225,225,1) 0%, rgba(225,225,225,0));
            }

        .dpt-menu .mega
            {
                width: auto;
                min-width: var(--percent100);
            }
        .dpt-menu .has-child:hover .mega
            {
                display: flex;
            }
            .dpt-cat .dpt-head
        {
            position: relative;
            width: 300px;
            padding: 0.75em 1.5em;
            background-color: var(--primary-color);
            border-radius: 7px 7px 0 0;
            color: var(--white-color);
            margin-bottom: -2.15em;
            margin-left: -200px;
            margin-top: -15px;
        }
        /* Slider */
        .slider > div > .wrapper
            {
                width: calc(1920px - (30px + 2em));
                margin-left: auto;
                margin-bottom: 20px;
                content: flex;
            }


        /* ACCOUNTS */
        .wrapper_accounts
        {
            position: relative;
            width: 300px;
            height: 440px;
            background: var(--white-color);
            border: 2px solid rgba(255, 255, 255, .5);
            border-radius: 20px;
            backdrop-filter: blur(90px);
            box-shadow: 0 0 30px rgba(0, 0, 0, .5);
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            transform: scale(0);
            transition: transform .5s ease, height .2s ease;
            top: -630px;
        }
        .remember-forgot
        {
            font-size: 12px;
            color: var(--primary-color);
            font-weight: 500;
            margin: -15px 0 15px;
            display: flex;
            justify-content: space-between;
        }
         /* Slider
         .slider > div > .wrapper
         {
             width: 1520px;
             margin-left: 10px;
             margin-right: 10px;
         } */

         /* ADD TO CART */
         .list{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            column-gap: 20px;
            row-gap: 20px;
            margin-top: 50px;
        }
    }