/* ==========================================================================
   GeneratePress Child - WooCommerce Single Product CSS
   Path: wp-content/themes/generatepress-child/css/content-single-product.css
   ========================================================================== */

.kv-single-product-container {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.kv-single-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 860px) {
    .kv-single-product-grid {
        grid-template-columns: 5fr 6fr;
    }
}

/* Left Column: Gallery Frame */
.kv-single-gallery-frame {
    position: relative;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
    text-align: center;
}

.kv-single-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.kv-single-img-placeholder {
    padding: 80px 20px;
    background: #020617;
    border-radius: 12px;
    color: #94a3b8;
    font-size: 20px;
    font-weight: 700;
}

.kv-verified-vendor-seal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

/* Delivery Steps Box */
.kv-delivery-steps-box {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 20px;
    margin-top: 24px;
}

.kv-delivery-steps-box h4 {
    color: #ffffff;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.kv-delivery-steps-box ol {
    margin: 0;
    padding-left: 20px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
}

/* Right Column */
.kv-single-top-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.kv-meta-category {
    color: #38bdf8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.kv-meta-stock {
    color: #34d399;
    font-size: 12px;
    font-weight: 600;
}

.kv-single-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.kv-single-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 20px;
}

.kv-rating-text {
    color: #94a3b8;
    font-size: 12px;
}

/* Price Display */
.kv-single-price-box {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.kv-price-big {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
}

.kv-price-big ins {
    text-decoration: none;
    color: #38bdf8;
}

.kv-price-big del {
    color: #64748b;
    font-size: 18px;
    margin-right: 8px;
}

.kv-price-tax-note {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    margin-top: 4px;
}

/* License Selector Buttons */
.kv-license-selector-wrap {
    margin-bottom: 24px;
}

.kv-selector-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.kv-selector-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.kv-option-btn {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kv-option-btn.active,
.kv-option-btn:hover {
    border-color: #38bdf8;
    background: rgba(2, 132, 199, 0.15);
}

.kv-opt-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.kv-opt-detail {
    display: block;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Warranty Box */
.kv-activation-warranty-box {
    background: #0b1120;
    border: 1px solid #1e293b;
    border-left: 4px solid #10b981;
    border-radius: 10px;
    padding: 16px;
    margin-top: 24px;
}

.kv-warranty-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.kv-warranty-shield {
    font-size: 24px;
}

.kv-warranty-header strong {
    color: #ffffff;
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.kv-warranty-header p {
    color: #94a3b8;
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}
