/* ===================================
   MINI CART
=================================== */

  .cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(4px);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
  }

  .cart-overlay.active{
    opacity:1;
    visibility:visible;
  }

  .cart-drawer{
    position:fixed;
    top:0;
    right:-450px;
    width:420px;
    max-width:100%;
    height:100vh;
    background:#111;
    border-left:1px solid rgba(200,169,110,.2);
    z-index:1000;
    display:flex;
    flex-direction:column;
    transition:.4s ease;
  }

  .cart-drawer.active{
    right:0;
  }

  .cart-header{
    height:70px;
    padding:0 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(200,169,110,.15);
  }

  .cart-header h3{
    font-family:'Bebas Neue';
    font-size:28px;
    letter-spacing:2px;
  }

  .close-cart{
    background:none;
    border:none;
    color:white;
    font-size:24px;
    cursor:pointer;
  }

  .cart-items{
    flex:1;
    overflow-y:auto;
    padding:20px;
  }

  .cart-product{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .cart-product img{
    width:90px;
    height:120px;
    object-fit:cover;
    border-radius:8px;
  }

  .cart-info{
    flex:1;
  }

  .cart-info h4{
    margin-bottom:5px;
  }

  .cart-info p{
    color:#999;
    font-size:13px;
  }

  .remove-item{
    color:#ff5f5f;
    cursor:pointer;
    font-size:12px;
    margin-top:10px;
  }

  .cart-footer{
    padding:20px;
    border-top:1px solid rgba(200,169,110,.15);
  }

  .cart-total{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
  }

  .cart-total strong{
    color:var(--gold);
    font-size:22px;
  }

  .cart-buy-btn{
    width:100%;
    height:55px;
    border:none;
    background:var(--gold);
    color:#111;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    cursor:pointer;
  }

  /* MOBILE */

  @media(max-width:768px){

    .cart-drawer{
        width:100%;
    }

  }
  /* Ícone carrinho global */

.header-cart{
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #C8A96E;
    text-decoration: none;

    transition: .3s;
}

.header-cart:hover{
    color: #E2C98A;
    transform: scale(1.05);
}

.header-cart svg{
    width: 28px;
    height: 28px;
}

.cart-count{
    position: absolute;

    top: -8px;
    right: -10px;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: #C8A96E;
    color: #111;

    font-size: 11px;
    font-weight: 700;

    display:flex;
    align-items:center;
    justify-content:center;
}
@media(max-width:768px){

    .header-cart{

        top: 18px;
        right: 18px;

    }

}