/* Frontend Styles for NovinShop Plus */

/* Free Shipping Styles */
.nsp-free-shipping {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.nsp-free-shipping-success {
    color: black;
}

.nsp-progress-wrapper {
    width: 100%;
    background: #eee;
    border-radius: 12px !important;
    height: 5px;
    margin-top: 10px;
}

.nsp-progress-bar {
    background: #68C455;
    border-radius: 12px !important;
    height: 100%;
    transition: width 0.5s;
}

/* Cart Savings Styles */
.novin-savings-amount {
    font-weight: bold;
    color: #28a745 !important;
}

.novin-cart-savings th,
.novin-checkout-savings th {
    font-weight: bold;
}

/* Order Tracking Styles */
.novin-tracking {
    background: #f1f3ff !important;
    color: #4A6DFF !important;
    padding: 3px 10px !important;
    border-radius: 25px !important;
    display: inline-block !important;
}

/* Express Shipping Badge */
.novin-express-badge {
    display: inline-block;
    background: #4A6DFF;
    color: #fff !important;
    padding: 5px 8px;
    border-radius: 100px;
    font-size: 12px !important;
    font-weight: 500 !important;
    position: relative;
}

@media (max-width: 2560px) {
    .novin-express-badge {
        font-size: 10px !important;
    }
}

.woocommerce-cart .novin-express-badge {
    padding: 4px 8px !important;
}

/* Modal Styles */
.novin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 11%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.novin-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 2px 20px rgb(0 0 0 / 7%);
}

.novin-modal-content h4 {
    font-weight: 600;
    margin: 8px;
    font-size: 20px;
}

.novin-modal-content p {
    margin: 0 0 20px;
    color: #888;
    font-size: 14px;
    border-bottom: 1px solid rgba(32, 34, 38, 0.08);
    padding-bottom: 16px;
}

.novin-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.novin-modal-buttons .button {
    padding: 12.5px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.novin-loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: novin-spin 1s linear infinite;
    margin-right: 5px;
    vertical-align: middle;
}

@keyframes novin-spin {
    to { transform: rotate(360deg); }
}

/* Sold Progress Styles */
.novin-sold-progress {
    margin: 15px 0;
    max-width: 100%;
}

.novin-sold-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 12px;
    color: #666;
}

@media (max-width: 1280px) {
    .novin-sold-info {
        font-size: 10px;
    }
}

.novin-progress-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.novin-progress-fill {
    height: 100%;
    background: #ef394e;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.woocommerce-loop-product__link .novin-sold-progress {
    margin: 8px 0;
}

/* Product Attributes Styles */
.novin-attributes-container {
    margin: 30px 0;
}

.novin-attributes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.novin-attribute-item {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #eee;
}

.novin-attribute-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.novin-attribute-value {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .novin-attribute-name {
        font-size: 13px;
    }
    .novin-attribute-value {
        font-size: 12px;
    }
}

/* Color Variations Styles */
.novin-color-variations {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.novin-color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-direction: column;
}

.novin-color-swatch {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    border: 1px solid #e0e0e2;
}

.novin-color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 1px 3px 0 #0000001a;
}

.novin-color-more {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #5b5b5b;
    cursor: pointer;
}

.single-product .novin-color-variations {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .novin-sold-progress {
        margin: 10px 0;
    }
    .novin-modal-content {
        padding: 15px;
        max-width: 300px;
    }
    .novin-modal-content p {
        font-size: 14px;
    }
    .novin-modal-buttons .button {
        padding: 8px 15px;
        font-size: 12px;
    }
}