/* ----------------------------------------
   Store Details Page Styles
   ---------------------------------------- */

/* Store Hero Section */
.store-hero {
    background-color: var(--color-gray-50);
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

@media (min-width: 768px) {
    .store-hero {
        padding: var(--space-12) 0;
    }
}

/* Store Header Layout */
.store-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .store-header {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: var(--space-8);
    }
}

/* Store Logo */
.store-logo-wrapper {
    flex-shrink: 0;
}

.store-logo {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .store-logo {
        width: 160px;
        height: 160px;
    }
}

/* Store Info */
.store-info {
    flex: 1;
    min-width: 0;
}

.store-name {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-gray-900);
    margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
    .store-name {
        font-size: var(--text-3xl);
    }
}

/* Store Meta (location, listings count, rating) */
.store-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .store-meta {
        justify-content: flex-start;
        gap: var(--space-6);
    }
}

.store-meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.store-meta-item svg {
    flex-shrink: 0;
    color: var(--color-gray-400);
}

.store-meta-item svg[fill="currentColor"] {
    color: var(--color-warning);
}

.store-reviews {
    color: var(--color-gray-500);
}

/* Store Description */
.store-description {
    margin-bottom: var(--space-6);
    max-width: 720px;
}

.store-description p {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Store Actions */
.store-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

@media (min-width: 768px) {
    .store-actions {
        justify-content: flex-start;
    }
}

/* Store Listings Section */
.store-listings-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
}

.store-listings-header {
    margin-bottom: var(--space-6);
}

.store-listings-header .section-title {
    margin-bottom: 0;
}

/* Show More Button Wrapper */
.show-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--space-8);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-icon {
    height: unset;
}
