/* ================================
   STORES PAGE
   ================================ */

.stores-page {
    background: var(--color-bg, #ffffff);
}

/* ================================
   HERO SECTION
   ================================ */
.stores-hero {
    background: var(--color-bg-alt, #f9f9f9);
    border-bottom: 1px solid var(--color-border, #e0e0e0);
    padding: 48px 20px 64px;
}

.stores-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.stores-hero h1 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 16px;
    color: var(--color-primary, #000);
}

.stores-hero p {
    font-size: 16px;
    color: var(--color-text-light, #666);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .stores-hero {
        padding: 64px 20px;
    }

    .stores-hero h1 {
        font-size: 36px;
    }
}

/* ================================
   STORES LIST
   ================================ */
.stores-list {
    padding: 48px 20px 64px;
}

.stores-list .container {
    max-width: 1400px;
    margin: 0 auto;
}

.stores-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ================================
   STORE CARD
   ================================ */
.store-card {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--color-border, #e0e0e0);
    border-radius: var(--radius-lg, 10px);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.store-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .store-card {
        grid-template-columns: 1fr 1fr;
    }

    .store-card--reversed {
        direction: rtl;
    }

    .store-card--reversed > * {
        direction: ltr;
    }
}

/* Store Card Image */
.store-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .store-card__image {
        aspect-ratio: 4 / 3;
        min-height: 350px;
    }
}

.store-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Store Card Content */
.store-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .store-card__content {
        padding: 32px;
    }
}

.store-card__content h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 24px;
    color: var(--color-primary, #000);
}

/* Store Card Info */
.store-card__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ================================
   STORE INFO ITEM
   ================================ */
.store-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.store-info__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--color-text-light, #666);
}

.store-info__icon svg {
    stroke: currentColor;
}

.store-info__dot {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-info__dot span {
    width: 8px;
    height: 8px;
    background: var(--color-primary, #000);
    border-radius: 50%;
}

.store-info__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted, #999);
    margin-bottom: 4px;
}

.store-info p {
    font-size: 14px;
    color: var(--color-text, #333);
    margin: 0;
    line-height: 1.5;
}

.store-hours p {
    font-size: 14px;
    color: var(--color-text, #333);
    margin: 0 0 4px;
    line-height: 1.5;
}

.store-hours p:last-child {
    margin-bottom: 0;
}

/* ================================
   STORE CARD BUTTON
   ================================ */
.store-card__button {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--color-primary, #000);
    color: var(--color-bg, #fff);
    border-radius: var(--radius-lg, 10px);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background-color 0.2s ease;
    width: fit-content;
}

.store-card__button:hover {
    background: var(--color-primary-hover, #333);
}

/* Buttons container */
.store-card__buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.store-card__buttons .store-card__button {
    margin-top: 0;
}

.store-card__button--phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-primary, #000);
    border: 1px solid var(--color-primary, #000);
}

.store-card__button--phone:hover {
    background: var(--color-primary, #000);
    color: var(--color-bg, #fff);
}

.store-card__button--phone svg {
    stroke: currentColor;
}

.store-card__button--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}

.store-card__button--whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.store-card__button--whatsapp svg {
    fill: currentColor;
}

@media (max-width: 768px) {
    .store-card__button--phone .button-text,
    .store-card__button--whatsapp .button-text {
        display: none;
    }

    .store-card__button--phone,
    .store-card__button--whatsapp {
        padding: 12px;
    }
}

/* ================================
   CTA SECTION
   ================================ */
.stores-cta {
    padding: 0 20px 64px;
}

.stores-cta .container {
    max-width: 1400px;
    margin: 0 auto;
}

.stores-cta__content {
    background: var(--color-bg-alt, #f9f9f9);
    border-radius: var(--radius-lg, 10px);
    padding: 32px 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .stores-cta__content {
        padding: 48px;
    }
}

.stores-cta__content h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--color-primary, #000);
}

.stores-cta__content > p {
    font-size: 16px;
    color: var(--color-text-light, #666);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.stores-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .stores-cta__buttons {
        flex-direction: row;
        gap: 16px;
    }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-lg, 10px);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn--primary {
    background: var(--color-primary, #000);
    color: var(--color-bg, #fff);
    border: 1px solid var(--color-primary, #000);
}

.btn--primary:hover {
    background: var(--color-primary-hover, #333);
    border-color: var(--color-primary-hover, #333);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary, #000);
    border: 1px solid var(--color-primary, #000);
}

.btn--outline:hover {
    background: var(--color-primary, #000);
    color: var(--color-bg, #fff);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 480px) {
    .stores-hero h1 {
        font-size: 28px;
    }

    .store-card__content h2 {
        font-size: 20px;
    }

    .stores-cta__content h3 {
        font-size: 18px;
    }
}
