/* ==========================================================
   PASHA SILVER PWA
   MOBILE UI V4.1
   Designed for current index.html
   ========================================================== */


/* ==========================================================
   1. RESET
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg-body);
}

body {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;

    margin: 0;
    padding: 0;

    direction: rtl;

    overflow-x: hidden;

    background: var(--bg-body);

    color: var(--text-main);

    font-family: var(--font-main);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font-family: inherit;
}

.hidden {
    display: none !important;
}


/* ==========================================================
   2. LOADING
   ========================================================== */

.loading-overlay {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 16px;

    padding: 30px;

    background: #ffffff;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    width: clamp(90px, 30vw, 120px);
    height: auto;
    object-fit: contain;
}

.spinner {
    width: 36px;
    height: 36px;

    border: 3px solid #f1f1f1;
    border-top-color: var(--color-primary);

    border-radius: 50%;

    animation: pasha-spin 0.65s linear infinite;
}

.loading-text {
    margin: 0;

    color: var(--text-muted);

    font-size: 12px;
    font-weight: 500;
}

@keyframes pasha-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================
   3. APP CONTAINER
   ========================================================== */

.app-content {
    width: 100%;

    opacity: 0;

    transition: opacity 0.25s ease;
}

.app-content.visible {
    opacity: 1;
}

.pasha-app {
    width: 100%;
    max-width: 520px;

    min-height: 100vh;
    min-height: 100dvh;

    margin: 0 auto;

    padding:
        max(10px, env(safe-area-inset-top))
        clamp(10px, 3.5vw, 18px)
        max(28px, env(safe-area-inset-bottom));

    background: #ffffff;
}


/* ==========================================================
   4. HEADER
   ========================================================== */
.pasha-header {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 72px;

    margin: 0 auto 12px;

    text-align: center;
}
.brand {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: fit-content;
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}
.brand-logo {
    width: clamp(64px, 18vw, 82px);
    height: clamp(64px, 18vw, 82px);

    flex: 0 0 auto;
    object-fit: contain;
}
.brand-copy {
    min-width: 0;
    text-align: right;
}
.brand-copy h1 {
    margin: 0;

    color: var(--text-strong);

    font-size: clamp(25px, 6vw, 30px);
    font-weight: 700;

    line-height: 1.35;

    white-space: nowrap;
}
.brand-copy h1 span {
    color: var(--color-primary);
}

.brand-copy p {
    margin: 2px 0 0;

    color: var(--text-muted);

    font-size: clamp(9px, 2.7vw, 11px);
    font-weight: 400;

    white-space: nowrap;
}


/* ==========================================================
   5. CONNECTION STATUS
   ========================================================== */

.market-status {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border: 1px solid var(--border-light);

    border-radius: 999px;

    background: var(--bg-soft);

    color: var(--text-muted);

    font-size: clamp(9px, 2.6vw, 11px);
    font-weight: 500;

    white-space: nowrap;
}

.connection-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--text-muted);
}

.connection-dot.online {
    background: var(--status-online);

    box-shadow:
        0 0 0 3px rgba(34, 197, 94, 0.10);
}

.connection-dot.offline {
    background: var(--status-offline);

    box-shadow:
        0 0 0 3px rgba(239, 68, 68, 0.10);
}

.connection-dot.loading {
    background: var(--color-primary);

    animation: status-pulse 1.2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}


/* ==========================================================
   6. SALE CLOSED BANNER
   ========================================================== */

.sale-closed-banner {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 12px;

    padding: 11px 12px;

    border: 1px solid var(--sale-closed-border);

    border-radius: var(--radius-md);

    background: var(--sale-closed-bg);

    color: var(--sale-closed-text);
}

.sale-closed-icon {
    flex: 0 0 auto;

    font-size: 17px;
    line-height: 1;
}

.sale-closed-title {
    font-size: clamp(11px, 3.3vw, 13px);
    font-weight: 700;
    line-height: 1.6;
}


.sale-closed-subtitle {

    color: #be6473;

    font-size: clamp(8px, 2.5vw, 10px);

    font-weight: 400;

    line-height: 1.5;
}
.sale-closed-banner strong {
    font-size: clamp(11px, 3.3vw, 13px);
    font-weight: 700;

    line-height: 1.6;
}

.sale-closed-banner small {
    color: #be6473;

    font-size: clamp(8px, 2.5vw, 10px);
    font-weight: 400;

    line-height: 1.5;
}


/* ==========================================================
   7. PRICE SECTIONS
   ========================================================== */

.price-section {
    width: 100%;

    margin-bottom: 13px;

    overflow: hidden;

    border: 1px solid var(--border-light);

    border-radius: var(--radius-lg);

    background: var(--bg-card);

    box-shadow: var(--shadow-card);
}


/* ==========================================================
   8. SECTION HEADING
   ========================================================== */

.section-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 13px 14px 10px;
}

.section-heading > div {
    min-width: 0;
}

.section-heading h2 {
    margin: 0;

    color: var(--text-strong);

    font-size: clamp(14px, 4vw, 17px);
    font-weight: 700;

    line-height: 1.5;
}

.purity-text {
    color: var(--price-ounce);
}

.section-heading h2::before {
    content: "";

    display: inline-block;

    width: 4px;
    height: 14px;

    margin-left: 7px;

    vertical-align: -2px;

    border-radius: 999px;

    background: var(--color-primary);
}

.section-heading p {
    margin: 2px 11px 0 0;

    color: var(--text-muted);

    font-size: clamp(9px, 2.6vw, 11px);
    font-weight: 400;
}


/* ==========================================================
   9. PRICE TABLE
   ========================================================== */

.price-table {
    width: 100%;

    padding: 0 8px;
}


/* ==========================================================
   10. TABLE HEADER
   ========================================================== */

.price-table-header {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(52px, 0.66fr)
        minmax(0, 1.42fr)
        minmax(0, 1.42fr);

    align-items: center;

    min-height: 32px;

    padding: 0 7px;

    border-radius: 9px;

    background: #fafafa;

    color: var(--text-muted);

    font-size: clamp(9px, 2.6vw, 11px);
    font-weight: 600;
}

.price-table-header > div {
    min-width: 0;

    text-align: center;
}

.price-table-header .weight-column {
    text-align: right;
}


/* ==========================================================
   11. BAR PRICE ROW
   ========================================================== */

.bar-price-table > .price-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(52px, 0.66fr)
        minmax(0, 1.42fr)
        minmax(0, 1.42fr);

    align-items: center;

    min-height: clamp(46px, 12vw, 54px);

    padding: 0 7px;

    border-bottom: 1px solid var(--border-light);
}

.bar-price-table > .price-row:last-child {
    border-bottom: 0;
}


/* ==========================================================
   12. WEIGHT
   ========================================================== */

.weight-cell {
    min-width: 0;

    display: flex;

    align-items: baseline;

    gap: 3px;

    white-space: nowrap;
}

.weight-cell strong {
    color: var(--text-strong);

    font-size: clamp(12px, 3.6vw, 15px);
    font-weight: 700;

    line-height: 1;
}

.weight-cell span {
    color: var(--text-muted);

    font-size: clamp(8px, 2.5vw, 10px);
    font-weight: 400;
}


/* ==========================================================
   13. PRICE CELL
   ========================================================== */

.price-cell {
    min-width: 0;

    overflow: hidden;

    text-align: center;

    white-space: nowrap;

    font-size: clamp(13px, 4.15vw, 19px);
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.25px;

    font-variant-numeric: tabular-nums;
}

.sell-price {
    color: var(--price-sell);
}

.buy-price {
    color: var(--price-buy);
}


/* ==========================================================
   14. UNIT NOTE
   ========================================================== */

.price-unit-note {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 5px;

    padding: 7px 14px 10px;

    color: var(--text-muted);

    font-size: 9px;
}

.price-unit-note strong {
    color: var(--text-main);

    font-size: 10px;
    font-weight: 700;
}


/* ==========================================================
   15. SHOT TABLE HEADER
   ========================================================== */
/* ==========================================================
   SHOT TABLE HEADER
   عیار | فروش | خرید
========================================================== */

.shot-price-table .shot-header {

    grid-template-columns:
        minmax(52px, 0.66fr)
        minmax(0, 1.42fr)
        minmax(0, 1.42fr);

}

.shot-header > div {

    min-width: 0;

    text-align: center;

}

.shot-header > div:first-child {

    text-align: right;

}
.shot-header > div:first-child {
    text-align: right;
}


/* ==========================================================
   SHOT ROW
   عیار | فروش | خرید
========================================================== */

.shot-price-table > .shot-row {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(52px, 0.66fr)
        minmax(0, 1.42fr)
        minmax(0, 1.42fr);

    align-items: center;

    min-height:
        clamp(
            46px,
            12vw,
            54px
        );

    padding: 0 7px;

    border-bottom:
        1px solid var(--border-light);

}
.shot-price-table > .shot-row:last-child {
    border-bottom: 0;
}

.shot-purity {
    min-width: 0;

    direction: ltr;

    text-align: right;
}

.shot-purity strong {
    color: var(--text-strong);

    font-family:
        Arial,
        "Helvetica Neue",
        sans-serif;

    font-size: clamp(13px, 3.8vw, 16px);
    font-weight: 700;

    letter-spacing: 0;
}

/* ==========================================================
   SHOT PRICE
   فروش و خرید ساچمه
========================================================== */

.shot-price {

    min-width: 0;

    overflow: hidden;

    text-align: center;

    white-space: nowrap;

    direction: rtl;

    font-size:
        clamp(
            13px,
            4.15vw,
            19px
        );

    font-weight: 700;

    line-height: 1.2;

    letter-spacing:
        -0.25px;

    font-variant-numeric:
        tabular-nums;
}


/* =====================================
   قیمت فروش ساچمه
===================================== */

.shot-price.sell-price {

    color:
        var(--price-sell);

}


/* =====================================
   قیمت خرید ساچمه
   دقیقاً مثل خرید شمش
===================================== */

.shot-price.buy-price {

    color:
        var(--price-buy) !important;

}

/* ==========================================================
   17. MARKET INFO SECTION
   ========================================================== */

.market-info-section {
    width: 100%;

    display: grid;

    grid-template-columns: 0.92fr 1.55fr;

    gap: 8px;

    margin-bottom: 12px;
}


/* ==========================================================
   18. OUNCE CARD
   ========================================================== */

.ounce-card {
    min-width: 0;

    min-height: 82px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 10px 7px;

    border: 1px solid #fed7aa;

    border-radius: var(--radius-md);

    background: var(--bg-highlight);

    text-align: center;
}

.info-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-bottom: 5px;

    color: var(--text-muted);

    font-size: clamp(9px, 2.7vw, 11px);
    font-weight: 500;

    white-space: nowrap;
}

.info-icon {
    color: var(--color-primary);

    font-size: 7px;
}

.ounce-value {
    max-width: 100%;

    direction: ltr;

    color: var(--price-ounce);

    font-family:
        Arial,
        "Helvetica Neue",
        sans-serif;

    font-size: clamp(16px, 5vw, 21px);
    font-weight: 700;

    line-height: 1.2;

    white-space: nowrap;

    font-variant-numeric: tabular-nums;
}


/* ==========================================================
   19. DATE / TIME
   ========================================================== */

.datetime-card {
    min-width: 0;

    min-height: 82px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        1px
        minmax(0, 0.8fr);

    align-items: center;

    padding: 8px 6px;

    border: 1px solid var(--border-light);

    border-radius: var(--radius-md);

    background: var(--bg-card);
}

.datetime-item {
    min-width: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    text-align: center;
}

.datetime-label {
    color: var(--text-muted);

    font-size: clamp(8px, 2.5vw, 10px);
    font-weight: 500;
}

.datetime-value {
    max-width: 100%;

    color: var(--text-strong);

    font-size: clamp(10px, 3.2vw, 13px);
    font-weight: 700;

    line-height: 1.3;

    white-space: nowrap;

    font-variant-numeric: tabular-nums;

    direction: ltr;
    unicode-bidi: isolate;
    text-align: center;
}

.datetime-divider {
    width: 1px;
    height: 34px;

    background: var(--border-light);
}

/* ==========================================================
   20. PRICE META
   ========================================================== */

.price-meta {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 3px;
    padding: 8px 4px;

    color: var(--text-muted);

    font-size: clamp(8px, 2.35vw, 10px);
    font-weight: 400;

    line-height: 1.6;

    white-space: nowrap;
}

.price-meta-validity {
    flex: 0 0 auto;
}

.price-meta-divider {
    width: 1px;
    height: 14px;

    flex: 0 0 auto;

    background: var(--border-medium);
}

.price-meta-source {
    min-width: 0;
    text-align: center;
}
/* ==========================================================
   22. OFFLINE BANNER
   ========================================================== */

.offline-banner {
    width: 100%;

    margin-top: 10px;

    padding: 9px 12px;

    border: 1px solid #fed7aa;

    border-radius: var(--radius-sm);

    background: #fff7ed;

    color: #c2410c;

    text-align: center;

    font-size: clamp(10px, 3vw, 12px);
    font-weight: 700;
}


/* ==========================================================
   23. INITIAL LOAD ERROR
   ========================================================== */

.initial-error {
    width: min(100%, 330px);

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    color: var(--text-main);
}

.initial-error-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 50%;

    background: #fff1f2;

    color: #e11d48;

    font-size: 24px;
    font-weight: 700;
}

.initial-error strong {
    font-size: 15px;
}

.initial-error p {
    margin: 8px 0 18px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.8;
}

.retry-button {
    min-width: 120px;

    padding: 10px 18px;

    border: 0;

    border-radius: var(--radius-sm);

    background: var(--color-primary);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.retry-button:disabled {
    opacity: 0.65;

    cursor: default;
}


/* ==========================================================
   24. SALE CLOSED MODE
   ========================================================== */

body.sale-closed-mode .price-section {
    opacity: 0.94;
}


/* ==========================================================
   25. VERY SMALL PHONES
   320px - 349px
   ========================================================== */

@media (max-width: 349px) {

    .pasha-app {
        padding-left: 7px;
        padding-right: 7px;
    }

    .pasha-header {
        gap: 6px;

        min-height: 56px;
    }

    .brand {
        gap: 7px;
    }

	.brand-logo {
	    width: 58px;
	    height: 58px;
	}
	
	.brand-copy h1 {
	    font-size: 18px;
	}
    .brand-copy p {
        font-size: 8px;
    }

    .market-status {
        gap: 4px;

        padding: 5px 6px;

        font-size: 8px;
    }

    .connection-dot {
        width: 6px;
        height: 6px;
    }

    .price-section {
        border-radius: 14px;
    }

    .section-heading {
        padding: 10px 10px 8px;
    }

    .section-heading h2 {
        font-size: 13px;
    }

    .section-heading p {
        font-size: 8px;
    }

    .price-table {
        padding-left: 4px;
        padding-right: 4px;
    }

    .price-table-header,
    .bar-price-table > .price-row {
        grid-template-columns:
            43px
            minmax(0, 1fr)
            minmax(0, 1fr);

        padding-left: 3px;
        padding-right: 3px;
    }

    .price-table-header {
        font-size: 8px;
    }

    .bar-price-table > .price-row {
        min-height: 42px;
    }

    .weight-cell {
        gap: 2px;
    }

    .weight-cell strong {
        font-size: 11px;
    }

    .weight-cell span {
        font-size: 7px;
    }

    .price-cell {
        font-size: 12px;

        letter-spacing: -0.45px;
    }

    .price-unit-note {
        padding-left: 9px;
        padding-right: 9px;
    }

    .shot-price-table .shot-header,
    .shot-price-table > .shot-row {
        grid-template-columns:
            70px
            minmax(0, 1fr);
    }

    .shot-price-table > .shot-row {
        min-height: 43px;
    }

    .shot-purity strong {
        font-size: 12px;
    }

    .shot-price {
        font-size: 13px;
    }

    .market-info-section {
        gap: 5px;
    }

    .ounce-card,
    .datetime-card {
        min-height: 72px;

        border-radius: 11px;
    }

    .ounce-value {
        font-size: 15px;
    }

    .datetime-value {
        font-size: 9px;
    }

}


/* ==========================================================
   26. NORMAL SMALL PHONES
   350px - 380px
   ========================================================== */

@media (min-width: 350px) and (max-width: 380px) {

    .pasha-app {
        padding-left: 9px;
        padding-right: 9px;
    }

    .price-table-header,
    .bar-price-table > .price-row {
        grid-template-columns:
            48px
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .price-cell {
        font-size: clamp(12.5px, 3.9vw, 15px);
    }

}


/* ==========================================================
   27. LARGE PHONES
   431px+
   ========================================================== */

@media (min-width: 431px) {

    .pasha-app {
        padding-left: 18px;
        padding-right: 18px;
    }

    .pasha-header {
        min-height: 72px;
    }

    .price-section {
        margin-bottom: 15px;
    }

    .bar-price-table > .price-row {
        min-height: 54px;
    }

    .price-cell {
        font-size: 18px;
    }

}


/* ==========================================================
   28. TABLET / DESKTOP
   PWA remains mobile-width
   ========================================================== */

@media (min-width: 700px) {

    html,
    body {
        background: #f5f5f5;
    }

    .pasha-app {
        min-height: auto;

        margin-top: 22px;
        margin-bottom: 22px;

        border: 1px solid #eeeeee;

        border-radius: 24px;

        box-shadow:
            0 12px 45px rgba(0, 0, 0, 0.055);
    }

}


/* ==========================================================
   29. PREVENT PRICE OVERFLOW
   Emergency protection for unusually long values
   ========================================================== */

@media (max-width: 380px) {

    #bar250-sell,
    #bar250-buy,
    #bar500-sell,
    #bar500-buy,
    #bar1000-sell,
    #bar1000-buy {
        font-size: clamp(11.5px, 3.65vw, 14px);
        letter-spacing: -0.6px;
    }

}


/* ==========================================================
   30. ACCESSIBILITY
   ========================================================== */

@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;
    }

}


/* ==========================================================
   STORE INFO
   ========================================================== */

.store-info {
    width: 100%;

    margin: 8px 0 4px;
    padding: 11px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;

    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);

    background: var(--bg-soft);

    color: var(--text-main);
}

.store-address {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    text-align: center;

    font-size: clamp(9px, 2.8vw, 11px);
    font-weight: 500;

    line-height: 1.7;
}

.store-info-label {
    color: var(--color-primary);
    font-weight: 700;
}

.store-phones {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    direction: ltr;
}

.store-phones a {
    color: var(--text-strong);

    font-family: Arial, sans-serif;
    font-size: clamp(10px, 3vw, 12px);
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}

.store-info-divider {
    width: 1px;
    height: 13px;

    background: var(--border-medium);
}

/* ==========================================================
   STORE INFO
   ========================================================== */

.store-info {
    width: 100%;

    margin: 8px 0 6px;

    padding: 4px 12px;

    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);

    background: var(--bg-soft);
}


/* هر ردیف */

.store-info-row {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 9px;

    min-height: 48px;

    padding: 8px 2px;

    border-bottom: 1px solid var(--border-light);
}

.store-info-row:last-child {
    border-bottom: 0;
}


/* نقطه نارنجی */

.store-info-icon {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    overflow: hidden;

    border-radius: 50%;

    background: var(--color-primary);

    color: transparent;
}


/* محتوای هر ردیف */

.store-info-content {
    min-width: 0;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 9px;
}


/* عنوان */

.store-info-title {
    flex: 0 0 auto;

    color: var(--text-muted);

    font-size: clamp(9px, 2.7vw, 11px);
    font-weight: 500;

    white-space: nowrap;
}


/* مقدار */

.store-info-value {
    min-width: 0;

    color: var(--text-main);

    font-size: clamp(9px, 2.8vw, 11px);
    font-weight: 600;

    line-height: 1.7;
}


/* =========================
   PHONE
   ========================= */

.store-phone-list {
    min-width: 0;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 8px;
}

.store-phone-list a {
    display: flex;
    align-items: center;

    gap: 5px;

    color: var(--text-strong);

    text-decoration: none;

    white-space: nowrap;
}

.phone-owner {
    color: var(--text-main);

    font-size: clamp(9px, 2.7vw, 11px);
    font-weight: 700;
}

.phone-number {
    direction: ltr;

    font-family: Arial, sans-serif;

    font-size: clamp(10px, 2.9vw, 12px);
    font-weight: 600;
}

.store-phone-divider {
    width: 1px;
    height: 14px;

    flex: 0 0 auto;

    background: var(--border-medium);
}


/* =========================
   INSTAGRAM
   ========================= */

.instagram-link {
    direction: ltr;

    display: inline-block;

    color: var(--color-primary);

    font-family: Arial, sans-serif;

    font-size: clamp(10px, 3vw, 12px);
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}

.instagram-link:active {
    opacity: 0.65;
}


/* ==========================================================
   VERY SMALL PHONES
   ========================================================== */

@media (max-width: 349px) {

    .store-info {
        padding-left: 8px;
        padding-right: 8px;
    }

    .store-info-row {
        gap: 6px;
    }

    .store-info-content {
        gap: 6px;
    }

    .store-phone-list {
        gap: 5px;
    }

    .phone-number {
        font-size: 9px;
    }

    .phone-owner {
        font-size: 8px;
    }

}