/* single-service.css */
.kando-single-product-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit; /* استفاده از فونت قالب */
}

.kando-product-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

/* ستون توضیحات */
.kando-product-info {
    flex: 1 1 60%;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.kando-product-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.kando-product-brand-cat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.kando-product-brand-cat img,
.kando-product-brand-cat i {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.kando-product-title {
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.kando-product-description {
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

/* ستون باکس خرید */
.kando-product-buy-box {
    flex: 1 1 35%;
    min-width: 300px;
    background: #f9f9fc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    position: sticky;
    top: 100px; /* برای حالت چسبان در اسکرول */
}

.kando-product-price-wrap {
    text-align: center;
    margin-bottom: 25px;
}

.kando-product-price {
    font-size: 2.5em;
    font-weight: 800;
    color: #CD2653; /* رنگ پیشفرض قالب شما */
    display: block;
}

.kando-product-price-label {
    font-size: 0.9em;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.kando-product-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    padding-top: 20px;
    padding-bottom: 20px;
}

.kando-product-meta-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95em;
    color: #444;
}
.kando-product-meta-list li:last-child {
    margin-bottom: 0;
}
.kando-product-meta-list strong {
    color: #222;
}

/* بخش ماشین حساب تعداد */
.kando-calculator {
    margin-bottom: 25px;
}
.kando-calculator label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.kando-calculator input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1.1em;
    text-align: center;
    box-sizing: border-box;
}
.kando-calculator input:focus {
    border-color: #CD2653;
    outline: none;
}
.kando-calculator-error {
    color: red;
    font-size: 0.85em;
    margin-top: 5px;
    display: none;
}

/* دکمه سفارش */
.kando-order-btn {
    width: 100%;
    display: block;
    background-color: #CD2653;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}
.kando-order-btn:hover {
    background-color: #a91e43;
    color: #fff;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .kando-product-info,
    .kando-product-buy-box {
        flex: 1 1 100%;
    }
    .kando-product-buy-box {
        position: static;
    }
}