.cart {
  background-color: var(--medium-gray);
}

.cart-grid {
  margin: auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 46px 0px 80px;
}

.cart-products {
  flex: 1;
}

.cart-delivery {
  background: #f5ca2738;
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cart-delivery-content {
  display: flex;
  gap: 17px;
  align-items: center;
}
.cart-item-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cart-item-actions {
  display: flex;
  gap: 85px;
  align-items: center;
}
.cart-location {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.cart-delivery-label {
  font-size: var(--font-14);
  font-weight: var(--font-weight-400);
  color: var(--black);
  margin-bottom: 4px;
}

.cart-delivery-address {
  font-weight: var(--font-weight-500);
}

.cart-change-btn {
  background: var(--primary);
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: var(--font-16);
  font-weight: var(--font-weight-500);
}

.cart-table {
  background: var(--white);
  border-radius: 6px;
}

.cart-summary {
  width: 517px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 6px;
  height: fit-content;
}
.cart-summary .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-summary h6 {
  font-weight: var(--font-weight-600);
  margin-bottom: 30px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 24px;
}
.cart-row p span {
  font-weight: var(--font-weight-500);
}
.cart-shipping-title {
  font-weight: var(--font-weight-400);
  font-size: var(--font-16);
  margin-bottom: 12px;
}

.cart-shipping-option {
  display: block;
  margin-bottom: 12px;
  font-size: var(--font-14);
  font-weight: var(--font-weight-400);
  display: flex;
  gap: 8px;
  color: var(--gray-700);
}

.cart-address {
  margin: 12px 0 20px;
  font-size: var(--font-14);
  color: var(--gray-700);
  font-weight: var(--font-weight-400);
}
.checkout-section .cart-address {
  margin-bottom: 0;
}
.cart-address strong {
  color: var(--black);
  font-weight: var(--font-weight-500);
}
.cart-shipping-link {
  color: var(--primary);
  font-size: var(--font-14);
  font-weight: var(--font-weight-500);
  text-decoration: none;
}

.cart-shipping-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  cursor: pointer;
}

.cart-shipping-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.cart-shipping-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-shipping-field label {
  font-size: var(--font-14);
  font-weight: var(--font-weight-500);
  color: var(--gray-700);
}

.cart-shipping-field select,
.cart-shipping-field input[type="text"] {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: var(--font-14);
  color: var(--black);
  background: var(--white);
}

.cart-shipping-update-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
}

.cart-total {
  font-weight: var(--font-weight-600);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  font-size: var(--font-16);
  margin-bottom: 31px;
}
.cart-total p {
  font-weight: var(--font-weight-600);
}
.cart-total-price {
  display: flex;
  align-items: center;
  gap: 2px;
}
.cart-total-price .cart-vat {
  font-size: var(--font-14);
  font-weight: var(--font-weight-400);
  color: var(--black);
}

.cart-vat {
  display: block;
  font-size: var(--font-14);
  color: var(--gray-700);
  margin-top: 4px;
}

.cart-table-item {
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 24px;
}

.cart-product-image img {
  width: 106px;
  height: auto;
  display: block;
}

.product-title {
  flex: 1;
  font-weight: var(--font-weight-500);
  color: var(--black);
}
.quantity-box {
  display: flex;
  align-items: center;
  background: var(--primary);
  width: fit-content;
  height: 50px;
}

/*
 * On the shop grid / wishlist page, .quantity-box lives inside a
 * fixed-size, position:relative .product-card and is meant to pin to its
 * bottom edge, replacing the "Add to cart" button in place. That only
 * makes sense inside a .product-card - elsewhere (the single product
 * page, which has no such ancestor) it needs to just sit in normal flow,
 * which the base rule above provides.
 */
.product-card .quantity-box {
  min-width: 100%;
  /*position: absolute;*/
  bottom: 0;
}

/*
 * Cart page row layout: Photo | Name | Qty +/- | Total | Delete.
 * A grid on .cart-table-item with `display: contents` on the two
 * inner wrapper divs (.cart-item-info / .cart-item-actions) lets their
 * children become direct grid items, so each part gets its own aligned
 * column without changing the existing markup/classes those wrappers
 * still provide for other templates (checkout review, view-order).
 */
.cart-table .cart-table-item {
  display: grid;
  grid-template-columns: 106px 1fr auto 130px 44px;
  grid-template-areas: "photo name qty price delete";
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.cart-table .cart-table-item:last-child {
  border-bottom: none;
}

.cart-table .cart-item-info,
.cart-table .cart-item-actions {
  display: contents;
}

.cart-table .cart-product-image {
  grid-area: photo;
}

.cart-table .product-title {
  grid-area: name;
  flex: initial;
}

.cart-table .quantity-box {
  grid-area: qty;
  display: flex;
  align-items: center;
  background: var(--primary);
  width: 140px;
  min-width: 140px;
  height: 50px;
  position: relative;
  bottom: 0;
}

.cart-table .cart-table-product-price {
  grid-area: price;
  width: auto;
}

.cart-table .delete-btn {
  grid-area: delete;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
}

.quantity-value {
  flex: 1;
  text-align: center;
  font-weight: 900;
  font-size: var(--font-16);
color: var(--black);
}
.quantity-btn img {
    filter: grayscale(100%) brightness(0%);
}
.cart-table-product-price {
  width: 120px;
  text-align: center;
  font-size: var(--font-16);
  font-weight: var(--font-weight-500);
  color: var(--black);
}

.delete-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: var(--font-26);
  color: var(--gray-700);
}
.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.custom-radio input {
  display: none;
}

.radio-mark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--black);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.custom-radio input:checked + .radio-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkout-section {
  background-color: var(--medium-gray);
  padding-bottom: var(--margin-160);
}
.checkout-grid {
  margin: auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 40px;
}
.checkout-content-wrapper {
  flex: 1;
}
.checkout-form-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.order-summary-card {
  width: 350px;
  background: var(--white);
  padding: 25px;
  border-radius: 4px;
}

.checkout-form-card h5 {
  color: var(--black);
  margin-bottom: 30px;
}

.checkout-row {
  display: flex;
  gap: 16px;
}

.checkout-field {
  flex: 1;
  margin-bottom: 16px;
}

.checkout-label {
  display: block;
  /*margin-bottom: 10px;*/
  /*color: var(--gray-700);*/
  /*font-size: var(--font-16);*/
  font-weight: var(--font-weight-400);
}

.checkout-label span {
  color: red;
}

.checkout-input,
.checkout-select {
  width: 100%;
  border: 1px solid var(--gray-200);
  background-color: var(--light-gray);
  padding: 14px 12px;
  border-radius: 6px;
  font-size: var(--font-16);
  font-family: var(--font-family) !important;
  font-weight: var(--font-weight-500);
  outline: none;
}

.checkout-save-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 17px;
}

.checkout-checkbox {
  width: 24px;
  height: 24px;
  accent-color: var(--primary);
}

.checkout-checkbox-text {
  font-size: var(--font-14);
  font-weight: var(--font-weight-500);
  color: var(--gray);
}

.checkout-policy {
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.policy-text {
  font-size: var(--font-14);
  font-weight: var(--font-weight-400);
  color: var(--black);
  line-height: 20px;
  margin-bottom: 24px;
}

.policy-text a {
  color: var(--primary);
  text-decoration: none;
}

.policy-text a:hover {
  text-decoration: underline;
}

.terms-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.terms-check input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: var(--primary);
}

.terms-check label {
  font-size: var(--font-16);
  font-weight: var(--font-weight-500);
  color: var(--black);
  cursor: pointer;
}

.checkout-field {
  margin-bottom: 20px;
}

.checkout-label span {
  color: red;
}

.checkout-select {
  position: relative;
  width: 100%;
}

.checkout-selected {
  width: 100%;

  border-radius: 6px;
  font-size: var(--font-16);
  font-family: var(--font-family) !important;
  font-weight: var(--font-weight-500);

  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.checkout-arrow {
  font-size: var(--font-12);
  transition: 0.3s;
}

.checkout-select.active .checkout-arrow {
  transform: rotate(180deg);
}

.checkout-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  display: none;
  z-index: 99;
  overflow: hidden;
}

.checkout-select.active .checkout-options {
  display: block;
}

.checkout-options li {
  padding: 14px 16px;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-options li:hover {
  background: var(--bg-soft);
}

.checkout-wrapper {
  margin: auto;
  display: flex;
  gap: 24px;
  padding-top: 40px;
}

.payment-section {
  flex: 1;
  background: var(--white);
  padding: 25px;
  margin-bottom: 24px;
}

.payment-section h5 {
  font-weight: var(--font-weight-600);
  margin-bottom: 30px;
}

.payment-box {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  margin-bottom: 18px;
  background: var(--light-gray);
}

.payment-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--font-16);
  font-weight: var(--font-weight-500);
  color: var(--black);
}

.payment-header input {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
}

.card-body {
  padding: 18px 24px 24px;
}
.card-body .btn {
  width: 100%;
  max-width: 267px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body p {
  color: var(--gray-700);
  font-weight:var(--font-weight-500);
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 16px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.payment-box .form-group label {
  color: var(--gray-700);
}

.input-wrap {
  position: relative;
}

.card-logo {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: var(--font-weight-700);
  color: #1a1f71 !important;
}
.card-body {
  display: none;
}

.card-body.active {
  display: block;
}

.Order-summary {
  background-color: var(--white);
  padding: 24px;
}

.Order-summary h5 {
  margin-bottom: 0px;
  font-weight: var(--font-weight-500);
}

.Order-summary .cart-table-item {
  background-color: var(--light-gray);
  border: 1px solid var(--gray-200);
  margin-top: 16px;
  border-radius: 6px;
}

.qty {
  width: 120px;
  text-align: center;
  font-size: var(--font-16);
  font-weight: var(--font-weight-500);
  color: var(--black);
}
.bb-qty {
  width: auto;
     
}
.bb-product-price .bb-qty {
    margin-bottom: 0px !important;
}
.order-info-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.order-info-card-card {
  background: var(--white);
  padding: 28px;
  border-radius: 6px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2.5fr;
  gap: 16px;
  transition: 0.3s;
}

.order-info-card-icon {
  width: 86px;
  height: 86px;
  background-color: var(--gray-200);
  display: flex;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.order-info-card-icon img {
  width: 40px;
  height: 40px;
}

.order-info-card-content h6 {
  font-weight: var(--font-weight-500);
  margin-bottom: 6px;
}

.order-info-card-content p {
  color: var(--gray-700);
  font-weight: var(--font-weight-500);
}

.payment-success-wrapper {
  max-width: 672px;
  width: 100%;
  text-align: center;

  margin: 62px auto 80px;
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.success-icon img {
  width: 196px;
  height: 196px;
}
.payment-success-wrapper h3 {
  font-weight: var(--font-weight-600);
  color: var(--black);
  margin-bottom: 24px;
}

.payment-success-wrapper p {
  margin: 0 auto 40px;
  color: var(--gray-700);
  font-weight: var(--font-weight-500);
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.success-buttons .btn {
  width: 100%;
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-login-card{
    background:#fff;
    border-radius:12px;
    padding:28px;
   
    border:1px solid #ececec;
}

.checkout-login-header{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
    font-weight:600;
    color:#111;
}

.checkout-login-header svg{
    color:#FFC107;
    flex-shrink:0;
}

.checkout-login-header a{
    color:#111;
    font-weight:700;
    text-decoration:none;
}

.checkout-login-header a:hover{
    color:#FFC107;
}

.woocommerce-form-login{
    margin-top:25px;
}

.woocommerce-form-login p{
    margin-bottom:18px;
}

.woocommerce-form-login input.input-text{
    width:100%;
    height:56px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 18px;
    font-size:16px;
}

.woocommerce-form-login button{
    height:50px;
    background:#FFC107;
    border:none;
    border-radius:8px;
    padding:0 40px;
    font-size:16px;
    font-weight:700;
    color:#000;
    cursor:pointer;
    transition:.3s;
}

.woocommerce-form-login button:hover{
    background:#f5b400;
}

.woocommerce-form-login .woocommerce-form-login__rememberme{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
}
.checkout-section .cart-item-actions {
    display: INLINE-BLOCK;
     gap: 0px; 
    align-items: center;
}
.checkout-section .cart-product-image img {
    width: 60px;
    height: auto;
    display: block;
}
.Order-summary {
    background-color: var(--white);
    padding: 0px 0 24PX 0;
}
.checkout-section .cart-table-item{PADDING:0;}
.place-order .button{
width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--black);
    gap: 10px;
    /* width: fit-content; */
    padding: 15px 33px;
    border: none;
    border-radius: 6px;
    /* background: transparent; */
    cursor: pointer;
    font-size: var(--font-16);
    font-weight: var(--font-weight-500);
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 30px;
}
/*.woocommerce-checkout-review-order-table{display:none;}*/

/*Checkout Review Order */

.bb-order-products{
    border:1px solid #e5e5e5;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
}

.bb-product{
    display:flex;
    align-items:center;
    gap:20px;
    padding:10px;
    border-bottom:1px solid #eee;
}

.bb-product:last-child{
    border-bottom:none;
}

.bb-product-image img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.bb-product-content{
    flex:1;
}

.bb-product-content h4{
    margin:0 0 8px;
    font-size:16px;
    font-weight:500;
}

.bb-product-price{
      display: flex;
    gap: 10px;
        align-items: center;
}

.bb-product-price .qty{
    display:block;
   
    margin-bottom:6px;
        display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 20px;
}

.bb-product-price .price{
    font-size:20px;
    font-weight:500;
}
.woocommerce-Price-amount amount{font-size:24px;
    font-weight:600 !important;}

.bb-cart-totals{
    margin-top:35px;
}

.bb-cart-totals h3{
    margin-bottom:25px;
}

.bb-row{
    display:flex;
    justify-content:space-between;
    padding:18px 0;
    border-bottom:1px solid #ececec;
}

.bb-total{
    font-size:24px;
    font-weight:700;
}

.bb-shipping{
    padding:20px 0;
    border-bottom:1px solid #ececec;
    display: flex;
    justify-content: space-between;
}

.shipping-method{
    display:flex;
    margin-top:15px;
    cursor:pointer;
}

.shipping-method span{
    margin-left:12px;
}
.thankyou_page .Order-summary {
  background-color: var(--white);
  padding: 24px;
}
.thankyou_page .checkout-section .cart-item-actions {
    display: flex;
    gap: 85px;
    align-items: center;
}
.thankyou_page .checkout-section .cart-table-item {
    padding: 10px 20px 10px 20px;
}
.thankyou_page .checkout-section .cart-product-image img {
    width: 100px;
    height: auto;
    display: block;
}
.thankyou_page .order-additional-details{display:none;}
.bb-view-order-page .Order-summary {
  background-color: var(--white);
  padding: 24px;
}
.bb-view-order-page .checkout-section .cart-item-actions {
    display: flex;
    gap: 85px;
    align-items: center;
}
.bb-view-order-page .checkout-section .cart-table-item {
    PADDING: 20px;
}
.bb-view-order-page .checkout-section .cart-product-image img {
    width: 100px;
    height: auto;
    display: block;
}
.bb-view-order-page .order-info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.bb-view-order-page .order-info-card-grid.first_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom:24px;
    margin-top:24px;
}
.bb-view-order-page .cart-item-actions {
    display: inline-block;
    gap: 85px;
    align-items: center;
}
.bb-empty-cart{
    padding:90px 0;
    background:#fff;
}

.bb-empty-cart-wrapper{
    max-width:760px;
    margin:auto;
    text-align:center;
}

.bb-empty-icon{
    width:140px;
    height:140px;
    margin:0 auto 30px;
    border-radius:50%;
    background:#FFF8E5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#222;
    position:relative;
}

.bb-empty-icon:before{
    content:"";
    position:absolute;
    inset:12px;
    border:2px dashed #FFC107;
    border-radius:50%;
}

.bb-empty-icon svg{
    width:70px;
    height:70px;
    position:relative;
    z-index:2;
}

.bb-empty-label{
    display:inline-block;
    background:#FFC107;
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    
    letter-spacing:1px;
    margin-bottom:20px;
}

.bb-empty-cart h2{
    font-size:52px;
    line-height:1.1;
    
    color:#111;
    margin-bottom:20px;
}

.bb-empty-cart p{
    max-width:520px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.8;
    color:#777;
}

.bb-empty-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.bb-btn-primary{
    background:#FFC107;
    color:#111;
    padding:18px 40px;
    border-radius:8px;
    font-size:17px;
   
    text-decoration:none;
    transition:.3s;
}

.bb-btn-primary:hover{
    background:#111;
    color:#fff;
}

.bb-btn-secondary{
    border:2px solid #111;
    color:#111;
    padding:18px 40px;
    border-radius:8px;
    font-size:17px;
    
    text-decoration:none;
    transition:.3s;
}

.bb-btn-secondary:hover{
    background:#111;
    color:#fff;
}

@media(max-width:768px){

    .bb-empty-cart{
        padding:60px 20px;
    }

    .bb-empty-icon{
        width:110px;
        height:110px;
    }

    .bb-empty-cart h2{
        font-size:36px;
    }

    .bb-empty-cart p{
        font-size:16px;
    }

    .bb-empty-buttons{
        flex-direction:column;
    }

    .bb-btn-primary,
    .bb-btn-secondary{
        width:100%;
    }

}

.woocommerce-Price-amount-total strong{
      color: var(--primary);
          font-weight: 500 !important;
}


.bb-shipping-method-list{
    list-style:none;
    padding:0;
    margin:0;
}

.bb-shipping-method-item{
    margin-bottom:15px;
}

.bb-shipping-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px 20px;
    border:2px solid #e4e4e4;
    border-radius:14px;
    cursor:pointer;
    transition:.3s;
    background:#fff;
}

.bb-shipping-card:hover{
    border-color:#000;
}

.bb-shipping-card input[type=radio]{
    width:20px;
    height:20px;
    margin:0;
    accent-color:#000;
    flex-shrink:0;
}

.bb-shipping-method-name{
    flex:1;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:16px;
    font-weight:500;
}

.bb-shipping-method-name .amount{
    font-weight:700;
}

.bb-shipping-card:has(input:checked){
    border-color:#000;
    background:#f7f7f7;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}



.wp-block-woocommerce-cart{
        width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px;

}
.checkout-button,
.fc-place-order-button,
.wc-backward{
        background: #FCC625 !important;
    color: #000 !important;
}

div.woocommerce form .form-row input[type=email],
body.has-highlighted-shipping-section div.woocommerce form .fc-step__substep[data-substep-id=shipping_address] input[type=text],
body.has-highlighted-billing-section div.woocommerce form .fc-step__substep[data-substep-id=billing_address] input[type=text],
body.has-highlighted-billing-section div.woocommerce form .fc-step__substep[data-substep-id=billing_address] input[type=tel]{
        width: 100%;
    height: 50px;
    padding: 14px 12px;
    border: 1px solid var(--neutral-300);
    border-radius: 6px;
    background: var(--light-gray);
    font-size: var(--font-16);
    font-weight: var(--font-weight-500);
    outline: none;
    
    font-family: var(--font-family) !important;
}
.fc-login-form form.login .form-row input[type=text],
.woocommerce-checkout .fc-login-form form.login .form-row input[type=password]{
      width: 100%;
    height: 50px;
    padding: 14px 12px;
    border: 1px solid var(--neutral-300);
    border-radius: 6px;
    background: var(--light-gray);
    font-size: var(--font-16);
    font-weight: var(--font-weight-500);
    outline: none;
    
    font-family: var(--font-family) !important; 
}
div.woocommerce form .form-row input[type=email]:focus,
body.has-highlighted-shipping-section div.woocommerce form .fc-step__substep[data-substep-id=shipping_address] input[type=text]:focus,
body.has-highlighted-billing-section div.woocommerce form .fc-step__substep[data-substep-id=billing_address] input[type=text]:focus,
body.has-highlighted-billing-section div.woocommerce form .fc-step__substep[data-substep-id=billing_address] input[type=tel]:focus{
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--neutral-300) !important;
}
.woocommerce-input-wrapper .input-checkbox {
    accent-color:#FCC625 !important;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

    body.woocommerce-checkout .fc-content.fc-container {
        padding: 0 15px 80px !important;
    }

@media (min-width: 1500px) {
    body.woocommerce-checkout .fc-content.fc-container {
        width: 100%;
    max-width: 1570px !important;
    margin: 0 auto !important;
    box-sizing: border-box;
    }
}

@media (min-width: 1000px) {
    body.has-checkout-column-layout--two_columns.admin-bar .fc-wrapper .fc-sidebar.is-sticky .fc-sidebar__inner {
        padding-top: 108px!important;
    }
}