/* ═══════════════════════════════════════════════════════════════════════
   STATIC CONTENT PAGES — About, Contact, FAQ, Returns, Shipping, Terms
   Desert theme — works with both RTL (ar) and LTR (en)
   ═══════════════════════════════════════════════════════════════════════ */

.sp-page {
    min-height: 60vh;
    padding: 2rem 0 4rem;
}

/* Hero */
.sp-hero {
    background: linear-gradient(135deg, #1a1208 0%, #2d1f0f 50%, #1a1208 100%);
    color: #f5e6c8;
    padding: 2.5rem 0;
    margin-bottom: 2.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.sp-hero .container {
    max-width: 720px;
}

.sp-breadcrumb {
    font-size: .82rem;
    opacity: .85;
    margin-bottom: .6rem;
}

.sp-breadcrumb a {
    color: #c8a96e;
    text-decoration: none;
    transition: opacity .2s;
}

.sp-breadcrumb a:hover {
    opacity: 1;
}

.sp-hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 .4rem;
    letter-spacing: -.02em;
}

.sp-hero-sub {
    font-size: 1rem;
    opacity: .9;
    margin: 0;
    font-weight: 400;
}

/* Content area */
.sp-content {
    max-width: 720px;
    margin: 0 auto;
}

.sp-intro {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #3a2e1e;
    margin-bottom: 2.5rem;
}

.sp-card {
    background: #fff;
    border: 1px solid #e8e0d0;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: box-shadow .2s, border-color .2s;
}

.sp-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border-color: #e0d5c0;
}

.sp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1208;
    margin: 0 0 .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sp-card-title i {
    color: var(--desert-gold, #c8a96e);
    font-size: 1.2rem;
}

.sp-card-text {
    font-size: .95rem;
    line-height: 1.75;
    color: #5a4a3a;
    margin: 0;
}

/* FAQ accordion */
.sp-faq-item {
    background: #fff;
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    margin-bottom: .75rem;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,.03);
}

.sp-faq-trigger {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1208;
    text-align: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background .2s;
}

.sp-faq-trigger:hover {
    background: #fdfaf6;
}

.sp-faq-trigger i {
    color: var(--desert-gold, #c8a96e);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.sp-faq-item.open .sp-faq-trigger i {
    transform: rotate(180deg);
}

.sp-faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: .95rem;
    line-height: 1.7;
    color: #5a4a3a;
    border-top: 1px solid #f0ebe0;
    display: none;
}

.sp-faq-item.open .sp-faq-answer {
    display: block;
}

.sp-faq-shell {
    max-width: 1120px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .9fr);
    gap: 1.5rem;
    align-items: start;
}

.sp-faq-main,
.sp-faq-side {
    min-width: 0;
}

.sp-faq-intro-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fffdf9 0%, #faf4ea 100%);
    border-color: #eadfce;
}

.sp-faq-intro-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(200,169,110,.18) 0%, rgba(200,169,110,.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-faq-intro-icon i {
    color: var(--desert-gold, #c8a96e);
    font-size: 1.45rem;
}

.sp-faq-question-wrap {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
}

.sp-faq-question-icon {
    color: var(--desert-gold, #c8a96e);
    font-size: 1rem;
    flex-shrink: 0;
}

.sp-help-links {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.sp-help-link {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    text-decoration: none;
    color: inherit;
    padding: .95rem 1rem;
    border: 1px solid #ebe2d5;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff 0%, #fcfaf7 100%);
    transition: border-color .2s, box-shadow .2s, transform .15s;
}

.sp-help-link:hover {
    border-color: rgba(200,169,110,.55);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transform: translateY(-1px);
}

.sp-help-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(200,169,110,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-help-link-icon i {
    color: var(--desert-gold, #c8a96e);
    font-size: 1.05rem;
}

.sp-help-link-title {
    font-size: .95rem;
    font-weight: 700;
    color: #1a1208;
    margin-bottom: .2rem;
}

.sp-help-link-text {
    font-size: .84rem;
    line-height: 1.6;
    color: #6c5a46;
}

.sp-faq-contact-card {
    background: linear-gradient(135deg, #1f160b 0%, #2a1d0e 100%);
    border-color: rgba(200,169,110,.22);
}

.sp-faq-contact-card .sp-card-title,
.sp-faq-contact-card .sp-card-title i,
.sp-faq-contact-card .sp-card-text {
    color: #f5e6c8;
}

.sp-faq-contact-card .sp-card-text {
    opacity: .92;
}

.sp-faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    text-decoration: none;
}

/* Contact form */
.sp-form-group {
    margin-bottom: 1.25rem;
}

.sp-form-label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: #3a2e1e;
    margin-bottom: .4rem;
}

.sp-form-input,
.sp-form-textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid #e0d5c0;
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.sp-form-input:focus,
.sp-form-textarea:focus {
    outline: none;
    border-color: var(--desert-gold, #c8a96e);
    box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}

.sp-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.sp-form-btn {
    padding: .9rem 2rem;
    background: var(--desert-gold, #c8a96e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.sp-form-btn:hover {
    background: #b8955a;
}

.sp-form-btn:active {
    transform: scale(.98);
}

@media (max-width: 991.98px) {
    .sp-faq-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .sp-faq-intro-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .sp-help-link {
        padding: .9rem;
    }
}

/* Direct contact block */
.sp-contact-block {
    background: linear-gradient(135deg, #fdfaf6 0%, #f5ede0 100%);
    border: 1px solid #e8e0d0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.sp-contact-block a {
    color: var(--desert-gold, #c8a96e);
    font-weight: 600;
    text-decoration: none;
}

.sp-contact-block a:hover {
    text-decoration: underline;
}

/* Value items (About page) */
.sp-value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0ebe0;
}

.sp-value-item:last-child {
    border-bottom: none;
}

.sp-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,169,110,.2) 0%, rgba(200,169,110,.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-value-icon i {
    color: var(--desert-gold, #c8a96e);
    font-size: 1.2rem;
}

.sp-value-text {
    font-size: .95rem;
    line-height: 1.7;
    color: #5a4a3a;
}

/* Toast/success message */
.sp-toast {
    padding: 1rem 1.25rem;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 12px;
    color: #2e7d32;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: none;
}

.sp-toast.show {
    display: block;
}

/* ── Reviews page ──────────────────────────────────────────────────────── */
.reviews-page-hero .sp-hero-title.reviews-page-hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
}
.reviews-page-hero .sp-hero-title i {
    color: var(--desert-gold, #c8a96e);
}

.reviews-page-container {
    max-width: 1100px;
}
.reviews-page .reviews-page-content {
    max-width: 100%;
}

.reviews-page-stats {
    margin-bottom: 1.75rem;
}
.reviews-page-stats-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: #5a4a3a;
    background: linear-gradient(135deg, #fdfaf6 0%, #f5ede0 100%);
    border: 1px solid #e8e0d0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.reviews-page-stats-badge i {
    color: var(--desert-gold, #c8a96e);
}
.reviews-page-stats-badge strong {
    color: #1a1208;
    margin-inline-start: 0.25rem;
}

.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
}

.reviews-page-card {
    height: 100%;
    display: flex;
}
.reviews-page-card-inner {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid var(--desert-border, #e8e0d0);
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
    display: flex;
    flex-direction: column;
}
.reviews-page-card:hover .reviews-page-card-inner {
    border-color: rgba(200,169,110,.5);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.reviews-page-card-quote {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1rem;
    font-size: 2rem;
    line-height: 1;
    color: var(--desert-gold, #c8a96e);
    opacity: 0.35;
}
.reviews-page-stars {
    color: var(--desert-gold, #c8a96e);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.reviews-page-stars .bi-star {
    color: #d0c4a8;
}
.reviews-page-product {
    font-size: 0.875rem;
    color: #6b5b4a;
    margin: 0 0 0.6rem;
    display: flex;
    align-items: center;
}
.reviews-page-product i {
    color: var(--desert-gold, #c8a96e);
    opacity: 0.9;
}
.reviews-page-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3a2e1e;
    margin: 0 0 1rem;
    flex: 1;
    border: none;
    padding: 0;
}
.reviews-page-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0ebe0;
}
.reviews-page-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5a4a3a;
}
.reviews-page-date {
    font-size: 0.8rem;
    color: #9a8b7a;
}

.reviews-pagination {
    margin-top: 2.5rem;
}
.reviews-pagination .pagination {
    gap: 0.35rem;
}
.reviews-pagination .page-link {
    color: var(--desert-dark, #1a1208);
    border: 1px solid var(--desert-border, #e0d0b0);
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    font-weight: 500;
    transition: background .2s, border-color .2s, color .2s;
}
.reviews-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #c8a96e, #b8955c);
    border-color: #b8955c;
    color: #fff;
}
.reviews-pagination .page-link:hover:not(.active) {
    background: #f9f6f0;
    border-color: var(--desert-gold, #c8a96e);
    color: #1a1208;
}

.reviews-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #fdfaf6 0%, #f9f6f0 100%);
    border-radius: 20px;
    border: 1px dashed #e0d5c0;
}
.reviews-empty-icon {
    font-size: 4rem;
    color: var(--desert-gold, #c8a96e);
    opacity: 0.7;
    margin-bottom: 1rem;
}
.reviews-empty-icon i {
    display: block;
}
.reviews-empty-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3a2e1e;
    margin: 0 0 0.5rem;
}
.reviews-empty-hint {
    font-size: 0.95rem;
    color: #6b5b4a;
    margin: 0 0 1.5rem;
    max-width: 360px;
    margin-inline: auto;
}
.reviews-empty-cta {
    background: linear-gradient(135deg, #c8a96e, #b8955c) !important;
    border: none !important;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: opacity .2s, transform .1s;
}
.reviews-empty-cta:hover {
    opacity: 0.95;
    transform: scale(1.02);
}
