
  

.loader-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000094;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
   
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 



.help-block-error {
    color: red;
}

.address-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 0 20px 0;
}

@media (max-width:767px) {
    .address-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.address-item {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.address-item-content-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 6px;
}

.address-item-content-address,
.address-item-content-phone,
.address-item-content-email,
.address-item-content-type {
    font-size: 14px;
    margin-bottom: 4px;
    color: #444;
}

.address-item-content-type {
    font-style: italic;
    color: #666;
}

.address-item-action {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.address-btn {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px dashed #333;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

/* .address-btn:hover {
    background-color: #333;
    color: white;
} */

.address-btn.delete {
    border-color: red;
    color: red;
}

.address-btn.delete:hover {
    background-color: red;
    color: white;
}

/* Add New Address Styling */
.address-item.add-new {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #888;
    text-align: center;
    min-height: 120px;
}

.address-item.add-new a {
    text-decoration: none;
    color: #333;
}

.plus-icon {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 4px;
}

.add-label {
    font-size: 14px;
    font-weight: 500;
}


.cart-oops .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.cart-empty-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 40px 30px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.cart-empty-box .svg-icon {
    margin-bottom: 20px;
}

.cart-empty-box h2 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.cart-empty-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.cart-empty-box .back-btn {
    background-color: #222;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cart-empty-box .back-btn:hover {
    background-color: #000;
}

.right-content,
.profile-menu
/* .login-btn */{
    margin-bottom: 10px !important;
}
.profile-menu .right-content .content table{
    border: 1px solid var(--color-5);
}
.profile-menu .right-content .content table th{
    font-weight: 500;
    padding: 20px 10px;
    border-bottom: 1px solid var(--color-5);
}
.profile-menu .right-content .content table td{
    padding: 10px;
    align-content: center;
}
.profile-menu .right-content .content table td a.order-view{
    background-color: var(--color-1);
    color: var(--color-3);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    display: inline-block;
    transition: background 0.3s ease;
}
.profile-menu .right-content .content table td a.order-view:hover{
    background-color: var(--color-2);
}

.order-summary {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .order-summary h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .order-summary strong {
    color: #000;
  }
  .order-summary .status {
    color: #0066cc;
    font-weight: bold;
  }

  .order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .order-table th, .order-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }
  .order-table th {
    background: #f0f0f0;
  }
  .billing-box {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 6px;
  }
  .billing-box p {
    margin: 5px 0;
    line-height: 1.5;
  }
  .icon {
    margin-right: 5px;
    color: #555;
  }


  .variant-section {
    margin-bottom: 20px;
  }
  .variant-title {
    font-weight: bold;
    margin-bottom: 8px;
  }
  .variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .variant-option {
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
  }
  .variant-option:hover {
    border-color: #007bff;
    color: #007bff;
  }
  .variant-option.active {
    border-color: #007bff;
    /* background: #e9f3ff; */
    font-weight: bold;
  }
  .price-box {
    margin-bottom: 20px;
  }
  .price {
    font-size: 20px;
    font-weight: bold;
    color: #d32f2f;
  }
  .old-price {
    text-decoration: line-through;
    color: #666;
    margin-left: 10px;
  }
  


  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    gap: 20px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-attributes {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #555;
}

.cart-attributes li {
    margin-bottom: 4px;
}

.cart-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-price {
    font-size: 18px;
    font-weight: bold;
    color: #e63946;
}

.regular-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.qty-value {
    min-width: 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: #e63946;
    cursor: pointer;
}


.order-attributes {
    margin-top: 15px;
}
.order-attributes .attr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.order-attributes .attr-list li {
    margin-bottom: 8px;
    font-size: 14px;
}
.order-attributes .attr-list strong {
    margin-right: 5px;
    color: #333;
}
.order-attributes .color-box {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid #ccc;
    vertical-align: middle;
}
.order-attributes .attr-text {
    vertical-align: middle;
}
.order-attributes .discount-price {
    color: #e74c3c;
    font-weight: bold;
    margin-right: 5px;
}
.order-attributes .old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 13px;
}

.main-menu .inner .content-box .two-banner .image {
    border-radius: 24px;
    overflow: hidden;
}
.whatapp-icon{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
.whatapp-icon a {
    display: block;
    width: 70px;
    height: 70px;
    padding: 14px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
}
.whatapp-icon a img{
    width: 100%;
    height: 100%;
}

.copyiright .image{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.copyiright .image img{
    height: 16px;
}