/* Cart and Wishlist Visual Feedback Styles */

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

.updating {
    opacity: 0.7;
    pointer-events: none;
}

.deleting {
    opacity: 0.5;
    pointer-events: none;
}

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

/* Add to cart success feedback */
.added-success {
    background-color: #28a745 !important;
    color: white !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.added-success:hover {
    background-color: #218838 !important;
}

/* Wishlist feedback */
.wishlist-added {
    color: #dc3545 !important;
}

.wishlist-feedback {
    animation: wishlistPulse 0.6s ease-in-out;
}

@keyframes wishlistPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Toastr customization */
.toast-bottom-center {
    bottom: 20px;
    right: 20px;
}

.toast-success {
    background-color: #28a745;
    border-color: #1e7e34;
}

.toast-error {
    background-color: #dc3545;
    border-color: #bd2130;
}

.toast-warning {
    background-color: #ffc107;
    border-color: #d39e00;
    color: #212529;
}

.toast-info {
    background-color: #17a2b8;
    border-color: #117a8b;
}

/* Cart item hover effects */
.cart-item:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.quantity.buttons_added {
    position: relative;
}

.quantity.buttons_added input[type="button"] {
    transition: all 0.2s ease;
}

.quantity.buttons_added input[type="button"]:hover {
    background-color: #007bff;
    color: white;
}

.quantity.buttons_added input[type="button"]:active {
    transform: scale(0.95);
}

/* Delete button styling */
.delete-cart-item {
    transition: all 0.2s ease;
    color: #6c757d;
}

.delete-cart-item:hover {
    color: #dc3545;
    transform: scale(1.1);
}

.delete-cart-item:active {
    transform: scale(0.95);
}

/* Success animation for cart updates */
.cart-update-success {
    animation: cartUpdateSuccess 0.5s ease-in-out;
}

@keyframes cartUpdateSuccess {
    0% { background-color: transparent; }
    50% { background-color: #d4edda; }
    100% { background-color: transparent; }
}

/* Button states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-cart2:disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

/* Cart count badge */
.cart-count, .wishlist-count {
    transition: all 0.3s ease;
}

.cart-count.updated, .wishlist-count.updated {
    animation: countUpdate 0.5s ease-in-out;
}

@keyframes countUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Empty cart styling */
.cart-empty-message {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.cart-empty-message h4 {
    color: #6c757d;
    margin-bottom: 15px;
}

.cart-empty-message p {
    color: #868e96;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .toast-bottom-center {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .cart-item {
        font-size: 14px;
    }
    
    .quantity.buttons_added input[type="number"] {
        width: 50px;
    }
}

/* Login and Registration Form Styles */
.login-area, .register-area, .forgot-password-area, .reset-password-area {
    background-color: #f8f9fa;
    min-height: 60vh;
}

.login-form-wrap, .register-form-wrap, .forgot-password-form-wrap, .reset-password-form-wrap {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.login-form-wrap:hover, .register-form-wrap:hover, .forgot-password-form-wrap:hover, .reset-password-form-wrap:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.login-form-header, .register-form-header, .forgot-password-form-header, .reset-password-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-form-header h3, .register-form-header h3, .forgot-password-form-header h3, .reset-password-form-header h3 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-form-header p, .register-form-header p, .forgot-password-form-header p, .reset-password-form-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group .input-group {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-group .input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-right: none;
    color: #6c757d;
    padding: 12px 15px;
    min-width: 50px;
    text-align: center;
}

.form-group .form-control {
    border: 1px solid #e9ecef;
    border-left: none;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group .form-control:focus {
    box-shadow: none;
    border-color: #007bff;
    background-color: #fff;
}

.form-group .form-control:focus + .input-group-text {
    border-color: #007bff;
    background-color: #f8f9fa;
}

/* Password Toggle Button */
.btn-outline-secondary {
    border: 1px solid #e9ecef;
    border-left: none;
    background-color: #f8f9fa;
    color: #6c757d;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #e9ecef;
    color: #495057;
    border-color: #dee2e6;
}

/* Checkbox Styling */
.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    margin-right: 10px;
    border: 2px solid #dee2e6;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.form-check-label {
    color: #666;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

/* Submit Button */
.btn-black {
    background: #292929;
    color: #ffffff;
    font-weight: 400;
    border: none;
    padding: 12px 25px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-black:hover {
    background: var(--main-color);
    color: #ffffff;
    text-decoration: none;
}

.btn-black:active {
    transform: translateY(1px);
}

/* Links */
.forgot-link, .register-link, .login-link, .terms-link, .privacy-link, .back-to-login {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-link:hover, .register-link:hover, .login-link:hover, .terms-link:hover, .privacy-link:hover, .back-to-login:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Divider */
.login-divider, .register-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.login-divider::before, .register-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e9ecef;
}

.login-divider span, .register-divider span {
    background-color: white;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Alert Messages */
.alert {
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 14px;
    position: relative;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    margin-right: 8px;
}

.btn-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 1;
}

/* Error Messages */
.text-danger {
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.text-danger i {
    margin-right: 5px;
    font-size: 14px;
}

/* Password Match Indicator */
#password-match {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

#password-match i {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-form-wrap, .register-form-wrap, .forgot-password-form-wrap, .reset-password-form-wrap {
        padding: 30px 20px;
        margin: 10px 0;
    }
    
    .login-form-header h3, .register-form-header h3, .forgot-password-form-header h3, .reset-password-form-header h3 {
        font-size: 24px;
    }
    
    .login-form-header p, .register-form-header p, .forgot-password-form-header p, .reset-password-form-header p {
        font-size: 14px;
    }
    
    .btn-black {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .form-group .form-control {
        padding: 10px 12px;
    }
    
    .form-group .input-group-text {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .login-form-wrap, .register-form-wrap, .forgot-password-form-wrap, .reset-password-form-wrap {
        padding: 25px 15px;
    }
    
    .login-form-header h3, .register-form-header h3, .forgot-password-form-header h3, .reset-password-form-header h3 {
        font-size: 22px;
    }
    
    .btn-black {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Animation for form elements */
.form-group {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.btn-black.loading {
    position: relative;
    color: transparent;
}

.btn-black.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success state for form submission */
.form-submitted {
    animation: formSuccess 0.5s ease-in-out;
}

@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.add-to-cart, .add-to-cart-direct {
    transition: all 0.3s ease;
}

.add-to-cart:hover, .add-to-cart-direct:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.add-to-wishlist {
    transition: all 0.3s ease;
}

.add-to-wishlist:hover {
    transform: scale(1.1);
}

.add-to-wishlist i {
    transition: all 0.3s ease;
}

.productvar.active {
    background-color: #007bff;
    color: white;
}

.productvar {
    transition: all 0.3s ease;
}

.productvar:hover {
    background-color: #e9ecef;
}

/* Search Functionality Styles */
.search-results-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.search-results-info h5 {
    color: #333;
    margin-bottom: 10px;
}

.search-results-info p {
    margin-bottom: 10px;
    color: #666;
}

.no-results {
    padding: 60px 20px;
    text-align: center;
}

.no-results i {
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #333;
    margin-bottom: 15px;
}

.no-results p {
    color: #666;
    margin-bottom: 25px;
}

/* Search popup improvements */
.search-popup {
    background: rgba(0, 0, 0, 0.9);
}

.search-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 25px;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    color: #333;
}

.search-form .submit-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.search-form .submit-btn:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

/* Search loading state */
.search-loading {
    opacity: 0.7;
    pointer-events: none;
}

.search-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive search */
@media (max-width: 768px) {
    .search-form {
        max-width: 90%;
    }
    
    .search-form .form-control {
        font-size: 14px;
        padding: 12px 45px 12px 15px;
    }
    
    .search-form .submit-btn {
        width: 35px;
        height: 35px;
    }
}

/* Checkout Page Styles */
.checkout-area {
    background-color: #f8f9fa;
}

.checkout-notice {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.checkout-notice .alert {
    border: none;
    border-radius: 6px;
    margin-bottom: 20px;
}

.coupon-section {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.coupon-toggle {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.coupon-toggle:hover {
    background: #e9ecef;
}

.coupon-toggle i {
    margin-right: 10px;
    color: #666;
}

.coupon-form {
    padding: 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.checkout-billing-details-wrap,
.order-summary-details {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title h4 {
    color: #292929;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E9AD99;
    display: flex;
    align-items: center;
}

.section-title h4 i {
    margin-right: 10px;
    color: #E9AD99;
}

/* Address Selection Styles */
.address-selection h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.address-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    margin-bottom: 15px;
    user-select: none;
}

.address-card:hover {
    border-color: #E9AD99;
    box-shadow: 0 4px 15px rgba(233, 173, 153, 0.2);
}

.address-card.selected {
    border-color: #E9AD99;
    background: #fef8f7;
    box-shadow: 0 4px 15px rgba(233, 173, 153, 0.3);
}

.address-radio {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
    top: 10px;
    right: 10px;
    pointer-events: auto;
    width: 20px;
    height: 20px;
}

.address-radio:checked {
    opacity: 0.3;
}

.address-label {
    cursor: pointer;
    margin: 0;
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.address-selection-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.address-selection-indicator.selected {
    border-color: #E9AD99;
    background: #E9AD99;
    color: white;
}

.address-selection-indicator i {
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.address-selection-indicator.selected i {
    opacity: 1;
}

.address-content h6 {
    color: #292929;
    margin-bottom: 10px;
}

.address-content p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.address-content p i {
    color: #E9AD99;
    margin-right: 5px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-group label.required::after {
    content: " *";
    color: #dc3545;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #E9AD99;
    box-shadow: 0 0 0 0.2rem rgba(233, 173, 153, 0.25);
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 45px;
    line-height: 45px;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #E9AD99;
}

/* Order Summary Styles */
.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-details h6 {
    margin-bottom: 5px;
    font-size: 14px;
}

.item-details h6 a {
    color: #292929;
    text-decoration: none;
}

.item-details h6 a:hover {
    color: #E9AD99;
}

.item-details small {
    color: #666;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.item-qty {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.item-price {
    color: #292929;
    font-weight: 600;
    margin: 0;
}

/* Order Totals */
.order-totals {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.total-row:last-child {
    border-bottom: none;
}

.total-amount {
    font-size: 18px;
    font-weight: 600;
    color: #292929;
    border-top: 2px solid #E9AD99;
    padding-top: 15px;
    margin-top: 10px;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 25px;
}

.payment-method {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #E9AD99;
    background: #fef8f7;
}

.payment-method .custom-control-label {
    font-weight: 500;
    color: #292929;
    cursor: pointer;
}

.payment-method .custom-control-label i {
    margin-right: 8px;
    color: #E9AD99;
}

.payment-method p {
    margin: 8px 0 0 0;
    color: #666;
    font-size: 13px;
}

/* Checkout Footer */
.checkout-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.checkout-footer .custom-control-label {
    font-size: 14px;
    color: #666;
}

.checkout-footer .custom-control-label a {
    color: #E9AD99;
    text-decoration: none;
}

.checkout-footer .custom-control-label a:hover {
    text-decoration: underline;
}

.submit_btn {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit_btn i {
    margin-right: 8px;
}

/* Empty Cart */
.empty-cart {
    background: white;
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-cart i {
    color: #ccc;
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: #333;
    margin-bottom: 15px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-billing-details-wrap,
    .order-summary-details {
        padding: 20px;
    }
    
    .address-card {
        padding: 15px;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .total-row {
        font-size: 14px;
    }
    
    .total-amount {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .coupon-form .row {
        flex-direction: column;
    }
    
    .coupon-form .col-md-4 {
        margin-top: 10px;
    }
    
    .section-title h4 {
        font-size: 18px;
    }
    
    .submit_btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Loading State */
.submit_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Field Error Styles */
.field_error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.field_error::before {
    content: "⚠ ";
    margin-right: 5px;
}

/* Animation for form elements */
.checkout-billing-details-wrap,
.order-summary-details {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FRONTEND ACCOUNT STYLES ===== */
/*-------- Start My Account Page Wrapper --------*/
.myaccount-tab-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.myaccount-tab-menu a {
  border: 1px solid #efefef;
  border-bottom: none;
  color: #222222;
  font-weight: 400;
  font-size: 15px;
  display: block;
  padding: 10px 15px;
  text-transform: capitalize;
}
.myaccount-tab-menu a:last-child {
  border-bottom: 1px solid #efefef;
}
.myaccount-tab-menu a:hover, .myaccount-tab-menu a.active {
  background-color: #c29958;
  border-color: #c29958;
  color: #fff;
}
.myaccount-tab-menu a i.fa {
  font-size: 14px;
  text-align: center;
  width: 25px;
}

@media only screen and (max-width: 767.98px) {
  #myaccountContent {
    margin-top: 30px;
  }
}

.myaccount-content {
  border: 1px solid #eeeeee;
  padding: 30px;
}
@media only screen and (max-width: 575.98px) {
  .myaccount-content {
    padding: 20px 15px;
  }
}
.myaccount-content form {
  margin-top: -20px;
}
.myaccount-content h5 {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.myaccount-content .welcome a {
  color: #222222;
}
.myaccount-content .welcome a:hover {
  color: #c29958;
}
.myaccount-content .welcome strong {
  font-weight: 500;
  color: #c29958;
}
.myaccount-content fieldset {
  margin-top: 20px;
}
.myaccount-content fieldset legend {
  color: #222222;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 400;
  border-bottom: 1px dashed #ccc;
}

.myaccount-table {
  white-space: nowrap;
  font-size: 14px;
}
.myaccount-table table th,
.myaccount-table .table th {
  color: #222222;
  padding: 10px;
  font-weight: 400;
  background-color: #f8f8f8;
  border-color: #ccc;
  border-bottom: 0;
}
.myaccount-table table td,
.myaccount-table .table td {
  padding: 10px;
  vertical-align: middle;
  border-color: #ccc;
}

.saved-message {
  background-color: #f4f5f7;
  border-top: 3px solid #c29958;
  border-radius: 5px 5px 0 0;
  font-weight: 400;
  font-size: 15px;
  color: #555555;
  padding: 20px;
}

/*-------- End My Account Page Wrapper --------*/

/* ===== FRONTEND TYPOGRAPHY STYLES ===== */
body {
  color: #555555;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
  color: #c29958;
}
a:hover, a:focus {
  outline: none;
  text-decoration: none;
  color: #000;
}

p {
  margin-bottom: 8px;
}
p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  color: #222222;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  line-height: 1.5;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

strong,
b {
  font-weight: 700;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn,
button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: transparent;
}
.btn:active, .btn:focus,
button:active,
button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input,
textarea {
  resize: none;
}
input:focus,
textarea:focus {
  outline: none;
}

.form-control:focus {
  border-color: #c29958;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-group {
  margin-bottom: 1rem;
}

::-moz-selection {
  color: #fff;
  background: #c29958;
}

::selection {
  color: #fff;
  background: #c29958;
}

::-webkit-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::-moz-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

/* ===== FRONTEND BUTTON STYLES ===== */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.btn-text {
  color: #c29958;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
}
.btn-text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #c29958;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.btn-text:hover {
  color: #c29958;
}
.btn-text:hover:before {
  width: 100%;
}

.btn-cart {
  background-color: #c29958;
  color: #fff;
  border: 1px solid #c29958;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.btn-cart:hover {
  background-color: #222222;
  border-color: #222222;
}

.btn-cart2 {
  background-color: #222222;
  color: #fff;
  border: 1px solid #222222;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.btn-cart2:hover {
  background-color: #c29958;
  border-color: #c29958;
}

.btn-sqr {
  background-color: #c29958;
  color: #fff;
  border: 1px solid #c29958;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.btn-sqr:hover {
  background-color: #222222;
  border-color: #222222;
}

/* ===== FRONTEND TABLE STYLES ===== */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: transparent;
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px transparent;
          box-shadow: inset 0 0 0 9999px transparent;
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

/* ===== FRONTEND CUSTOM CHECKBOX STYLES ===== */
.custom-checkbox.custom-control,
.custom-radio.custom-control {
  padding-left: 0;
}

.custom-checkbox .custom-control-label,
.custom-radio .custom-control-label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

.custom-checkbox .custom-control-label:before,
.custom-radio .custom-control-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 3px;
}

.custom-checkbox .custom-control-label:after,
.custom-radio .custom-control-label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label a,
.custom-radio .custom-control-label a {
  color: #c29958;
}
.custom-checkbox .custom-control-label a:hover,
.custom-radio .custom-control-label a:hover {
  color: #222222;
}

.custom-checkbox input,
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox input:focus ~ .custom-control-label:before,
.custom-radio input:focus ~ .custom-control-label:before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(194, 153, 88, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(194, 153, 88, 0.25);
}

.custom-checkbox input:checked ~ .custom-control-label:before,
.custom-radio input:checked ~ .custom-control-label:before {
  background-color: #c29958;
  border-color: #c29958;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-radio label:before {
  border-radius: 50%;
}

.custom-radio label::after {
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='-4 -4 8 8'%3e%3ccircle r='2'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='-4 -4 8 8'%3e%3ccircle r='2'/%3e%3c/svg%3e");
}

/* ===== FRONTEND UTILITY CLASSES ===== */
.bg-gray {
  background-color: #f8f8f8;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mtn-20 {
  margin-top: -20px;
}

.mbn-30 {
  margin-bottom: -30px;
}

.mtn-30 {
  margin-top: -30px;
}

.ptb-30 {
  padding: 30px 0;
}

.section-padding {
  padding: 100px 0;
}

@media only screen and (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* ===== FRONTEND RESPONSIVE STYLES ===== */
@media only screen and (max-width: 767.98px) {
  .myaccount-tab-menu {
    margin-bottom: 30px;
  }
  
  .myaccount-content {
    padding: 20px 15px;
  }
  
  .myaccount-table {
    font-size: 13px;
  }
  
  .myaccount-table table th,
  .myaccount-table .table th,
  .myaccount-table table td,
  .myaccount-table .table td {
    padding: 8px 5px;
  }
}

@media only screen and (max-width: 575.98px) {
  .myaccount-content {
    padding: 15px 10px;
  }
  
  .myaccount-table {
    font-size: 12px;
  }
  
  .myaccount-table table th,
  .myaccount-table .table th,
  .myaccount-table table td,
  .myaccount-table .table td {
    padding: 6px 3px;
  }
  
  .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}

/* ===== FRONTEND FORM INPUT STYLES ===== */
/*------- input box style css start -------*/
.single-input-item {
  margin-top: 20px;
}
.single-input-item label {
  color: #222222;
  text-transform: capitalize;
  font-size: 14px;
}
.single-input-item label.required:after {
  content: "*";
  color: red;
  font-size: 14px;
  margin-left: 3px;
  margin-top: 5px;
}
.single-input-item input,
.single-input-item textarea {
  color: #555555;
  border: 1px solid #ccc;
  padding: 12px 10px;
  width: 100%;
  font-size: 14px;
  background: #f7f7f7;
}
.single-input-item input:active, .single-input-item input:focus,
.single-input-item textarea:active,
.single-input-item textarea:focus {
  border-color: #c29958;
  background-color: #fff;
}
.single-input-item .nice-select {
  width: 100%;
  border-radius: 0;
  height: 48px;
  border-color: #ccc;
  background-color: #f7f7f7;
}
.single-input-item .nice-select .current {
  color: #555555;
}
.single-input-item .nice-select .list {
  max-height: 200px;
  overflow: auto;
  width: 100%;
}
/*------- input box style css end -------*/

/* ===== FRONTEND ACCOUNT DETAILS FORM STYLES ===== */
.account-details-form {
  margin-top: 20px;
}

.account-details-form .row {
  margin-left: -10px;
  margin-right: -10px;
}

.account-details-form .col-lg-6 {
  padding-left: 10px;
  padding-right: 10px;
}

.account-details-form .single-input-item:first-child {
  margin-top: 0;
}

.account-details-form .single-input-item:last-child {
  margin-top: 30px;
  text-align: center;
}

.account-details-form .btn-sqr {
  min-width: 150px;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.account-details-form .btn-sqr:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 153, 88, 0.3);
}

/* ===== FRONTEND BREADCRUMB STYLES ===== */
.breadcrumb-area {
  background-color: #f8f8f8;
  /* padding: 20px 0; */
  border-bottom: 1px solid #eee;
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.breadcrumb-item {
  color: #555555;
  font-size: 14px;
}

.breadcrumb-item a {
  color: #c29958;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #222222;
}

.breadcrumb-item.active {
  color: #222222;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #ccc;
  margin: 0 10px;
}

.breadcrumb-item i {
  margin-right: 5px;
}

/* ===== FRONTEND MY ACCOUNT WRAPPER STYLES ===== */
.my-account-wrapper {
  padding: 60px 0;
  background-color: #fff;
}

.my-account-wrapper .container {
  max-width: 1200px;
}

.my-account-wrapper .row {
  margin-left: -15px;
  margin-right: -15px;
}

.my-account-wrapper .col-lg-3,
.my-account-wrapper .col-lg-9,
.my-account-wrapper .col-md-4,
.my-account-wrapper .col-md-8 {
  padding-left: 15px;
  padding-right: 15px;
}

/* ===== FRONTEND RESPONSIVE FORM STYLES ===== */

/* new css start */
.product-slider-2 .owl-stage {
  display: flex
;
  flex-wrap: wrap;
}

.product-slider-2 .owl-stage .item {
  width: 100%;
  height: 100%;
}

.product-slider-2 .owl-stage .product-single-wrap {
  width: 100%;
  height: 100%;
}

.product-slider-2 .owl-stage .product-single-wrap .thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-slider-2 .owl-stage .product-single-wrap .thumb a {
  width: 100%;
  height: 100%;
  display: block;
}

.product-slider-2 .owl-stage .product-single-wrap .thumb a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login-form .btn-black{
  background: #c29958; 
  color: #fff;
}
.login-form .btn-black:hover{ 
  background: var(--main-color);
  color: #ffffff; 
}

.product-single-wrap {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}
.product-single-wrap .thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-single-wrap .thumb a, .product-single-wrap .thumb a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget .list-group .list-group-item {
  padding: 0;
  border: 0;
  margin: 0;
  background-color: transparent;
}
.sidebar-widget .list-group .list-group-item a {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
}

.sidebar-widget .list-group .list-group-item a:first-child{
  border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.sidebar-widget .list-group .list-group-item a:hover, .sidebar-widget .list-group .list-group-item a.active {
  background-color: #c29958;
  color: #fff;
  border-color: #c29958;
}
.gallery-section {
  max-width: 1140px;
  margin: auto;
}

.gallery-section .gallery-item .product-single-wrap h1 {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

.gallery-section .gallery-item .product-single-wrap {
  margin-bottom: 40px;
}
.row.mt-4 .col-12.text-center:empty{
  display:none;
}
/* new css end */
@media only screen and (max-width: 767.98px) {
  .my-account-wrapper {
    padding: 40px 0;
  }
  
  .breadcrumb-area {
    padding: 15px 0;
  }
  
  .account-details-form .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .account-details-form .col-lg-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  .single-input-item {
    margin-top: 15px;
  }
  
  .single-input-item input,
  .single-input-item textarea {
    padding: 10px 8px;
    font-size: 13px;
  }
  
  .account-details-form .btn-sqr {
    min-width: 120px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 575.98px) {
  .my-account-wrapper {
    padding: 30px 0;
  }
  
  .breadcrumb-area {
    padding: 10px 0;
  }
  
  .breadcrumb-item {
    font-size: 13px;
  }
  
  .account-details-form .single-input-item:last-child {
    margin-top: 25px;
  }
  
  .account-details-form .btn-sqr {
    width: 100%;
    min-width: auto;
  }
} 