<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* public/css/public-store.css */
:root {
    --primary-color: #007bff;
    --secondary-color: #ffd602;
    --bg-dark: #2c3e50;
    --text-light: #ffffff;
    --text-dark: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.section-spacing {
    padding: 20px 0;
}

#hero {
    margin-top: 75px;
    margin-bottom: 20px;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    height: 450px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.carousel-container {
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);   
    padding: 20px;
}

.store-info-section,
.search-section,
.products-container {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 0;
}

.store-info-content-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
    min-height: 180px;
    padding: 0;
}

.store-logo-container {
    flex: 0 0 auto;
    position: relative;
    padding: 0;
}

.store-logo {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(0, 123, 255, 0.3);
}

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

.store-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.store-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.social-icons-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    border: 2px solid rgba(0, 123, 255, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.2);
    background: rgba(0, 123, 255, 0.2);
}

.social-icon span {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
    margin-bottom: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.08rem;
    color: #444;
    white-space: nowrap;
}

.info-item i {
    color: #007bff;
    font-size: 1.15rem;
}

.info-item strong {
    color: #222;
    font-weight: 500;
}

.search-section {
    margin-bottom: 32px;
}

.search-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-bar-modern {
    width: 100%;
    max-width: 98vw;
    background: #f8fafc;
    border: 1.5px solid #e3e8ee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 0 0 18px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s, border 0.2s;
    height: 48px;
}

.search-bar-modern:focus-within {
    border: 1.5px solid #007bff;
    box-shadow: 0 4px 24px 0 rgba(0, 123, 255, 0.10);
    background: #fff;
}

.search-bar-modern input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.08rem;
    color: #222;
    flex: 1 1 auto;
    padding: 12px 0;
    font-family: inherit;
}

.search-bar-modern input::placeholder {
    color: #7b8a99;
    opacity: 1;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.search-bar-modern button {
    border: none;
    background: transparent;
    padding: 0 16px 0 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
    transition: color 0.2s;
}

.search-bar-modern button i {
    color: #7b8a99;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.search-bar-modern button:hover i {
    color: #007bff;
}

@media (max-width: 600px) {
    .search-bar-modern {
        padding-left: 8px;
        height: 40px;
    }

    .search-bar-modern input {
        font-size: 0.98rem;
        padding: 8px 0;
    }

    .search-bar-modern button {
        padding: 0 8px 0 6px;
    }
}

.products-container {
    margin-bottom: 20px;
}

.no-products-message {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 2rem 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.products-indicator {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 10px 0;
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    font-weight: 500;
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.load-more-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.load-more-btn.loading {
    background: #6c757d;
    cursor: not-allowed;
}

.load-more-btn .loading-text {
    display: none;
}

.load-more-btn.loading .default-text {
    display: none;
}

.load-more-btn.loading .loading-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .products-indicator {
        font-size: 0.9rem;
        padding: 8px 0;
        margin: 15px auto;
    }

    .load-more-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .carousel-item {
        height: 200px;
    }

    #hero {
        margin-top: 75px;
        margin-bottom: 15px;
    }

    .store-info-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0;
        gap: 20px;
    }

    .store-logo {
        width: 120px;
        height: 120px;
    }

    .social-icons-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .store-details h3 {
        font-size: 1.6rem;
    }

    .info-box {
        flex-direction: column;
        gap: 12px;
    }

    .info-item {
        justify-content: center;
    }
}</pre></body></html>