.pagination-nav {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
}

.pagination-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 32px 0;
    width: 100%;
}

.pagination-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; 
    height: 44px;
    padding: 0 12px;
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-light);
    color: var(--clr-text-base);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pagination-button:hover {
    background-color: var(--clr-bg-main);
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pagination-button.active {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-text-inverse);
    pointer-events: none; 
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}


.pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0 4px;
}

@media (max-width: 480px) {
    .pagination-container {
        gap: 6px; 
    }
    .pagination-button {
        min-width: 38px; 
        height: 38px;
        padding: 0 8px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}


.store-card-premium {
    background-color: var(--clr-bg-surface);
    border-radius: 16px;
    height: 100%;
    border: 1px solid var(--clr-border-light);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
    overflow: hidden;
}

.store-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-accent);
}

.store-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 12px;
    height: 100%;
    gap: 12px;
}

.store-card-link:hover {
    text-decoration: none;
}


.store-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--clr-bg-main);
    border: 1px solid var(--clr-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.store-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform var(--transition-fast);
}

.store-card-premium:hover .store-logo-img {
    transform: scale(1.08); 
}


.store-initial {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-inverse);
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-name-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-base);
    text-align: center;
    line-height: 1.3;
    margin: 0;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.age-gate-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 24px;
    background-color: var(--clr-bg-main);
}

.age-gate-card {
    background-color: var(--clr-bg-surface);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--clr-border-light);
    
   
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-gate-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(15, 23, 42, 0.05));
    border-radius: 50%;
    color: var(--clr-accent);
    margin-bottom: 24px;
}

.age-gate-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

.age-gate-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.age-gate-text {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.age-gate-form {
    display: flex;
    flex-direction: column;
}

.age-gate-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 12px;
}

@media (min-width: 576px) {
    .age-gate-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .age-gate-form,
    .age-gate-actions > a {
        flex: 1;
    }
}


.ad-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 280px; 
    background-color: var(--clr-bg-main);
    border: 1px dashed var(--clr-border-light);
    border-radius: 12px;
    margin: 24px 0;
    overflow: hidden;
    position: relative;
    transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}


.ad-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    user-select: none; 
}


.ad-wrapper.is-loaded {
    background-color: transparent;
    border-color: transparent;
}

.catalog-card-wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
}

.catalog-card-premium {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    background-color: var(--clr-bg-surface);
    border-radius: 16px;
    border: 1px solid var(--clr-border-light);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
}

.catalog-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-accent);
}

.catalog-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 150 / 214;
    max-height: 420px;
    background-color: var(--clr-bg-main);
    overflow: hidden;
}

.catalog-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card-premium:hover .catalog-image-box img {
    transform: scale(1.05);
}


.catalog-badge {
    position: absolute;
    top: 16px;
    left: 0;
    background-color: #dc2626; 
    color: var(--clr-text-inverse);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0 8px 8px 0;
    z-index: 5;
    box-shadow: var(--shadow-md);
}


.catalog-page-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--clr-text-inverse);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
}


.catalog-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.catalog-brand {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-time {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.catalog-state {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.catalog-state.status-today { color: #16a34a; }
.catalog-state.status-future { color: #d97706; }


.error-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
    padding: 60px 20px;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem); 
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    
   
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.error-message {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    max-width: 500px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}


.recommended-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--clr-border-light);
}



.error-code.server-error {
    background: linear-gradient(135deg, #ef4444, #991b1b); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.error-code.expired-error {
    background: linear-gradient(135deg, #ea580c, #f59e0b); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.category-pills-wrapper {
    margin: 16px 0 32px 0;
    width: 100%;
}

.category-pills-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px; 
}


.category-pills-scroll::-webkit-scrollbar {
    height: 4px;
}
.category-pills-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.category-pills-scroll::-webkit-scrollbar-thumb {
    background: var(--clr-border-light);
    border-radius: 4px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: 24px; 
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-base);
    white-space: nowrap; 
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.category-pill:hover {
    background-color: var(--clr-bg-main);
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: translateY(-2px);
}


.category-showcase-section {
    margin-bottom: 48px;
}

.category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--clr-border-light);
}

.category-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-text-heading);
    letter-spacing: -0.02em;
    margin: 0;
}

.category-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-light);
    color: var(--clr-text-muted);
    transition: all var(--transition-fast);
}

.category-icon-btn:hover {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-text-inverse);
    box-shadow: var(--shadow-sm);
}

.category-section-footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 12px;
}



.premium-section {
    margin-top: 40px;
    margin-bottom: 48px;
}

.section-header {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--clr-border-light);
}

.section-title {
    font-size: clamp(1.5rem, 4vw + 1rem, 2.2rem); 
    font-weight: 600; 
    color: var(--clr-text-heading);
    letter-spacing: -0.03em; 
    line-height: 1.2; 
    margin-bottom: 16px; 
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin: 0;
}

.flyer-title {
    font-size: clamp(1.5rem, 4vw + 1rem, 1.5rem); 
    font-weight: 600; 
    color: var(--clr-text-heading);
    letter-spacing: -0.03em; 
    line-height: 1.2; 
    margin-bottom: 16px; 
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}


.empty-state-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background-color: var(--clr-bg-surface);
    border: 1px dashed var(--clr-border-light);
    border-radius: 16px;
    text-align: center;
    color: var(--clr-text-muted);
}

.empty-state-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--clr-text-muted);
    opacity: 0.5;
}



.static-page-wrapper {
    max-width: 900px; 
    margin: 40px auto 64px auto;
    padding: 48px;
    background-color: var(--clr-bg-surface);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border-light);
}

@media (max-width: 768px) {
    .static-page-wrapper {
        padding: 24px 20px;
        margin-top: 24px;
    }
}


.prose {
    font-family: var(--font-sans);
    color: var(--clr-text-base);
    line-height: 1.6;
    font-size: 1rem;
}

.prose h1 {
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.prose h2 {
    font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
    border-bottom: 1px solid var(--clr-border-light);
    padding-bottom: 0.75rem;
}

.prose h3 {
    font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
}

.prose h4 {
    font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
    color: var(--clr-text-heading);
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 700; 
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.prose p {
    margin-bottom: 1.5em;
}

.prose a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-fast);
}

.prose a:hover {
    color: var(--clr-accent-hover);
}

.prose ul, .prose ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em 0;
}



.alphabet-filter-wrapper {
    margin: 16px 0 32px 0;
    width: 100%;
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.alphabet-filter-scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px; 
}


.alphabet-filter-scroll::-webkit-scrollbar { height: 4px; }
.alphabet-filter-scroll::-webkit-scrollbar-track { background: transparent; }
.alphabet-filter-scroll::-webkit-scrollbar-thumb { background: var(--clr-border-light); border-radius: 4px; }

.alphabet-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-base);
    background-color: var(--clr-bg-main);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    flex-shrink: 0;
}

.alphabet-button:hover {
    background-color: var(--clr-bg-surface);
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.alphabet-button.is-active {
    background-color: var(--clr-accent);
    color: var(--clr-text-inverse);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    pointer-events: none;
}


.store-hero-card {
    background-color: var(--clr-bg-surface);
    border-radius: 24px;
    padding: 32px;
    margin: 24px 0 48px 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border-light);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.store-hero-brand {
    display: flex;
    align-items: center;
    gap: 24px;
}

.store-avatar-large {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: var(--clr-bg-main);
    border: 1px solid var(--clr-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    padding: 12px;
}

.store-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--clr-text-heading);
    margin: 0;
    letter-spacing: -0.02em;
}

.store-hero-actions {
    display: flex;
    gap: 12px;
}

.seo-content-card {
    background: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-light);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.seo-content-mask {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.seo-content-mask::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--clr-bg-surface));
    pointer-events: none;
    opacity: 1;
    transition: opacity var(--transition-fast);
}

.seo-content-mask.is-expanded {
    max-height: none;
}

.seo-content-mask.is-expanded::after {
    opacity: 0;
}

.read-more-wrapper {
    text-align: center;
    position: relative;
    margin-top: -24px;
    z-index: 2;
}


@media (max-width: 768px) {
    .store-hero-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .store-hero-title {
        font-size: 1.75rem;
    }
    .store-avatar-large {
        width: 72px;
        height: 72px;
        padding: 8px;
    }
    .store-hero-actions {
        width: 100%;
    }
    .store-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.store-breadcrumb-wrapper {
    width: 100%;
    margin-bottom: 24px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap; 
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--clr-primary);
}

.breadcrumb-item:last-child {
    color: var(--clr-text-heading);
    font-weight: 600;
}

.breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
    color: var(--clr-border-light);
}

.breadcrumb-separator svg {
    opacity: 0.6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


.category-subtitle {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    padding: 6px 12px;
    background-color: rgba(37, 99, 235, 0.1); 
    color: var(--clr-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transform: translateY(-3px); 
}

@media (max-width: 576px) {
    .category-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        transform: translateY(0);
        width: fit-content;
    }
}


.layout-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px;
}

.single-main-content {
    flex: 1;
    max-width: 1024px;
    width: 100%;
}

.ad-edge {
    width: 160px;
    position: sticky;
    top: 90px; 
    display: none;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .ad-edge { display: block; }
    .ad-mobil-content { display: none; }
}

@media (max-width: 768px) {
    .layout-wrapper {
        display: block;
        padding: 16px 10px;
    }
}


.flyer-image-wrapper {
    position: relative;
    display: inline-block;
    line-height: 0;
    margin: 0 auto 32px auto;
    width: calc(100% - 30px);
    background-color: var(--clr-bg-main);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 620px) { .flyer-image-wrapper { max-width: 600px; } }
@media (min-width: 800px) { .flyer-image-wrapper { max-width: 768px; } }
@media (min-width: 1054px) { .flyer-image-wrapper { max-width: 1024px; } }

.flyer-page-image {
    display: block;
    width: 100%;
    height: auto;
    background-color: #fff;
}


.flyer-image-wrapper.is-expired {
    filter: grayscale(90%) opacity(60%);
    transition: filter var(--transition-smooth);
}
.flyer-image-wrapper.is-expired:hover {
    filter: grayscale(40%) opacity(85%);
}

.blurred-image {
    filter: blur(15px);
    pointer-events: none;
}

.embargo-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-text-inverse);
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

@keyframes pulse-hotspot {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.product-hotspot {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot-pulse {
    width: 28px;
    height: 28px;
    background-color: var(--clr-accent);
    border: 2px solid var(--clr-text-inverse);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
    animation: pulse-hotspot 2s infinite;
}

.product-hotspot:hover .hotspot-pulse {
    animation: none;
    transform: scale(1.15);
    background-color: var(--clr-primary);
}

.hotspot-tooltip {
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    z-index: 20;
    width: max-content;
    max-width: 220px;
    background-color: var(--clr-text-heading);
    color: var(--clr-text-inverse);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--clr-text-heading) transparent transparent transparent;
}

.product-hotspot:hover .hotspot-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


.campaign-expired-box {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-left: 6px solid #d97706;
    color: #92400e;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    max-width: 640px;
    margin: 32px auto;
    text-align: center;
}


#searchResults {
    display: none;
    margin-top: 16px;
    background: var(--clr-bg-surface);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border-light);
    max-height: 70vh; 
    overflow-y: auto;
    text-align: left;
}

#searchResults.visible {
    display: block;
    animation: fadeInSearch 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInSearch {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


.search-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--clr-bg-main);
    border-bottom: 1px solid var(--clr-border-light);
    overflow-x: auto;
    scrollbar-width: none; 
}

.search-tabs::-webkit-scrollbar {
    display: none; 
}

.search-tab-button {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    background: var(--clr-bg-surface);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    border: 1px solid var(--clr-border-light);
}

.search-tab-button:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.search-tab-button.active {
    background: var(--clr-primary);
    color: var(--clr-text-inverse);
    border-color: var(--clr-primary);
}


.search-tab-pane {
    display: none;
    padding: 12px;
}

.search-tab-pane.active {
    display: block;
}


.search-result-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.search-result-link:hover {
    background: var(--clr-bg-main);
}

.result-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.result-image {
    width: 44px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--clr-border-light);
    flex-shrink: 0;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.result-details strong {
    color: var(--clr-text-heading);
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-details span {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}


.search-result-item.empty,
.search-result-item.error {
    padding: 32px 16px;
    text-align: center;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.no-results-container {
    padding: 24px 16px;
}

.no-results-message {
    text-align: center;
    font-size: 1.1rem;
    color: var(--clr-text-heading);
    font-weight: 700;
    margin-bottom: 24px;
}

.suggestion-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 16px;
}

.suggestion-section {
    margin-bottom: 32px;
}

.suggestion-header {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--clr-border-light);
    padding-bottom: 8px;
    margin-bottom: 16px;
    font-weight: 700;
}

.suggestion-grid-stores {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 16px;
}

.suggestion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.suggestion-item:hover {
    transform: translateY(-4px);
}

.suggestion-image-store {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--clr-border-light);
    object-fit: contain;
    padding: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.suggestion-name {
    font-size: 0.8rem;
    color: var(--clr-text-heading);
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}


.suggestion-grid-flyers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
}

.suggestion-item-flyer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.suggestion-item-flyer:hover {
    transform: translateY(-4px);
}

.suggestion-image-flyer {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
}

.suggestion-details {
    display: flex;
    flex-direction: column;
}

.suggestion-subtext {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.store-corporate-header {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--clr-bg-surface);
    padding: 32px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--clr-border-light);
}

.store-corporate-logo-col {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-right: 32px;
}

.store-corporate-logo-col img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.store-corporate-text-col {
    flex: 1;
    min-width: 300px;
    padding-left: 32px;
    border-left: 1px solid var(--clr-border-light);
}

.store-corporate-title {
    font-size: clamp(1.2rem, 0.9rem + 1vw, 1.6rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--clr-text-heading);
    margin: 0 0 1rem;
}

.store-corporate-seo-text {
    font-size: 0.95rem;
    color: var(--clr-text-base);
    line-height: 1.7;
    margin-bottom: 16px;
}


@media (max-width: 768px) {
    .store-corporate-header {
        flex-direction: column;
        padding: 24px 16px;
    }
    .store-corporate-logo-col {
        flex: none;
        padding-right: 0;
        margin-bottom: 24px;
    }
    .store-corporate-text-col {
        padding-left: 0;
        border-left: none;
    }
}


.catalog-card-horizontal {
    display: flex;
    flex-direction: column;
    background: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-light);
    height: 100%;
    transition: box-shadow var(--transition-fast);
}

.catalog-card-horizontal:hover {
    box-shadow: var(--shadow-md);
}

.catalog-card-h-body {
    display: flex;
    padding: 16px;
    gap: 20px;
    flex-grow: 1;
}

.catalog-h-image {
    flex: 0 0 140px;
    position: relative;
}

.catalog-h-image img {
    width: 100%;
    height: auto;
    border: 1px solid var(--clr-border-light);
    box-shadow: var(--shadow-sm);
}

.catalog-h-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #eab308; 
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    text-transform: uppercase;
}

.catalog-h-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-h-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    margin-bottom: 16px;
    line-height: 1.3;
}

.catalog-h-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.catalog-h-stats li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #16a34a; 
    margin-bottom: 8px;
}

.catalog-h-stats li span {
    color: var(--clr-text-muted);
}

.catalog-h-stats li strong {
    color: #16a34a;
}


.catalog-card-h-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid var(--clr-border-light);
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    background-color: var(--clr-bg-main);
}

.catalog-h-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.catalog-h-store strong {
    color: var(--clr-text-heading);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .catalog-card-h-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .catalog-h-stats li {
        justify-content: center;
    }
}

.catalog-card-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: transform var(--transition-fast);
    background: transparent;
}


a:hover .catalog-card-vertical {
    transform: translateY(-4px);
}


.catalog-v-image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 8px; 
    overflow: hidden;
    box-shadow: var(--shadow-md); 
    margin-bottom: 16px;
    border: 1px solid var(--clr-border-light);
    aspect-ratio: 150 / 214; 
    background: var(--clr-bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}


a:hover .catalog-v-image-wrapper {
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-accent); 
}

.catalog-v-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-v-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #eab308; 
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-bottom-right-radius: 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.catalog-v-brand {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-text-heading);
    margin-bottom: 4px;
    line-height: 1.2;
}


.catalog-v-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-base);
    margin-bottom: 6px;
}


.catalog-v-date {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}