﻿:root {
    --explore-fab-top: 174px;
}

#exploreFab {
    position: fixed;
    top: var(--explore-fab-top, 174px);
    right: 18px;
    z-index: 99998;
    background: linear-gradient(135deg, #f5d0a9 0%, #c4956a 50%, #a67c52 100%);
    color: #1a1208;
    border: none;
    border-radius: 50px;
    padding: 12px 22px 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 149, 106, 0.3), 0 8px 30px rgba(196, 149, 106, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    #exploreFab:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 8px 25px rgba(196, 149, 106, 0.45), 0 16px 40px rgba(196, 149, 106, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    #exploreFab:active {
        transform: translateY(-1px) scale(0.98);
    }

    #exploreFab:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

@keyframes fabDropIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.6);
    }

    60% {
        opacity: 1;
        transform: translateY(4px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.explore-fab__icon {
    width: 18px;
    height: 18px;
    stroke: #1a1208;
}

.explore-fab__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a1208;
    box-shadow: 0 0 0 0 rgba(26, 18, 8, 0.6);
    animation: fabPulse 2s ease-in-out infinite;
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 18, 8, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(26, 18, 8, 0);
        transform: scale(1.15);
    }
}

.explore-fab__label {
    letter-spacing: 0.5px;
}


@media (max-width: 767px) {
    #exploreFab {
        right: 12px;
        padding: 12px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .explore-fab__label, .explore-fab__dot {
        display: none;
    }

    .explore-fab__icon {
        width: 22px;
        height: 22px;
    }
}



body.explore-open {
    overflow: hidden;
}

    body.explore-open > header,
    body.explore-open .carbon-header,
    body.explore-open #mainHeader,
    body.explore-open .footer-wrapper,
    body.explore-open .footer-luxury-glass,
    body.explore-open > footer,
    body.explore-open .mobile-bottom-nav-luxury,
    body.explore-open .cb-stories-bar-wrapper {
        display: none !important;
    }


body.share-modal-open {
    overflow: hidden;
}



.explore-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 100001;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

    .explore-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }



.explore-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 100;
}

    .explore-progress-bar span {
        display: block;
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #f5d0a9, #c4956a, #f5d0a9);
        background-size: 200% 100%;
        animation: progressShimmer 2s linear infinite;
        transition: width 0.2s ease;
        box-shadow: 0 0 12px rgba(196, 149, 106, 0.5);
    }

@keyframes progressShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}



.explore-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 50;
    pointer-events: none;
}

    .explore-header > * {
        pointer-events: auto;
    }

.explore-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.explore-title__icon {
    width: 20px;
    height: 20px;
    stroke: #c4956a;
}

.explore-title__text {
    background: linear-gradient(135deg, #f5d0a9, #c4956a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-counter {
    color: #c4956a;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(196, 149, 106, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(196, 149, 106, 0.2);
    margin-inline-start: 4px;
    font-variant-numeric: tabular-nums;
}

.explore-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .explore-close svg {
        width: 16px;
        height: 16px;
    }

    .explore-close:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: rotate(90deg) scale(1.05);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .explore-close:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }



.explore-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-y: contain;
    outline: none;
}

    .explore-track::-webkit-scrollbar {
        display: none;
    }

    .explore-track:focus-visible {
        outline: none;
    }



.explore-slide {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    content-visibility: auto;
    contain-intrinsic-size: 100vw 100vh;
    contain: layout paint style;
}


.explore-slide__bg {
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.35) saturate(1.2);
    transform: scale(1.2);
    z-index: 0;
    transition: transform 8s ease;
}

.explore-slide.is-active .explore-slide__bg {
    transform: scale(1.35);
    will-change: transform;
}

.explore-slide__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 10%, rgba(0, 0, 0, 0.9) 70%);
}



.explore-slide__card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    height: 85vh;
    height: 85dvh;
    max-height: 800px;
    border-radius: 0;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0.3;
    transform: scale(0.92);
}

@media (min-width: 768px) {
    .explore-slide__card {
        width: 400px;
        border-radius: 18px;
    }
}


.explore-slide.is-active .explore-slide__card {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(196, 149, 106, 0.25), 0 0 60px rgba(196, 149, 106, 0.12);
}

.explore-slide__img {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    background: #0a0a0a;
    overflow: hidden;
}

    .explore-slide__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        pointer-events: none;
        -webkit-user-drag: none;
        user-select: none;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

.explore-slide.is-active .explore-slide__img img {
    transform: scale(1.03);
}


.explore-slide__img::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    pointer-events: none;
}



.explore-badge-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    font-variant-numeric: tabular-nums;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}



.explore-slide__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 80px;
    z-index: 4;
    color: #fff;
}

@media (max-width: 767px) {
    .explore-slide__info {
        padding: 20px 16px 100px;
    }
}

.explore-slide__brand {
    color: #c4956a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.9;
}

.explore-slide__title {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.explore-slide__price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.explore-slide__old {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}

.explore-slide__price {
    color: #f5d0a9;
    font-weight: 800;
    font-size: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-variant-numeric: tabular-nums;
}

    .explore-slide__price small {
        font-weight: 500;
        font-size: 0.7rem;
        color: rgba(245, 208, 169, 0.7);
        margin-inline-start: 3px;
    }



.explore-slide__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #f5d0a9 0%, #c4956a 100%);
    color: #1a1208 !important;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.35);
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    overflow: hidden;
}

    .explore-slide__cta::after {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        transition: left 0.7s ease;
        pointer-events: none;
    }

    .explore-slide__cta:hover::after {
        left: 140%;
    }

    .explore-slide__cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(196, 149, 106, 0.5);
    }

    .explore-slide__cta:active {
        transform: translateY(0) scale(0.98);
    }

    .explore-slide__cta:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

    .explore-slide__cta svg {
        width: 16px;
        height: 16px;
        stroke: #1a1208;
    }



.explore-side-actions {
    position: absolute;
    left: 8px;
    bottom: 25%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

@media (min-width: 768px) {
    .explore-side-actions {
        left: calc(50% - 210px);
        bottom: 20%;
    }
}

.explore-side-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-direction: column;
    gap: 2px;
}

    .explore-side-btn svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: all 0.2s ease;
    }

    .explore-side-btn:hover {
        transform: scale(1.12);
        background: rgba(255, 255, 255, 0.15);
    }

    .explore-side-btn:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

    .explore-side-btn.is-liked {
        background: rgba(230, 57, 70, 0.2) !important;
        border-color: rgba(230, 57, 70, 0.4) !important;
        color: #e63946 !important;
    }

        .explore-side-btn.is-liked svg {
            fill: #e63946;
            stroke: #e63946;
        }

    .explore-side-btn.is-loading {
        opacity: 0.5;
        pointer-events: none;
    }

.explore-side-btn__label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 2px;
}



.explore-double-heart {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 8;
    pointer-events: none;
    opacity: 0;
}

    .explore-double-heart svg {
        width: 100px;
        height: 100px;
        fill: #fff;
        stroke: none;
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    }

    .explore-double-heart.pop {
        animation: heartBurst 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

@keyframes heartBurst {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(-15deg);
        opacity: 0;
    }

    25% {
        transform: translate(-50%, -50%) scale(1.4) rotate(-5deg);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2) rotate(0);
        opacity: 0;
    }
}



.explore-dots {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
    padding: 8px 4px;
}

.explore-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .explore-dot.is-active {
        background: #c4956a;
        height: 20px;
        border-radius: 2px;
        box-shadow: 0 0 8px rgba(196, 149, 106, 0.6);
    }



.explore-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    z-index: 50;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

    .explore-hint svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        animation: hintBounce 2s ease-in-out infinite;
    }

    .explore-hint.is-hidden {
        opacity: 0;
    }

@keyframes hintBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}



.explore-empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    z-index: 5;
}

    .explore-empty svg {
        width: 48px;
        height: 48px;
        stroke: rgba(196, 149, 106, 0.4);
        margin-bottom: 16px;
    }



.explore-track.is-loading::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(196, 149, 106, 0.15);
    border-top-color: #c4956a;
    border-radius: 50%;
    animation: exploreSpin 0.8s linear infinite;
    z-index: 100;
}

@keyframes exploreSpin {
    to {
        transform: rotate(360deg);
    }
}



.explore-slide__info > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-slide.is-active .explore-slide__info > * {
    opacity: 1;
    transform: translateY(0);
}

.explore-slide.is-active .explore-slide__brand {
    transition-delay: 0.1s;
}

.explore-slide.is-active .explore-slide__title {
    transition-delay: 0.15s;
}

.explore-slide.is-active .explore-slide__price-row {
    transition-delay: 0.2s;
}

.explore-slide.is-active .explore-slide__cta {
    transition-delay: 0.25s;
}



@media (prefers-reduced-motion: reduce) {
    #exploreFab {
        animation: none;
    }

    .explore-slide__bg,
    .explore-slide__img img,
    .explore-slide__card,
    .explore-slide__info > * {
        transition: none !important;
    }

    .explore-track {
        scroll-behavior: auto;
    }

    #exploreFab {
        transition: top 0.01s !important;
    }
}



.explore-share-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 11000 !important;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

    .explore-share-modal.is-open {
        display: flex !important;
    }

.explore-share-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.explore-share-sheet {
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
    max-width: 480px;
    max-height: 90vh;
    max-height: 90dvh;
    overflow-y: auto;
    scrollbar-width: none;
    background: linear-gradient(180deg, #14181f 0%, #0a0d11 100%);
    border: 1px solid rgba(206, 162, 119, 0.18);
    border-radius: 22px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(206, 162, 119, 0.08);
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    color: #f6f5f5;
}

    .explore-share-sheet::-webkit-scrollbar {
        display: none;
    }

@media (max-width: 767px) {
    .explore-share-modal {
        align-items: flex-end;
    }

    .explore-share-sheet {
        border-radius: 22px 22px 0 0;
        max-width: 100%;
        width: 100%;
    }
}

.explore-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.explore-share-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f6f5f5;
    background: linear-gradient(135deg, #f5d0a9, #c4956a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-share-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .explore-share-close svg {
        width: 16px;
        height: 16px;
    }

    .explore-share-close:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: rotate(90deg) scale(1.05);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .explore-share-close:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

.explore-share-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.explore-share-preview__title {
    color: #f6f5f5;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.explore-share-preview__url {
    color: rgba(245, 208, 169, 0.7);
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.explore-share-native {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5d0a9 0%, #c4956a 100%);
    color: #1a1208;
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 14px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.35);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .explore-share-native svg {
        width: 18px;
        height: 18px;
        stroke: #1a1208;
    }

    .explore-share-native:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(196, 149, 106, 0.5);
    }

    .explore-share-native:active {
        transform: translateY(0) scale(0.98);
    }

    .explore-share-native:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

.explore-share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 480px) {
    .explore-share-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.explore-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f6f5f5;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    font-family: inherit;
}

    .explore-share-btn:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(206, 162, 119, 0.3);
    }

    .explore-share-btn:active {
        transform: translateY(-1px) scale(0.97);
    }

    .explore-share-btn:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

.explore-share-btn__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

    .explore-share-btn__icon svg {
        width: 22px;
        height: 22px;
    }

.explore-share-btn__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(246, 245, 245, 0.85);
    text-align: center;
}

.explore-share-btn--whatsapp:hover .explore-share-btn__icon {
    background: rgba(37, 211, 102, 0.18);
    color: #25d366;
}

    .explore-share-btn--whatsapp:hover .explore-share-btn__icon svg {
        fill: #25d366;
    }

.explore-share-btn--telegram:hover .explore-share-btn__icon {
    background: rgba(36, 161, 222, 0.18);
    color: #24a1de;
}

    .explore-share-btn--telegram:hover .explore-share-btn__icon svg {
        fill: #24a1de;
    }

.explore-share-btn--twitter:hover .explore-share-btn__icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

    .explore-share-btn--twitter:hover .explore-share-btn__icon svg {
        fill: #fff;
    }

.explore-share-btn--facebook:hover .explore-share-btn__icon {
    background: rgba(24, 119, 242, 0.18);
    color: #1877f2;
}

    .explore-share-btn--facebook:hover .explore-share-btn__icon svg {
        fill: #1877f2;
    }

.explore-share-btn--email:hover .explore-share-btn__icon {
    background: rgba(206, 162, 119, 0.18);
    color: #c4956a;
}

    .explore-share-btn--email:hover .explore-share-btn__icon svg {
        stroke: #c4956a;
    }

.explore-share-btn--copy:hover .explore-share-btn__icon {
    background: rgba(46, 204, 113, 0.18);
    color: #2ecc71;
}

    .explore-share-btn--copy:hover .explore-share-btn__icon svg {
        stroke: #2ecc71;
    }

.explore-share-btn--copy.is-copied .explore-share-btn__icon {
    background: rgba(46, 204, 113, 0.25) !important;
    color: #2ecc71 !important;
}

    .explore-share-btn--copy.is-copied .explore-share-btn__icon svg {
        stroke: #2ecc71 !important;
    }

.explore-share-btn--copy.is-copied .explore-share-btn__label {
    color: #2ecc71 !important;
}

@media (prefers-reduced-motion: reduce) {
    .explore-share-sheet,
    .explore-share-modal,
    .explore-share-btn,
    .explore-share-close,
    .explore-share-native {
        transition: none !important;
    }
}



.explore-share-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

    .explore-share-modal.is-open {
        display: flex !important;
    }

.explore-share-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.explore-share-sheet {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(180deg, #14181f 0%, #0a0d11 100%);
    border: 1px solid rgba(206, 162, 119, 0.18);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(206, 162, 119, 0.08);
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
}

    .explore-share-sheet::-webkit-scrollbar {
        display: none;
    }


@media (min-width: 768px) {
    .explore-share-modal {
        align-items: center;
    }

    .explore-share-sheet {
        border-radius: 22px;
        max-width: 480px;
    }
}

.explore-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.explore-share-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f6f5f5;
    background: linear-gradient(135deg, #f5d0a9, #c4956a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-share-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .explore-share-close svg {
        width: 16px;
        height: 16px;
    }

    .explore-share-close:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: rotate(90deg) scale(1.05);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .explore-share-close:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

.explore-share-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.explore-share-preview__title {
    color: #f6f5f5;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.explore-share-preview__url {
    color: rgba(245, 208, 169, 0.7);
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.explore-share-native {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5d0a9 0%, #c4956a 100%);
    color: #1a1208;
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 14px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    box-shadow: 0 8px 25px rgba(196, 149, 106, 0.35);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .explore-share-native svg {
        width: 18px;
        height: 18px;
        stroke: #1a1208;
    }

    .explore-share-native:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(196, 149, 106, 0.5);
    }

    .explore-share-native:active {
        transform: translateY(0) scale(0.98);
    }

    .explore-share-native:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

.explore-share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 480px) {
    .explore-share-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.explore-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f6f5f5;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    font-family: inherit;
}

    .explore-share-btn:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(206, 162, 119, 0.3);
    }

    .explore-share-btn:active {
        transform: translateY(-1px) scale(0.97);
    }

    .explore-share-btn:focus-visible {
        outline: 2px solid #f5d0a9;
        outline-offset: 3px;
    }

.explore-share-btn__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

    .explore-share-btn__icon svg {
        width: 22px;
        height: 22px;
    }

.explore-share-btn__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(246, 245, 245, 0.85);
    text-align: center;
}


.explore-share-btn--whatsapp:hover .explore-share-btn__icon {
    background: rgba(37, 211, 102, 0.18);
    color: #25d366;
}

    .explore-share-btn--whatsapp:hover .explore-share-btn__icon svg {
        fill: #25d366;
    }

.explore-share-btn--telegram:hover .explore-share-btn__icon {
    background: rgba(36, 161, 222, 0.18);
    color: #24a1de;
}

    .explore-share-btn--telegram:hover .explore-share-btn__icon svg {
        fill: #24a1de;
    }

.explore-share-btn--twitter:hover .explore-share-btn__icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

    .explore-share-btn--twitter:hover .explore-share-btn__icon svg {
        fill: #fff;
    }

.explore-share-btn--facebook:hover .explore-share-btn__icon {
    background: rgba(24, 119, 242, 0.18);
    color: #1877f2;
}

    .explore-share-btn--facebook:hover .explore-share-btn__icon svg {
        fill: #1877f2;
    }

.explore-share-btn--email:hover .explore-share-btn__icon {
    background: rgba(206, 162, 119, 0.18);
    color: #c4956a;
}

    .explore-share-btn--email:hover .explore-share-btn__icon svg {
        stroke: #c4956a;
    }

.explore-share-btn--copy:hover .explore-share-btn__icon {
    background: rgba(46, 204, 113, 0.18);
    color: #2ecc71;
}

    .explore-share-btn--copy:hover .explore-share-btn__icon svg {
        stroke: #2ecc71;
    }


.explore-share-btn--copy.is-copied .explore-share-btn__icon {
    background: rgba(46, 204, 113, 0.25) !important;
    color: #2ecc71 !important;
}

    .explore-share-btn--copy.is-copied .explore-share-btn__icon svg {
        stroke: #2ecc71 !important;
    }

.explore-share-btn--copy.is-copied .explore-share-btn__label {
    color: #2ecc71 !important;
}

@media (prefers-reduced-motion: reduce) {
    .explore-share-sheet,
    .explore-share-modal,
    .explore-share-btn,
    .explore-share-close,
    .explore-share-native {
        transition: none !important;
    }
}
