:root {
    --bg: #0b0b0d;
    --surface: #151519;
    --surface-2: #1c1c21;
    --surface-3: #222228;

    --border: #292930;
    --border-soft: rgba(255, 255, 255, 0.07);

    --text: #f5f5f5;
    --text-soft: #d8d8dc;
    --muted: #9999a3;

    --accent: #c8a96b;
    --accent-dark: #9f824c;
    --accent-light: #e0c58e;

    --danger: #d96c6c;
    --success: #7ed6a1;

    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 15px 45px rgba(0, 0, 0, 0.38);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.55);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --transition: 220ms ease;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(200, 169, 107, 0.08),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    font-family: "Markazi Text", serif;

    direction: rtl;

    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

button,
a {
    font-family: inherit;
}

button {
    border: 0;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   APP
   ========================================================= */

.app {
    width: 100%;
    min-height: 100vh;
}


/* =========================================================
   HEADER
   ========================================================= */

.store-header {
    position: relative;

    padding: 42px 20px 34px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0)
        );

    border-bottom: 1px solid var(--border-soft);
}

.store-header::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 100px;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand h1 {
    margin: 0;

    color: var(--text);

    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;

    letter-spacing: -0.5px;

    text-shadow:
        0 3px 20px rgba(0, 0, 0, 0.5);
}

.brand h1::after {
    content: "✦";

    display: block;

    margin: 5px auto 3px;

    color: var(--accent);

    font-size: 13px;
    line-height: 1;
}

.brand p {
    margin: 5px 0 0;

    color: var(--muted);

    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;

    letter-spacing: 0.2px;
}


/* =========================================================
   LOADING
   ========================================================= */

.loading {
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 220px;

    color: var(--muted);

    font-size: 17px;
}

.loading-spinner {
    width: 34px;
    height: 34px;

    border: 2px solid rgba(200, 169, 107, 0.18);
    border-top-color: var(--accent);

    border-radius: 50%;

    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   ERROR
   ========================================================= */

.error-message {
    width: min(90%, 500px);

    margin: 40px auto;
    padding: 32px 24px;

    text-align: center;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.error-icon {
    display: flex;

    width: 50px;
    height: 50px;

    margin: 0 auto 15px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--danger);

    background: rgba(217, 108, 108, 0.08);

    border: 1px solid rgba(217, 108, 108, 0.25);

    font-size: 25px;
    font-weight: 700;
}

.error-message h3 {
    margin: 0 0 8px;

    font-size: 23px;
}

.error-message p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}

.retry-button {
    margin-top: 20px;

    padding: 10px 28px;

    border-radius: 10px;

    color: #111;

    background: var(--accent);

    cursor: pointer;

    font-size: 17px;

    transition:
        transform var(--transition),
        background var(--transition);
}

.retry-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.retry-button:active {
    transform: scale(0.97);
}


/* =========================================================
   PRODUCTS GRID
   ========================================================= */

.products-grid {
    width: min(1400px, calc(100% - 30px));

    margin: 0 auto;

    padding: 32px 0 60px;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.008)
        ),
        var(--surface);

    border: 1px solid var(--border-soft);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition:
        transform 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(200, 169, 107, 0.35);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(200, 169, 107, 0.04);
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-image-wrapper {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #17171b,
            #101014
        );

    aspect-ratio: 1 / 1.08;
}

.product-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    cursor: pointer;

    transition:
        transform 500ms cubic-bezier(.2,.7,.2,1),
        filter 300ms ease;
}

.product-card:hover .product-image {
    transform: scale(1.035);
}

.product-image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(0,0,0,0.22)
        );
}


/* =========================================================
   PRODUCT BODY
   ========================================================= */

.product-card-body {
    padding: 16px 15px 15px;
}

.product-title {
    margin: 0;

    color: var(--text);

    font-size: 21px;
    line-height: 1.35;

    font-weight: 700;
}

.product-description {
    margin: 4px 0 14px;

    min-height: 24px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   PRODUCT ACTIONS
   ========================================================= */

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 14px;
}

.product-button {
    width: 100%;
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    border-radius: 11px;
    border: 1px solid var(--border);

    font-family: "Markazi Text", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;

    letter-spacing: 0;

    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;

    -webkit-tap-highlight-color: transparent;
}

/* مشاهده تصاویر */
.gallery-button {
    background: var(--surface-2);
    color: var(--text);
    border-color: #303038;
}

.gallery-button:hover {
    background: #24242A;
    border-color: #4A4A52;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

/* جزئیات */
.details-button {
    background: rgba(200, 169, 107, 0.09);
    color: var(--accent);
    border-color: rgba(200, 169, 107, 0.35);
}

.details-button:hover {
    background: rgba(200, 169, 107, 0.15);
    border-color: rgba(200, 169, 107, 0.65);
    box-shadow: 0 4px 14px rgba(200, 169, 107, 0.10);
    transform: translateY(-1px);
}

.product-button:active {
    transform: translateY(0) scale(0.98);
}

/* جلوگیری از ظاهر متفاوت فونت ایموجی و متن */
.gallery-button,
.details-button {
    font-family: "Markazi Text", serif;
}


/* =========================================================
   STATUS
   ========================================================= */

.product-status-stamp {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    width: 70px;
    height: 70px;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(217, 108, 108, 0.9);

    border-radius: 50%;

    color: var(--danger);

    background:
        rgba(15, 10, 10, 0.72);

    box-shadow:
        0 5px 20px rgba(0,0,0,0.3);

    transform: rotate(-12deg);

    backdrop-filter: blur(5px);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.15;
}

.product-status-restocking {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 5;

    padding: 5px 13px;

    border-radius: 20px;

    color: var(--success);

    background:
        rgba(20, 55, 38, 0.82);

    border: 1px solid rgba(126, 214, 161, 0.28);

    backdrop-filter: blur(6px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.25);

    font-size: 15px;
}


/* =========================================================
   MODAL BASE
   ========================================================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 18px;

    background:
        rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    animation: modalFadeIn 180ms ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay.hidden {
    display: none;
}


/* =========================================================
   MODAL CLOSE
   ========================================================= */

.modal-close {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 9999;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: rgba(15, 15, 18, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.30);

    cursor: pointer;

    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;

    pointer-events: auto;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.15);

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.modal-close:hover {
    color: #ffffff;

    background: rgba(200, 169, 107, 0.90);

    border-color: rgba(255, 255, 255, 0.55);

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.50),
        0 0 18px rgba(200, 169, 107, 0.20);

    transform: rotate(90deg);
}

.modal-close:active {
    transform: scale(0.92) rotate(90deg);
}

.modal-close:active {
    transform: scale(0.92) rotate(90deg);
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-modal {
    position: relative;

    width: min(1100px, 100%);

    max-height: calc(100vh - 36px);

    display: flex;

    align-items: center;
    justify-content: center;

    pointer-events: auto;
}

.gallery-content {
    width: 100%;

    display: flex;

    flex-direction: column;
    align-items: center;

    gap: 15px;
}

.gallery-image-wrapper {
    position: relative;

    width: min(850px, 82vw);

    height: min(72vh, 780px);

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 18px;

    background:
        #101014;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    user-select: none;
    -webkit-user-drag: none;

    touch-action: pan-y;
}

.gallery-info {
    width: min(850px, 82vw);

    text-align: center;
}

.gallery-info h2 {
    margin: 0;

    color: var(--text);

    font-size: 25px;
    font-weight: 700;
}

.gallery-info p {
    margin: 3px 0 7px;

    color: var(--muted);

    font-size: 17px;
}

.gallery-counter {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 58px;

    padding: 4px 12px;

    border-radius: 20px;

    color: var(--accent-light);

    background:
        rgba(200, 169, 107, 0.1);

    border: 1px solid rgba(200,169,107,0.2);

    font-family: Arial, sans-serif;

    font-size: 13px;
    direction: ltr;
}


/* =========================================================
   GALLERY ARROWS
   ========================================================= */

.gallery-arrow {
    position: absolute;

    top: 50%;

    z-index: 9999;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--text);

    background:
        rgba(25,25,30,0.85);

    border: 1px solid rgba(255,255,255,0.13);

    cursor: pointer;

    pointer-events: auto;

    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 200;
    line-height: 1;

    transform: translateY(-50%);

    backdrop-filter: blur(8px);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35);

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.gallery-arrow:hover {
    color: var(--accent-light);

    background:
        rgba(200,169,107,0.13);

    border-color:
        rgba(200,169,107,0.35);

    transform:
        translateY(-50%) scale(1.06);
}

.gallery-arrow:active {
    transform:
        translateY(-50%) scale(0.94);
}

.gallery-arrow:disabled {
    opacity: 0.28;

    cursor: default;

    pointer-events: auto;
}

.gallery-prev {
    right: 12px;
}

.gallery-next {
    left: 12px;
}


/* =========================================================
   DETAILS MODAL
   ========================================================= */

.details-modal {
    position: relative;

    width: min(620px, 100%);

    max-height: calc(100vh - 36px);

    overflow-y: auto;

    padding: 34px 22px 24px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.008)
        ),
        var(--surface);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-lg);

    scrollbar-width: thin;
    scrollbar-color:
        var(--accent-dark)
        transparent;

    animation: modalScaleIn 220ms ease;
}

@keyframes modalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.details-header {
    text-align: center;

    padding: 4px 15px 20px;

    border-bottom: 1px solid var(--border-soft);
}

.details-code {
    margin-bottom: 4px;

    color: var(--accent);

    font-family: Arial, sans-serif;

    font-size: 13px;

    direction: ltr;
}

.details-header h2 {
    margin: 0;

    color: var(--text);

    font-size: 28px;
}

.details-header p {
    margin: 4px 0 8px;

    color: var(--muted);

    font-size: 17px;
}

.details-status {
    min-height: 26px;
}

.details-status-out,
.details-status-restocking {
    display: inline-flex;

    padding: 4px 13px;

    border-radius: 20px;

    font-size: 15px;
}

.details-status-out {
    color: var(--danger);

    background:
        rgba(217,108,108,0.09);

    border: 1px solid rgba(217,108,108,0.2);
}

.details-status-restocking {
    color: var(--success);

    background:
        rgba(126,214,161,0.09);

    border: 1px solid rgba(126,214,161,0.2);
}


/* =========================================================
   DETAILS TABLE
   ========================================================= */

.details-table-wrapper {
    margin-top: 18px;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid var(--border);
}

.details-table {
    width: 100%;

    border-collapse: collapse;

    font-size: 17px;
}

.details-table tr {
    border-bottom: 1px solid var(--border-soft);

    transition: background var(--transition);
}

.details-table tr:last-child {
    border-bottom: 0;
}

.details-table tr:hover {
    background:
        rgba(255,255,255,0.025);
}

.details-table th,
.details-table td {
    padding: 11px 13px;

    text-align: right;

    vertical-align: middle;
}

.details-table th {
    width: 34%;

    color: var(--accent-light);

    font-weight: 600;

    background:
        rgba(200,169,107,0.035);
}

.details-table td {
    color: var(--text-soft);
}


/* =========================================================
   CONTACT BUTTONS
   ========================================================= */

.details-actions {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-top: 20px;
}

.contact-button {
    min-height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 9px 14px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 17px;
    font-weight: 500;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.contact-button:active {
    transform: scale(0.98);
}

.contact-icon {
    font-family: Arial, sans-serif;

    font-size: 18px;
}


/* Telegram */

.telegram-button {
    color: #e9e9e9;

    background:
        rgba(72, 157, 211, 0.11);

    border: 1px solid rgba(72,157,211,0.24);
}

.telegram-button:hover {
    background:
        rgba(72,157,211,0.18);

    border-color:
        rgba(72,157,211,0.4);

    transform: translateY(-1px);
}


/* WhatsApp */

.whatsapp-button {
    color: #e9e9e9;

    background:
        rgba(70, 190, 112, 0.09);

    border: 1px solid rgba(70,190,112,0.22);
}

.whatsapp-button:hover {
    background:
        rgba(70,190,112,0.15);

    border-color:
        rgba(70,190,112,0.38);

    transform: translateY(-1px);
}


/* Location */

.location-button {
    color: var(--accent-light);

    background:
        rgba(200,169,107,0.07);

    border: 1px solid rgba(200,169,107,0.2);
}

.location-button:hover {
    background:
        rgba(200,169,107,0.13);

    border-color:
        rgba(200,169,107,0.4);

    transform: translateY(-1px);
}


/* =========================================================
   EMPTY PRODUCTS
   ========================================================= */

.empty-products {
    grid-column: 1 / -1;

    padding: 70px 20px;

    text-align: center;

    color: var(--muted);

    font-size: 20px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */


/* Tablet */

@media (min-width: 600px) {

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 20px;

        padding-top: 38px;
    }

    .product-card-body {
        padding: 17px;
    }
}


/* Desktop */

@media (min-width: 900px) {

    .store-header {
        padding-top: 48px;
        padding-bottom: 38px;
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));

        gap: 22px;

        padding-top: 42px;
    }

    .product-title {
        font-size: 22px;
    }

    .product-description {
        font-size: 17px;
    }

    .gallery-prev {
        right: -5px;
    }

    .gallery-next {
        left: -5px;
    }
}


/* Large desktop */

@media (min-width: 1300px) {

    .products-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));

        gap: 24px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 599px) {

    .store-header {
        padding:
            30px
            15px
            25px;
    }

    .brand h1 {
        font-size: 31px;
    }

    .brand p {
        font-size: 16px;

        line-height: 1.6;
    }

    .products-grid {
        width: calc(100% - 20px);

        padding-top: 22px;
        padding-bottom: 40px;

        gap: 11px;
    }

    .product-card {
        border-radius: 15px;
    }

    .product-card-body {
        padding: 11px 10px 10px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-description {
        margin-top: 2px;
        margin-bottom: 9px;

        font-size: 14px;

        line-height: 1.35;
    }

    .product-actions {
        gap: 6px;
    }

    .product-button {
        min-height: 39px;

        padding: 6px 7px;

        border-radius: 9px;

        font-size: 15px;
    }

    .product-status-stamp {
        top: 9px;
        right: 9px;

        width: 57px;
        height: 57px;

        font-size: 12px;
    }

    .product-status-restocking {
        top: 9px;
        right: 9px;

        padding: 4px 9px;

        font-size: 13px;
    }


    /* Mobile gallery */

    .modal-overlay {
        padding: 10px;
    }

    .gallery-modal {
        width: 100%;
        max-height: calc(100vh - 20px);
    }

    .gallery-image-wrapper {
        width: 100%;

        height: min(68vh, 620px);

        border-radius: 14px;
    }

    .gallery-info {
        width: 100%;
    }

    .gallery-info h2 {
        font-size: 22px;
    }

    .gallery-info p {
        font-size: 15px;
    }

    .gallery-arrow {
        width: 43px;
        height: 43px;

        font-size: 30px;
    }

    .gallery-prev {
        right: 6px;
    }

    .gallery-next {
        left: 6px;
    }

    .modal-close {
        width: 38px;
        height: 38px;

        top: 9px;
        left: 9px;

        font-size: 25px;
    }


    /* Mobile details */

    .details-modal {
        width: 100%;

        max-height: calc(100vh - 20px);

        padding:
            31px
            13px
            17px;

        border-radius: 20px;
    }

    .details-header h2 {
        font-size: 25px;
    }

    .details-header p {
        font-size: 16px;
    }

    .details-table {
        font-size: 15px;
    }

    .details-table th,
    .details-table td {
        padding: 9px 8px;
    }

    .details-table th {
        width: 36%;
    }

    .contact-button {
        min-height: 44px;

        font-size: 16px;
    }
}

/* =========================================================
   HIDDEN ELEMENTS
   ========================================================= */

.hidden {
    display: none !important;
}

/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   FOOTER
========================================================= */

.store-footer {
    margin-top: 70px;
    background:
        linear-gradient(
            180deg,
            rgba(21, 21, 25, 0.95),
            rgba(11, 11, 13, 1)
        );
    border-top: 1px solid #292930;
    position: relative;
    overflow: hidden;
}

/* subtle luxury line */

.store-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 180px;
    height: 1px;
    transform: translateX(-50%);
    background: #C8A96B;
    opacity: 0.8;
}

/* Main footer */

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 55px 0 40px;

    display: grid;
    grid-template-columns:
        minmax(220px, 1fr)
        minmax(220px, 1fr)
        minmax(260px, 1.2fr);

    gap: 45px;
}

/* Brand */

.footer-brand h2 {
    margin: 0 0 12px;

    color: #C8A96B;

    font-size: 1.65rem;
    font-weight: 700;
}

.footer-brand p {
    margin: 0;

    color: #9999A3;

    font-size: 1rem;
    line-height: 2;
}

/* Section titles */

.footer-contact h3,
.footer-social h3 {
    margin: 0 0 20px;

    color: #F5F5F5;

    font-size: 1.15rem;
    font-weight: 600;

    position: relative;
}

.footer-contact h3::after,
.footer-social h3::after {
    content: "";

    display: block;

    width: 34px;
    height: 2px;

    margin-top: 9px;

    background: #C8A96B;
}

/* Contact items */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 42px;

    color: #B8B8C0;

    text-decoration: none;

    font-size: 1rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-link:hover {
    color: #F5F5F5;
    transform: translateX(-4px);
}

.footer-contact-icon {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #C8A96B;
}

.footer-contact-icon svg {
    width: 21px;
    height: 21px;
}

/* Social links */

.footer-social-links {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(130px, 1fr));

    gap: 11px;
}

.footer-social-link {
    min-height: 48px;

    padding: 7px 10px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid #292930;

    border-radius: 12px;

    background: #151519;

    color: #DADAE0;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);

    background: #1C1C21;
}

/* Social logo */

.footer-social-icon {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-social-icon svg {
    width: 21px;
    height: 21px;

    display: block;
}

.footer-social-text {
    flex: 1;

    font-size: 0.95rem;
    font-weight: 500;
}

.footer-social-arrow {
    color: #666670;

    font-size: 0.9rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-social-link:hover .footer-social-arrow {
    color: #C8A96B;
    transform: translateX(-3px);
}

.footer-social-link:hover .footer-social-icon {
    transform: scale(1.08);
}

/* =========================================================
   INSTAGRAM
========================================================= */

.social-instagram .footer-social-icon {
    color: #E1306C;

    background: rgba(225, 48, 108, 0.10);
}

.social-instagram:hover {
    border-color: rgba(225, 48, 108, 0.45);

    box-shadow:
        0 8px 25px rgba(225, 48, 108, 0.08);
}

/* =========================================================
   TELEGRAM
========================================================= */

.social-telegram .footer-social-icon {
    color: #229ED9;

    background: rgba(34, 158, 217, 0.10);
}

.social-telegram:hover {
    border-color: rgba(34, 158, 217, 0.45);

    box-shadow:
        0 8px 25px rgba(34, 158, 217, 0.08);
}

/* =========================================================
   WHATSAPP
========================================================= */

.social-whatsapp .footer-social-icon {
    color: #25D366;

    background: rgba(37, 211, 102, 0.10);
}

.social-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.45);

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.08);
}

/* =========================================================
   RUBIKA
========================================================= */

.social-rubika .footer-social-icon {
    color: #6C63FF;

    background: rgba(108, 99, 255, 0.10);
}

.social-rubika:hover {
    border-color: rgba(108, 99, 255, 0.45);

    box-shadow:
        0 8px 25px rgba(108, 99, 255, 0.08);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: min(1200px, calc(100% - 32px));

    margin: 0 auto;

    padding: 20px 0 25px;

    border-top: 1px solid #24242A;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    color: #666670;

    font-size: 0.85rem;

    text-align: center;
}

.footer-bottom span:nth-child(2) {
    color: #8A8A94;
}

.footer-bottom span:not(:last-child)::after {
    content: "•";

    margin-right: 14px;

    color: #3A3A42;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 899px) {

    .footer-inner {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {

    .store-footer {
        margin-top: 50px;
    }

    .footer-inner {
        width: min(100% - 28px, 500px);

        padding: 42px 0 30px;

        grid-template-columns: 1fr;

        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand h2 {
        font-size: 1.45rem;
    }

    .footer-social-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        width: min(100% - 28px, 500px);

        flex-wrap: wrap;

        line-height: 1.8;

        gap: 4px 10px;
    }
}

@media (max-width: 390px) {

    .footer-social-links {
        grid-template-columns: 1fr;
    }
}

.details-product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.details-product-image {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    display: block;
}



}