:root {
    --alert-yellow: #FFD000;
    --success-green: #2ECC71;
}

.sticky-bar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    text-decoration: none;
}

.btn {
    text-align: center;
}

.btn-full-width {
    display: block;
    width: 100%;
}

.store-header-section {
    padding: 25px 20px 40px 20px;
}

.store-profile-card {
    background-color: var(--gray-bg);
    border: 1px solid var(--brand-pale);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.store-meta-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.store-big-logo {
    width: 80px;
    height: 80px;
    background-color: var(--store-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.store-big-logo img {
    max-width: 85%;
    max-height: 65%;
}

.store-title-wrapper h1 {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.store-status {
    font-size: 0.9rem;
    font-weight: 600;
}

.store-status.open { color: var(--success-green); }
.store-status.closed { color: var(--text-muted); }

.store-info-badges {
    display: flex;
    gap: 30px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}
.badge-note {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.info-badge a, .info-badge .badge-label, .info-badge #todayHours {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.store-main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding-bottom: 80px;
}

.sub-section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-pale);
}

.store .catalog-grid {
    max-width: none;
    margin: auto;
}

.catalog-badge {
    position: absolute;
    bottom: -10px;
    left: 14px;
    padding: 7px 25px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 2;
}
.catalog-badge {
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
    box-shadow:
            0 0 0 2px rgba(255, 255, 255, .85),
            0 5px 15px rgba(0, 0, 0, .25);
}
.catalog-badge.current {
    background: rgba(34, 197, 94, 0.85);
}
.catalog-badge.current {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.catalog-badge.current::before {
    content: "✓";
    margin-right: 5px;
}
.catalog-badge.upcoming {
    background: rgba(128, 125, 219, 0.85);
}

/* --- Jobb oldali sidebar --- */
.store-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-promo-box {
    background: linear-gradient(180deg, var(--brand-pale) 0%, var(--white) 100%);
    border: 2px dashed var(--brand-light);
    border-radius: var(--radius);
    padding: 25px;
}

.promo-icon-badge {
    font-size: 2rem;
    margin-bottom: 10px;
}

.sidebar-promo-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sidebar-promo-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.promo-benefits-list {
    list-style: none;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-info-box {
    background-color: var(--brand-pale);
    border: 1px solid var(--brand-light);
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 20px;
}
.sidebar-info-box h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.sidebar-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    line-height: 1.5;
}
.sidebar-info-table tr {
    border-bottom: 1px solid rgba(128,125,219,0.1);
}
.sidebar-info-table tr:last-child {
    border-bottom: none;
}
.sidebar-info-table td {
    padding: 6px 0;
}
.sidebar-info-table td:first-child {
    font-weight: 600;
}
.sidebar-info-table td:last-child {
    text-align: right;
}
.sidebar-info-table .status-highlight {
    color: var(--brand-dark);
    font-weight: bold;
}

.info-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(128, 125, 219, 0.1);
}

.hours-time {
    text-align: right;
    font-weight: 600;
}

.highlight-sunday {
    color: #E74C3C;
}

.store-guide-section {
    padding: 20px 20px 60px 20px;
}

.store-guide-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background-color: var(--white);
    border: 1px solid var(--brand-pale);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.block-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.strength-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strength-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.strength-icon {
    font-size: 1.8rem;
    background: var(--brand-pale);
    padding: 8px;
    border-radius: 50%;
    line-height: 1;
}

.strength-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.strength-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.smart-tips-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.smart-tips-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.smart-tips-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 800;
}

.store-faq-section {
    padding: 60px 20px 80px 20px;
}

.store-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.s-faq-item {
    background-color: var(--gray-bg);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--brand-light);
}

.s-faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.s-faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.store-latest {
    padding: 20px 20px 60px 20px;
}
.store-latest > div {
    background-color: var(--white);
    border: 1px solid var(--brand-pale);
    border-radius: var(--radius);
    padding: 40px 55px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.store-latest p {
    padding: 10px 0;
}


@media (max-width: 992px) {
    .store-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .store-profile-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .store-info-badges {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .store-guide-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    .store-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .store-title-wrapper h1 {
        font-size: 1.6em;
        line-height: 1.3;
    }
}