/*
Theme Name: Single Audio Product - Blue & Dark
Author: Gemini Assistant
Description: قالب اختصاصی تک صفحه‌ای با تم سفید، مشکی و آبی، پشتیبانی از زرین‌پال و هشدار عدم انتشار فایل.
Version: 1.1
*/

:root {
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --dark-color: #111827;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
}

body {
    background-color: var(--bg-color);
    color: var(--dark-color);
    font-family: Tahoma, 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 20px 10px;
    direction: rtl;
    text-align: right;
    line-height: 1.8;
}

.container {
    max-width: 620px;
    margin: 20px auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    padding: 30px;
}

.header-title {
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.header-title h1 {
    color: var(--dark-color);
    font-size: 22px;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.header-title p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.product-image-box {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    padding: 10px;
}

.product-image-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: contain;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.details-table tr {
    border-bottom: 1px solid var(--border-color);
}

.details-table td {
    padding: 12px 8px;
}

.details-table td.label {
    font-weight: bold;
    color: var(--dark-color);
    width: 45%;
}

.details-table td.value {
    color: var(--text-muted);
    text-align: left;
    direction: ltr;
}

.zarinpal-badge {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 15px;
    border: 1px solid #bae6fd;
}

.copyright-warning {
    background-color: #fef2f2;
    color: #991b1b;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
    border: 1px solid #fecaca;
}

.price-tag {
    background: #f8fafc;
    border: 1px solid var(--primary-color);
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.price-tag .amount {
    font-size: 26px;
    font-weight: bold;
    color: var(--dark-color);
}

.buy-button-box {
    text-align: center;
}

.buy-button-box a.buy-btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    box-sizing: border-box;
}

.buy-button-box a.buy-btn:hover {
    background: var(--primary-hover);
}

.footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: #9ca3af;
}
