/**
 * Shop SPA — premium single-page shop website styles.
 * Scoped under .shop-spa to avoid global collisions.
 */

:root {
    --swiper-theme-color: #1f7373 !important;
    /*new 050429*/
    --primary: #0d9488;
    --primary-hover: #0f766e;
    --secondary: #e2e8f0;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --teal-gradient: linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.6);
    --border-radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

.shop-spa {
    --shop-spa-primary: #1f7373;
    --shop-spa-primary-dark: #155252;
    --shop-spa-accent: #008078;
    --shop-spa-bg: #f4f7f8;
    --shop-spa-card-radius: 16px;
    --shop-spa-nav-height: 64px;
    color: #1a1a2e;
    background: var(--shop-spa-bg);
}

.shop-spa__main {
    padding-top: 0;
}

/* Sticky navigation */
.shop-spa__nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.shop-spa__nav {
    min-height: var(--shop-spa-nav-height);
    transition: box-shadow 0.2s ease;
}

.shop-spa__nav.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shop-spa__nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #eee;
}

.shop-spa__nav-title {
    max-width: 180px;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.shop-spa__nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    padding: 0.5rem 0.75rem;
    transition: color 0.15s;
}

.shop-spa__nav-link:hover,
.shop-spa__nav-link.is-active {
    color: var(--shop-spa-primary);
}

.shop-spa .btn-primary {
    background-color: var(--shop-spa-primary);
    border-color: var(--shop-spa-primary);
}

.shop-spa .btn-primary:hover,
.shop-spa .btn-primary:focus {
    background-color: var(--shop-spa-primary-dark);
    border-color: var(--shop-spa-primary-dark);
}

.shop-spa .btn-outline-primary {
    color: var(--shop-spa-primary);
    border-color: var(--shop-spa-primary);
}

.shop-spa .btn-outline-primary:hover {
    background-color: var(--shop-spa-primary);
    border-color: var(--shop-spa-primary);
}

.btn-outline-primary:hover, .btn-outline-primary.hover {
    background-color: var(--shop-spa-primary);
    color: #ffffff;
    border-color: var(--shop-spa-primary);
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(31, 115, 115, 0.55);
}
/* Hero */
.shop-spa__hero {
    position: relative;
    /*margin-bottom: 2rem;*/
}

.shop-spa__hero-banner {
    position: relative;
    height: clamp(240px, 45vw, 480px);
    overflow: hidden;
    /*050525 background: #dee2e6;*/
    background: transparent;
}

.shop-spa__hero-carousel,
.shop-spa__hero-carousel .carousel-inner,
.shop-spa__hero-carousel .carousel-item {
    height: 100%;
}

.shop-spa__hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.shop-spa__hero-overlay {
    position: absolute;
    inset: 0;
    /*050525 background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);*/
    background: transparent;
    pointer-events: none;
}

.shop-spa__hero-content {
    position: relative;
    margin-top: -80px;
    z-index: 2;
    padding-bottom: 1rem;
}

.shop-spa__hero-card {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 1.25rem;
    background: #fff;
    border-radius: var(--shop-spa-card-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
}

.shop-spa__hero-logo-wrap {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
    margin-top: -55px;
}

.shop-spa__hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-spa__hero-text {
    flex: 1;
    text-align: right;
}

.shop-spa__hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.shop-spa__hero-desc {
    color: #252538;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.shop-spa__hero-cta-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--shop-spa-primary);
    background: #fff;
}

.shop-spa__hero-cta-outline:hover {
    background: var(--shop-spa-primary);
    color: #fff;
    border-color: var(--shop-spa-primary);
}

/* Sections */
.shop-spa__section {
    padding: 1rem 0;
}

.shop-spa__section-bottom {
    padding-bottom: 1rem;
}

.shop-spa__section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
}

.shop-spa__card {
    background: #fff;
    border-radius: var(--shop-spa-card-radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.shop-spa__card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f3f5;
}

.shop-spa__card-body {
    padding: 1.25rem;
}

/* Stats */
.shop-spa__stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.15s, box-shadow 0.15s;
}

.shop-spa__stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.shop-spa__stat-card--vip {
    background: linear-gradient(135deg, #fff8e1, #fff);
    border: 1px solid #ffe082;
}

.shop-spa__stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--shop-spa-primary);
    line-height: 1.2;
}

.shop-spa__stat-label {
    font-size: 0.78rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* About description */
.shop-spa__description {
    line-height: 1.85;
    color: #495057;
    position: relative;
}

.shop-spa__description--collapsed {
    max-height: 250px;
    overflow: hidden;
}

.shop-spa__description-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}

.shop-spa__description:not(.shop-spa__description--collapsed) .shop-spa__description-fade {
    display: none;
}

/* Chips / badges */
.shop-spa__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.shop-spa__chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.shop-spa__chip--primary {
    background: var(--shop-spa-primary);
    color: #fff;
}

.shop-spa__chip--light {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
}

.shop-spa__chip--info {
    background: #e8f4fd;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.shop-spa__trust-card {
    background: #fff;
    border-radius: var(--shop-spa-card-radius);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.shop-spa__trust-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
}

.shop-spa__qrcode-wrap {
    width: 136px;
    height: 136px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

/* Documents */
.shop-spa__doc-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.shop-spa__doc-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.shop-spa__doc-card--locked {
    opacity: 0.92;
}

.shop-spa__doc-icon {
    position: relative;
    display: inline-block;
}

.shop-spa__doc-lock {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #6c757d;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery */
.shop-spa__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

@media (max-width: 767.98px) {
    .shop-spa__gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shop-spa__gallery-cell {
    position: relative;
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: #f1f3f5;
    border-radius: 6px;
    outline: none;
}

.shop-spa__gallery-cell:focus {
    box-shadow: 0 0 0 3px rgba(31, 115, 115, 0.45);
}

.shop-spa__gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s;
}

.shop-spa__gallery-cell:hover .shop-spa__gallery-thumb {
    transform: scale(1.03);
}

.shop-spa__gallery-video-thumb,
.shop-spa__gallery-audio-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--shop-spa-primary) 0%, var(--shop-spa-primary-dark) 100%);
    color: #fff;
}

.shop-spa__gallery-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 6px 8px;
    font-size: 0.72rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal */
.shop-spa__modal-stage {
    min-height: 320px;
    max-height: 70vh;
    overflow: hidden;
    padding: 2rem 3rem;
}

.shop-spa__modal-img,
.shop-spa__modal-video {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.shop-spa__modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}

.shop-spa__modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.shop-spa__modal-nav--prev {
    right: 12px;
}

.shop-spa__modal-nav--next {
    left: 12px;
}

.shop-spa__modal-counter {
    position: absolute;
    top: 10px;
    right: 50%;
    transform: translateX(50%);
    z-index: 4;
    color: #fff;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 2px 10px;
    border-radius: 12px;
}

/* Products & webinars swiper */
.shop-spa__products-swiper,
.shop-spa__webinars-swiper {
    /*padding: 0.5rem 2rem 2rem;*/
    position: relative;
}

.shop-spa__product-card,
.shop-spa__webinar-card {
    background: #fff;
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.shop-spa__product-card:hover,
.shop-spa__webinar-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.shop-spa__product-image-link {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8f9fa;
}

.shop-spa__product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.shop-spa__product-body {
    padding: 0.75rem;
    text-align: center;
}

.shop-spa__product-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shop-spa__product-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.shop-spa__product-price {
    font-size: 0.85rem;
    color: var(--shop-spa-primary);
    font-weight: 700;
}

.shop-spa__webinar-poster {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.shop-spa__webinar-body {
    padding: 0.75rem;
}

/* Rating summary */
.shop-spa__rating-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--shop-spa-primary);
}

/* Contacts */
.shop-spa__contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f4fd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shop-spa-primary);
    flex-shrink: 0;
}

.shop-spa__contact-row a {
    color: var(--shop-spa-primary);
    text-decoration: none;
}

.shop-spa__contact-row a:hover {
    text-decoration: underline;
}

.shop-spa__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    transition: transform 0.15s, box-shadow 0.15s;
}

.shop-spa__social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.shop-spa__contact-cta-panel {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

/* CTA band */
.shop-spa__cta-band {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--shop-spa-primary) 0%, var(--shop-spa-primary-dark) 100%);
}

.shop-spa__cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.shop-spa__footer {
    background: #fff;
    border-top: 1px solid #e9ecef;
}

/* Floating action buttons */
.shop-spa__fab {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-spa__fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
}

.shop-spa__fab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.shop-spa__fab-btn--call {
    background: #28a745;
    color: #fff;
}

.shop-spa__fab-btn--chat {
    background: var(--shop-spa-primary);
    color: #fff;
}

.shop-spa__fab-btn--top {
    background: #fff;
    color: #495057;
    border: 1px solid #dee2e6;
}

/* Responsive hero */
@media (max-width: 575.98px) {
    .shop-spa__hero-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .shop-spa__hero-text {
        text-align: center;
    }

    .shop-spa__hero-logo-wrap {
        margin-top: -40px;
        width: 90px;
        height: 90px;
    }

    .shop-spa__hero-title {
        font-size: 1.2rem;
    }

    .shop-spa__hero-cta {
        justify-content: center;
    }

    .shop-spa__fab {
        bottom: 80px;
        left: 12px;
    }
}

/* Focus visibility */
.shop-spa a:focus,
.shop-spa button:focus {
    outline: 2px solid var(--shop-spa-primary);
    outline-offset: 2px;
}

.shop-spa__nav-link:focus {
    outline-offset: 4px;
}

.badge-primary {
    color: #fff;
    background-color: #1f7373;
}

/* ==========================================================================
   CONTACT SOCIAL ICONS - BRAND COLORS & CUSTOM RENDERING
   ========================================================================== */
.contact-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-left: 6px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.contact-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
    filter: brightness(1.08);
    color: #ffffff !important;
}

.contact-social-icon:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 115, 115, 0.4);
}

.contact-social-icon .social-img-icon {
    /*
    width: 20px;
    height: 20px;
    */
    object-fit: contain;
    /*
    filter: brightness(0) invert(1);
    */
    transition: transform 0.2s ease;
}

.contact-social-icon:hover .social-img-icon {
    transform: scale(1.1);
}

.shop-spa__social-link.contact-social-icon,
.social-icon-link.contact-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none !important;
    padding: 0 !important;
}

/* Individual Brand Styling */
.contact-icon-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.contact-icon-telegram {
    background-color: #0088cc;
}

.contact-icon-whatsapp {
    background-color: #25d366;
}

.contact-icon-linkedin {
    background-color: #0077b5;
}

.contact-icon-youtube {
    background-color: #ff0000;
}

.contact-icon-aparat {
    background-color: #ed145b;
}

.contact-icon-aparat:not(.has-icon)::before {
    content: "آ";
    font-family: inherit;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.contact-icon-eitaa,
.contact-icon-eita {
    /*background-color: #ee6f21;*/
    background-color: #fff;
}

.contact-icon-eitaa:not(.has-icon)::before,
.contact-icon-eita:not(.has-icon)::before {
    content: "ای";
    font-family: inherit;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-icon-bale {
    background-color: #22a87d;
}

.contact-icon-bale:not(.has-icon)::before {
    content: "ب";
    font-family: inherit;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.contact-icon-rubika {
    /*background: linear-gradient(135deg, #ffd700, #ff007f, #8a2be2);*/
    background: linear-gradient(135deg, #fff, #fff, #fff);
}

.contact-icon-rubika:not(.has-icon)::before {
    content: "ر";
    font-family: inherit;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.contact-icon-website {
    background-color: #4a5568;
}


/* ══════════════════════════════════════════
   15. FOOTER
══════════════════════════════════════════ */
/* ── DESIGN TOKENS ── */
.shop-spa {
    --navy: #0A1628;
    --navy-mid: #142240;
    --orange: #FF6B00;
    --orange-dk: #E05A00;
    --gold: #C9A84C;
    --steel: #F4F6F9;
    --white: #FFFFFF;
    --text: #1A1A2E;
    --muted: #6B7280;
    --border: #E5E7EB;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(10, 22, 40, .10);
    --shadow-lg: 0 12px 48px rgba(10, 22, 40, .18);
    --font-disp: Tahoma, Arial, sans-serif;
    --font-body: Tahoma, Arial, sans-serif;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.shop-spa #footer {
    background: var(--navy, #0f172a);
    padding: 60px 0 24px;
}

.shop-spa .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1.2fr 2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

/* Footer Contact Items Integration */
.shop-spa .footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-style: normal;
}

.shop-spa .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shop-spa .footer-contact-item .fc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--orange, #f97316);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 1rem;
    transition: var(--transition);
}

.shop-spa .footer-contact-item:hover .fc-icon {
    background: var(--orange, #f97316);
    color: var(--white, #ffffff);
    transform: translateY(-2px);
}

.shop-spa .footer-contact-item .fc-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2px;
}

.shop-spa .footer-contact-item .fc-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 600;
}

.shop-spa .footer-contact-item .fc-value {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.shop-spa .footer-contact-item .fc-value a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-spa .footer-contact-item .fc-value a:hover {
    color: var(--orange, #f97316);
}

.shop-spa .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-spa .footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--white, #ffffff);
    font-weight: 700;
    text-decoration: none;
}

.shop-spa .footer-brand .logo-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.shop-spa .footer-brand .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--shop-spa-primary, #1f7373);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.shop-spa .footer-brand p,
.shop-spa .footer-brand .footer-uvp {
    color: rgba(255, 255, 255, .7);
    font-size: .875rem;
    line-height: 1.8;
    margin-bottom: 0;
    word-break: break-word;
}

.shop-spa .footer-col-title {
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 18px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.shop-spa .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-spa .footer-links li {
    margin-bottom: 10px;
}

.shop-spa .footer-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    transition: color var(--transition);
    text-decoration: none;
}

.shop-spa .footer-links a:hover {
    color: var(--orange, #f97316);
}

.shop-spa .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.shop-spa .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    font-weight: 700;
    transition: var(--transition);
}

.shop-spa .social-link:hover {
    background: var(--orange, #f97316);
    color: var(--white, #ffffff);
}

.shop-spa .footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-spa .footer-copy {
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
    margin: 0;
}

@media (max-width: 900px) {
    .shop-spa .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .shop-spa .footer-brand,
    .shop-spa .footer-contact-details {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .shop-spa #footer {
        padding: 40px 0 20px;
    }
    .shop-spa .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 32px;
    }
    .shop-spa .footer-brand {
        grid-column: span 1;
    }
    .shop-spa .footer-brand .footer-uvp {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    .shop-spa .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════════ */
/* Floating WhatsApp */
.shop-spa .whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    cursor: pointer;
    transition: var(--transition);
    animation: wa-pulse 2.5s infinite;
}

.shop-spa .whatsapp-float:hover {
    transform: scale(1.12);
}

@keyframes wa-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    }
    50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, .75);
    }
}

/* Sticky CTA bottom-right */
.shop-spa .sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
}

.shop-spa .sticky-cta-btn {
    background: var(--orange);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: .875rem;
    box-shadow: 0 4px 20px rgba(255, 107, 0, .45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-decoration: none;
}

.shop-spa .sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 107, 0, .55);
}

@media (max-width: 640px) {
    .sticky-cta {
        bottom: 14px;
        right: 14px;
    }

    .whatsapp-float {
        bottom: 14px;
        left: 14px;
    }
}

/* ══════════════════════════════════════════
   Asset Tabs & Items
══════════════════════════════════════════ */
/* Asset Tabs & Items */
.nav-tabs {
    border-bottom: 2px solid #f1f5f9;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    margin-bottom: -2px;
}

.nav-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: rgba(13, 148, 136, 0.3);
}

.nav-tabs .nav-link.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
    background: transparent !important;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.asset-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    background: #0f172a;
    cursor: pointer;
    /**/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.asset-item img,
.asset-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    opacity: 0.95;
    display: block;
    /**/
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
}

.asset-item:hover img,
.asset-item:hover video {
    transform: scale(1.08);
    opacity: 0.75;
}

/* Smooth fade in for AJAX loaded gallery items */
.fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.asset-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 148, 136, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    font-size: 1.75rem;
    backdrop-filter: blur(2px);
}

.asset-item:hover .asset-overlay {
    opacity: 1;
}

/* Gallery Media Modal Lightbox */
#shopSpaMediaModal .modal-content {
    background-color: #0f172a !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.shop-spa__modal-stage {
    min-height: 280px;
    max-height: 75vh;
    height: 60vh;
    width: 100%;
    background-color: #020617;
    position: relative;
    overflow: hidden;
}

.shop-spa__modal-img,
.shop-spa__modal-video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    border-radius: 4px;
}

.shop-spa__modal-audio-wrap {
    width: 80%;
    max-width: 500px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.shop-spa__modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none !important;
}

.shop-spa__modal-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.shop-spa__modal-nav--prev {
    right: 12px;
}

.shop-spa__modal-nav--next {
    left: 12px;
}

.shop-spa__modal-counter {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: #f8fafc;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    direction: ltr;
}

@media (max-width: 576px) {
    .assets-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.75rem;
    }

    .shop-spa__modal-stage {
        height: 50vh;
        min-height: 220px;
    }

    .shop-spa__modal-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/**/
/* ==========================================================================
   Share Modal — Business Card (RTL)
   WHY: مقادیر تکراری قبلی (70px/60px/346px inline) در متغیرهای CSS متمرکز شده
   تا تغییر طراحی آینده فقط در یک نقطه لازم باشد و از Magic Number جلوگیری شود.
   ========================================================================== */

/*
.shop-spa-share-modal__dialog {
    max-width: 360px;
    margin-inline: auto;
}

.shop-spa-share-card {
    min-height: 200px;
}

.shop-spa-share-card {
    --ssc-brand-1: #1f7373;
    --ssc-brand-2: #1f7373;
    --ssc-accent-1: #1f7373;
    --ssc-accent-2: #1f7373;
    --ssc-accent-width: 92px;

    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

!* Header: identity راست، لوگو چپ (dir=rtl → اولین فرزند = راست) *!
.shop-spa-share-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: linear-gradient(135deg, var(--ssc-brand-1), var(--ssc-brand-2));
}

.shop-spa-share-card__identity {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.shop-spa-share-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 1.05rem;
}

.shop-spa-share-card__identity-text {
    min-width: 0;
}

.shop-spa-share-card__name {
    margin: 0;
    max-width: 150px;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-spa-share-card__designation {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 9px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: .72rem;
}

.shop-spa-share-card__logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.shop-spa-share-card__logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

!* Body: لیست تماس راست، دکور دیاگونال + QR چپ‌پایین *!
.shop-spa-share-card__body {
    min-height: 120px;
}

.shop-spa-share-card__body {
    position: relative;
    overflow: hidden;
    padding: 8px 10px;
    !* WHY: padding-inline-end در dir=rtl معادل فیزیکی چپ است؛
       این فضا برای عدم برخورد متن با دکور QR کنار گذاشته می‌شود. *!
    padding-inline-end: var(--ssc-accent-width);
    background: #fff;
}

.shop-spa-share-card__body::before {
    content: "";
    position: absolute;
    !* WHY: در اینجا عمداً از `left` فیزیکی به‌جای inline-end منطقی استفاده شده،
       چون clip-path با مختصات پیکسلی فیزیکی کار می‌کند نه جهت متن؛
       طبق قاعده‌ی مستندشده‌ی پروژه (inline-end = چپ در rtl)، نتیجه یکسان است
       اما برای شکل تزئینی مطلق، مقدار فیزیکی صریح‌تر و کم‌خطاتر است. *!
    left: 0;
    bottom: 0;
    width: calc(var(--ssc-accent-width) + 18px);
    height: 100%;
    background: linear-gradient(160deg, var(--ssc-accent-1), var(--ssc-accent-2));
    !*clip-path: polygon(0 0, 45% 0, 100% 100%, 0 100%);*!
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.shop-spa-share-card__contacts {
    position: relative;
    z-index: 1;
}

.shop-spa-share-card__contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: #495057;
    font-size: .82rem;
}

.shop-spa-share-card__contact-row i {
    flex-shrink: 0;
    width: 16px;
    color: var(--ssc-brand-2);
    text-align: center;
}

.shop-spa-share-card__contact-row--address span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.shop-spa-share-card__qr-box {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 4px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    line-height: 0;
}

!* Responsive: موبایل کوچک *!
@media (max-width: 360px) {
    .shop-spa-share-card {
        --ssc-accent-width: 70px;
    }

    .shop-spa-share-card__name {
        max-width: 110px;
        font-size: .9rem;
    }

    .shop-spa-share-card__logo-box {
        width: 46px;
        height: 46px;
    }

    .shop-spa-share-card__qr-box img {
        width: 52px;
        height: 52px;
    }

    .shop-spa-share-card__body {
        padding: 14px 16px;
        padding-inline-end: var(--ssc-accent-width);
    }
}
*/

/* ==========================================================================
   Share Modal — Business Card (RTL)
   Brand color: #1f7373 (exact, per design spec)
   ========================================================================== */

.shop-spa-share-modal__dialog {
    max-width: 360px;
    margin-inline: auto;
}

.shop-spa-share-card {
    --ssc-color: #1f7373;
    --ssc-color-dark: #154f4f;   /* WHY: سایه‌ی تیره‌ی دستی به‌جای color-mix()، برای سازگاری با مرورگرهای قدیمی */
    --ssc-radius: 16px;
    --ssc-left-inset: 18px;      /* WHY: مقدار مشترک لوگو و QR — منبع واحدِ هم‌ترازی */
    --ssc-box-size: 56px;
    --ssc-bar-gap-top: 14px;     /* فاصله‌ی نوار از بالای کارت */
    --ssc-bar-height: 64px;
    --ssc-accent-width: calc(var(--ssc-left-inset) + var(--ssc-box-size) + 26px);

    position: relative;
    overflow: hidden;
    border-radius: var(--ssc-radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

/* دیاگونال رنگی — روی کل ارتفاع کارت، سمت چپ (mirror شده) */
.shop-spa-share-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, var(--ssc-color), var(--ssc-color-dark));
    clip-path: polygon(0 0, 35% 0, 35% 100%, 0 100%);
}

/* نوار Name + Designation — با فاصله از بالا و سایه‌ی پایین (افکت شناور) */
.shop-spa-share-card__header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: var(--ssc-bar-height);
    margin-block-start: var(--ssc-bar-gap-top);
    padding-inline-start: 18px;
    /* WHY: فضای سمت چپ نوار برای لوگوی absolute رزرو می‌شود تا نام طولانی زیر آن نرود */
    padding-inline-end: calc(var(--ssc-left-inset) + var(--ssc-box-size) + 12px);
    background: var(--ssc-color-dark);
    box-shadow: 0 8px 14px -6px rgba(0, 0, 0, .35);
}

.shop-spa-share-card__identity {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.shop-spa-share-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: .95rem;
}

.shop-spa-share-card__identity-text {
    min-width: 0;
    flex: 1 1 auto;
}

/* WHY: بدون max-width ثابت — با flex:1 + min-width:0 عنوان طولانی به‌صورت واقعی
   Responsive تِرانکیت می‌شود و به لوگو برخورد نمی‌کند */
.shop-spa-share-card__name {
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-spa-share-card__designation {
    display: inline-block;
    margin-top: 4px;
    /*padding: 2px 9px;*/
    border-radius: 20px;
    /*background: rgba(255, 255, 255, .18);*/
    color: #fff;
    font-size: .72rem;
}

/* لوگو و QR — هر دو absolute نسبت به کارت، با left یکسان = هم‌تراز تضمینی */
.shop-spa-share-card__logo-box,
.shop-spa-share-card__qr-box {
    position: absolute;
    left: var(--ssc-left-inset);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.shop-spa-share-card__logo-box {
    top: calc(var(--ssc-bar-gap-top) + (var(--ssc-bar-height) - var(--ssc-box-size)) / 2);
    width: var(--ssc-box-size);
    height: var(--ssc-box-size);
    padding: 4px;
}

.shop-spa-share-card__logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shop-spa-share-card__qr-box {
    bottom: 16px;
    padding: 4px;
    line-height: 0;
}

/* بدنه — لیست تماس؛ ستون سمت چپ برای دیاگونال رزرو شده */
.shop-spa-share-card__body {
    position: relative;
    z-index: 1;
    min-height: 110px;
    padding: 7px 2px 7px;
    padding-inline-end: var(--ssc-accent-width);
}

.shop-spa-share-card__contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #495057;
    font-size: .85rem;
}

.shop-spa-share-card__contact-row i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--ssc-color-dark);
    color: #fff;
    font-size: .7rem;
}

/* آدرس: مجاز به دو خط، بدون ورود به ستون QR (padding-inline-end بالا این را تضمین می‌کند) */
.shop-spa-share-card__contact-row--address {
    align-items: flex-start;
}

.shop-spa-share-card__contact-row--address i {
    margin-top: 2px;
}

.shop-spa-share-card__contact-row--address span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.4;
}

/* Responsive: موبایل کوچک */
@media (max-width: 360px) {
    .shop-spa-share-card {
        --ssc-left-inset: 14px;
        --ssc-box-size: 46px;
        --ssc-bar-height: 56px;
    }

    .shop-spa-share-card__name {
        font-size: .9rem;
    }

    .shop-spa-share-card__qr-box img {
        width: 50px;
        height: 50px;
    }

    .shop-spa-share-card__body {
        padding: 14px 16px 16px;
        padding-inline-end: var(--ssc-accent-width);
    }
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem 0rem;
    color: red;
}

.modal-body {
    padding: 0.5rem;
}

.rounded-pill {
    border-radius: 10rem !important;
}


