/**
 * Shoop24 Shop Page Design System (Standalone)
 * Version: 1.0.0
 * 
 * Complete standalone CSS for dealer/merchant shop pages.
 * No external CSS dependencies required.
 * 
 * Usage:
 * <link rel="stylesheet" href="shoop24-shop-page.css">
 * <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
 */

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   CSS VARIABLES / DESIGN TOKENS
   ========================================================================== */

:root {
    /* Colors */
    --s24-background: hsl(120 20% 98%);
    --s24-foreground: hsl(150 30% 10%);
    --s24-card: hsl(0 0% 100%);
    --s24-card-foreground: hsl(150 30% 10%);
    --s24-popover: hsl(0 0% 100%);
    --s24-popover-foreground: hsl(150 30% 10%);
    --s24-primary: hsl(142 64% 38%);
    --s24-primary-foreground: hsl(0 0% 100%);
    --s24-secondary: hsl(120 15% 94%);
    --s24-secondary-foreground: hsl(150 30% 15%);
    --s24-muted: hsl(120 10% 92%);
    --s24-muted-foreground: hsl(150 10% 45%);
    --s24-accent: hsl(28 95% 55%);
    --s24-accent-foreground: hsl(0 0% 100%);
    --s24-destructive: hsl(0 84% 60%);
    --s24-destructive-foreground: hsl(0 0% 100%);
    --s24-success: hsl(142 64% 38%);
    --s24-success-foreground: hsl(0 0% 100%);
    --s24-warning: hsl(38 92% 50%);
    --s24-warning-foreground: hsl(0 0% 100%);
    --s24-info: hsl(199 89% 48%);
    --s24-info-foreground: hsl(0 0% 100%);
    --s24-border: hsl(120 15% 88%);
    --s24-input: hsl(120 15% 88%);
    --s24-ring: hsl(142 64% 38%);

    /* Spacing */
    --s24-space-1: 0.25rem;
    --s24-space-2: 0.5rem;
    --s24-space-3: 0.75rem;
    --s24-space-4: 1rem;
    --s24-space-5: 1.25rem;
    --s24-space-6: 1.5rem;
    --s24-space-8: 2rem;
    --s24-space-10: 2.5rem;
    --s24-space-12: 3rem;
    --s24-space-16: 4rem;
    --s24-space-20: 5rem;

    /* Border Radius */
    --s24-radius-sm: 0.5rem;
    --s24-radius: 0.75rem;
    --s24-radius-lg: 1rem;
    --s24-radius-xl: 1.25rem;
    --s24-radius-2xl: 1.5rem;
    --s24-radius-full: 9999px;

    /* Shadows */
    --s24-shadow-sm: 0 2px 8px -2px hsl(150 30% 10% / 0.08);
    --s24-shadow-md: 0 8px 24px -8px hsl(150 30% 10% / 0.12);
    --s24-shadow-lg: 0 16px 48px -12px hsl(150 30% 10% / 0.15);
    --s24-shadow-xl: 0 24px 64px -16px hsl(150 30% 10% / 0.2);
    --s24-shadow-glow: 0 0 40px hsl(142 64% 38% / 0.2);

    /* Gradients */
    --s24-gradient-primary: linear-gradient(135deg, hsl(142 64% 38%) 0%, hsl(160 60% 45%) 100%);
    --s24-gradient-accent: linear-gradient(135deg, hsl(28 95% 55%) 0%, hsl(35 95% 60%) 100%);
    --s24-gradient-hero: linear-gradient(180deg, hsl(120 20% 98%) 0%, hsl(120 25% 95%) 100%);
    --s24-gradient-card: linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(120 20% 98%) 100%);
    --s24-gradient-dark: linear-gradient(180deg, hsl(150 20% 6%) 0%, hsl(150 25% 10%) 100%);

    /* Typography */
    --s24-font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --s24-font-mono: 'SF Mono', Monaco, 'Cascadia Code', monospace;

    /* Font Sizes */
    --s24-text-xs: 0.75rem;
    --s24-text-sm: 0.875rem;
    --s24-text-base: 1rem;
    --s24-text-lg: 1.125rem;
    --s24-text-xl: 1.25rem;
    --s24-text-2xl: 1.5rem;
    --s24-text-3xl: 1.875rem;
    --s24-text-4xl: 2.25rem;
    --s24-text-5xl: 3rem;

    /* Line Heights */
    --s24-leading-tight: 1.25;
    --s24-leading-normal: 1.5;
    --s24-leading-relaxed: 1.75;

    /* Transitions */
    --s24-transition-fast: 150ms ease;
    --s24-transition-base: 200ms ease;
    --s24-transition-slow: 300ms ease;
    --s24-transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Mode */
.s24-dark {
    --s24-background: hsl(150 20% 6%);
    --s24-foreground: hsl(120 15% 95%);
    --s24-card: hsl(150 20% 8%);
    --s24-card-foreground: hsl(120 15% 95%);
    --s24-popover: hsl(150 20% 8%);
    --s24-popover-foreground: hsl(120 15% 95%);
    --s24-primary: hsl(142 64% 45%);
    --s24-primary-foreground: hsl(150 30% 5%);
    --s24-secondary: hsl(150 15% 15%);
    --s24-secondary-foreground: hsl(120 15% 95%);
    --s24-muted: hsl(150 15% 18%);
    --s24-muted-foreground: hsl(120 10% 60%);
    --s24-accent: hsl(28 95% 55%);
    --s24-accent-foreground: hsl(0 0% 100%);
    --s24-destructive: hsl(0 62% 50%);
    --s24-border: hsl(150 15% 18%);
    --s24-input: hsl(150 15% 18%);
    --s24-gradient-primary: linear-gradient(135deg, hsl(142 64% 45%) 0%, hsl(160 60% 50%) 100%);
    --s24-gradient-hero: linear-gradient(180deg, hsl(150 20% 6%) 0%, hsl(150 25% 10%) 100%);
    --s24-gradient-card: linear-gradient(145deg, hsl(150 20% 10%) 0%, hsl(150 20% 8%) 100%);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--s24-font-sans);
    font-size: var(--s24-text-base);
    line-height: var(--s24-leading-normal);
    color: var(--s24-foreground);
    background-color: var(--s24-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.s24-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /*padding-left: var(--s24-space-4);*/
    /*padding-right: var(--s24-space-4);*/
    padding-left: 6px;
    padding-right: 6px;
}

.s24-flex {
    display: flex;
}

.s24-flex-wrap {
    flex-wrap: wrap;
}

.s24-items-center {
    align-items: center;
}

.s24-justify-between {
    justify-content: space-between;
}

.s24-justify-center {
    justify-content: center;
}

.s24-gap-2 { gap: var(--s24-space-2); }
.s24-gap-3 { gap: var(--s24-space-3); }
.s24-gap-4 { gap: var(--s24-space-4); }
.s24-gap-6 { gap: var(--s24-space-6); }

.s24-hidden { display: none; }
.s24-block { display: block; }

@media (min-width: 768px) {
    .s24-md\:flex { display: flex; }
    .s24-md\:hidden { display: none; }
    .s24-md\:block { display: block; }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.s24-h1, .s24-h2, .s24-h3, .s24-h4, .s24-h5, .s24-h6 {
    font-weight: 700;
    line-height: var(--s24-leading-tight);
    color: var(--s24-foreground);
    margin: 0;
}

.s24-h1 { font-size: var(--s24-text-4xl); font-weight: 800; }
.s24-h2 { font-size: var(--s24-text-3xl); }
.s24-h3 { font-size: var(--s24-text-2xl); font-weight: 600; }
.s24-h4 { font-size: var(--s24-text-xl); font-weight: 600; }
.s24-h5 { font-size: var(--s24-text-lg); font-weight: 500; }
.s24-h6 { font-size: var(--s24-text-base); font-weight: 500; }

.s24-text-muted { color: var(--s24-muted-foreground); }
.s24-text-primary { color: var(--s24-primary); }
.s24-text-accent { color: var(--s24-accent); }

.s24-text-gradient {
    background: var(--s24-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.s24-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s24-space-2);
    padding: 0.625rem 1.25rem;
    font-family: var(--s24-font-sans);
    font-size: var(--s24-text-sm);
    font-weight: 500;
    line-height: 1;
    border-radius: var(--s24-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--s24-transition-base);
}

.s24-btn:focus-visible {
    outline: 2px solid var(--s24-ring);
    outline-offset: 2px;
}

.s24-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.s24-btn-primary {
    background: var(--s24-primary);
    color: var(--s24-primary-foreground);
}

.s24-btn-primary:hover:not(:disabled) {
    opacity: 0.9;
    box-shadow: var(--s24-shadow-md);
}

.s24-btn-secondary {
    background: var(--s24-secondary);
    color: var(--s24-secondary-foreground);
}

.s24-btn-secondary:hover:not(:disabled) {
    background: var(--s24-muted);
}

.s24-btn-outline {
    background: transparent;
    border: 1px solid var(--s24-border);
    color: var(--s24-foreground);
}

.s24-btn-outline:hover:not(:disabled) {
    background: var(--s24-muted);
}

.s24-btn-ghost {
    background: transparent;
    color: var(--s24-foreground);
}

.s24-btn-ghost:hover:not(:disabled) {
    background: var(--s24-muted);
}

.s24-btn-accent {
    background: var(--s24-accent);
    color: var(--s24-accent-foreground);
}

.s24-btn-accent:hover:not(:disabled) {
    opacity: 0.9;
    box-shadow: var(--s24-shadow-md);
}

.s24-btn-gradient {
    background: var(--s24-gradient-primary);
    color: var(--s24-primary-foreground);
}

.s24-btn-gradient:hover:not(:disabled) {
    box-shadow: var(--s24-shadow-glow);
}

.s24-btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: var(--s24-text-xs);
}

.s24-btn-lg {
    padding: 0.875rem 2rem;
    font-size: var(--s24-text-base);
}

.s24-btn-icon {
    padding: 0.625rem;
    aspect-ratio: 1;
}

.s24-btn-icon.s24-btn-sm { padding: 0.375rem; }

/* ==========================================================================
   FORM ELEMENTS
   ========================================================================== */

.s24-input {
    display: block;
    width: 100%;
    padding: 0.625rem var(--s24-space-4);
    font-family: var(--s24-font-sans);
    font-size: var(--s24-text-sm);
    line-height: var(--s24-leading-normal);
    color: var(--s24-foreground);
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius);
    transition: all var(--s24-transition-fast);
}

.s24-input:focus {
    outline: none;
    border-color: var(--s24-primary);
    box-shadow: 0 0 0 3px hsl(142 64% 38% / 0.1);
}

.s24-input::placeholder {
    color: var(--s24-muted-foreground);
}

.s24-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--s24-space-3) center;
    padding-right: var(--s24-space-10);
}

/* ==========================================================================
   BADGES
   ========================================================================== */

.s24-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: var(--s24-text-xs);
    font-weight: 500;
    border-radius: var(--s24-radius-full);
    white-space: nowrap;
}

.s24-badge-primary {
    background: hsl(142 64% 38% / 0.15);
    color: var(--s24-primary);
}

.s24-badge-secondary {
    background: var(--s24-secondary);
    color: var(--s24-secondary-foreground);
}

.s24-badge-accent {
    background: hsl(28 95% 55% / 0.15);
    color: var(--s24-accent);
}

.s24-badge-success {
    background: hsl(142 64% 38% / 0.15);
    color: var(--s24-success);
}

.s24-badge-warning {
    background: hsl(38 92% 50% / 0.15);
    color: var(--s24-warning);
}

.s24-badge-destructive {
    background: hsl(0 84% 60% / 0.15);
    color: var(--s24-destructive);
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.s24-card {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    overflow: hidden;
}

.s24-card-body {
    padding: var(--s24-space-6);
}

.s24-card-elevated {
    box-shadow: var(--s24-shadow-md);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.s24-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsl(0 0% 100% / 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--s24-border);
    transition: all var(--s24-transition-base);
}

.s24-dark .s24-header {
    background: hsl(150 20% 6% / 0.9);
}

.s24-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 var(--s24-space-4);
    max-width: 1200px;
    margin: 0 auto;
}

.s24-logo {
    display: flex;
    align-items: center;
    gap: var(--s24-space-2);
    font-size: var(--s24-text-xl);
    font-weight: 700;
    color: var(--s24-foreground);
}

.s24-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--s24-gradient-primary);
    border-radius: var(--s24-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--s24-primary-foreground);
}

.s24-nav {
    display: none;
    align-items: center;
    gap: var(--s24-space-1);
}

@media (min-width: 768px) {
    .s24-nav {
        display: flex;
    }
}

.s24-nav-link {
    padding: var(--s24-space-2) var(--s24-space-4);
    font-size: var(--s24-text-sm);
    font-weight: 500;
    color: var(--s24-muted-foreground);
    border-radius: var(--s24-radius);
    transition: all var(--s24-transition-fast);
}

.s24-nav-link:hover {
    color: var(--s24-foreground);
    background: var(--s24-muted);
}

.s24-header-actions {
    display: flex;
    align-items: center;
    gap: var(--s24-space-3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.s24-footer {
    background: var(--s24-gradient-dark);
    color: hsl(120 15% 95%);
    padding: var(--s24-space-16) 0 var(--s24-space-8);
}

.s24-footer-grid {
    display: grid;
    gap: var(--s24-space-8);
    margin-bottom: var(--s24-space-12);
}

@media (min-width: 640px) {
    .s24-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .s24-footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.s24-footer-brand {
    max-width: 280px;
}

.s24-footer-title {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: hsl(120 15% 95%);
    margin-bottom: var(--s24-space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s24-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-3);
}

.s24-footer-link {
    color: hsl(120 10% 60%);
    font-size: var(--s24-text-sm);
    transition: color var(--s24-transition-fast);
}

.s24-footer-link:hover {
    color: hsl(120 15% 95%);
}

.s24-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-4);
    padding-top: var(--s24-space-8);
    border-top: 1px solid hsl(150 15% 18%);
}

@media (min-width: 768px) {
    .s24-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.s24-footer-copyright {
    font-size: var(--s24-text-sm);
    color: hsl(120 10% 60%);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.s24-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s24-space-1);
    margin-top: var(--s24-space-8);
}

.s24-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--s24-space-3);
    font-size: var(--s24-text-sm);
    font-weight: 500;
    color: var(--s24-muted-foreground);
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius);
    cursor: pointer;
    transition: all var(--s24-transition-fast);
}

.s24-pagination-btn:hover:not(:disabled) {
    background: var(--s24-muted);
    color: var(--s24-foreground);
}

.s24-pagination-btn.active {
    background: var(--s24-primary);
    color: var(--s24-primary-foreground);
    border-color: var(--s24-primary);
}

.s24-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   SHOP PAGE LAYOUT
   ========================================================================== */

.s24-shop-page {
    min-height: 100vh;
    background: var(--s24-background);
}

/* Shop Header / Hero Banner */
.s24-shop-header {
    position: sticky !important;
    width: 100%;
    min-height: 280px;
    background: var(--s24-gradient-dark);
    overflow: hidden;
}

.s24-shop-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.s24-shop-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, hsl(150 20% 6% / 0.8) 100%);
}

.s24-shop-header-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--s24-space-8) var(--s24-space-4);
    padding-top: 80px;
}

/* ==========================================================================
   SHOP PROFILE SECTION
   ========================================================================== */

.s24-shop-profile {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: -80px auto 0;
    padding: 0 var(--s24-space-4);
}

.s24-shop-profile-card {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-6);
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-xl);
    padding: var(--s24-space-6);
    box-shadow: var(--s24-shadow-lg);
}

@media (min-width: 768px) {
    .s24-shop-profile-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Shop Logo */
.s24-shop-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--s24-radius-lg);
    border: 4px solid var(--s24-card);
    box-shadow: var(--s24-shadow-md);
    object-fit: cover;
    background: var(--s24-muted);
}

@media (min-width: 768px) {
    .s24-shop-logo {
        width: 140px;
        height: 140px;
        margin-top: -60px;
    }
}

/* Shop Info */
.s24-shop-info {
    flex: 1;
    min-width: 0;
}

.s24-shop-name {
    font-size: var(--s24-text-2xl);
    font-weight: 700;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-1);
}

.s24-shop-tagline {
    font-size: var(--s24-text-base);
    color: var(--s24-muted-foreground);
    margin: 0 0 var(--s24-space-3);
}

.s24-shop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s24-space-4);
    margin-bottom: var(--s24-space-4);
}

.s24-shop-meta-item {
    display: flex;
    align-items: center;
    gap: var(--s24-space-2);
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
}

.s24-shop-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--s24-primary);
}

/* Shop Stats */
.s24-shop-stats {
    display: flex;
    gap: var(--s24-space-6);
    padding-top: var(--s24-space-4);
    border-top: 1px solid var(--s24-border);
}

.s24-shop-stat {
    text-align: center;
}

.s24-shop-stat-value {
    display: block;
    font-size: var(--s24-text-xl);
    font-weight: 700;
    color: var(--s24-foreground);
}

.s24-shop-stat-label {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Shop Actions */
.s24-shop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s24-space-3);
    margin-left: auto;
}

/* ==========================================================================
   SHOP NAVIGATION TABS
   ========================================================================== */

.s24-shop-nav {
    max-width: 1200px;
    margin: var(--s24-space-6) auto;
    padding: 0 var(--s24-space-4);
}

.s24-shop-tabs {
    display: flex;
    gap: var(--s24-space-1);
    background: var(--s24-muted);
    padding: var(--s24-space-1);
    border-radius: var(--s24-radius);
    overflow-x: auto;
}

.s24-shop-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s24-space-2);
    padding: var(--s24-space-3) var(--s24-space-4);
    font-size: var(--s24-text-sm);
    font-weight: 500;
    color: var(--s24-muted-foreground);
    background: transparent;
    border: none;
    border-radius: var(--s24-radius-sm);
    cursor: pointer;
    transition: all var(--s24-transition-base);
    white-space: nowrap;
}

.s24-shop-tab:hover {
    color: var(--s24-foreground);
}

.s24-shop-tab.active {
    position: static !important;
    background: var(--s24-card);
    color: var(--s24-foreground);
    box-shadow: var(--s24-shadow-sm);
}

.s24-shop-tab svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   SHOP CONTENT AREA
   ========================================================================== */

.s24-shop-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s24-space-4) var(--s24-space-12);
}

.s24-shop-section {
    margin-bottom: var(--s24-space-10);
}

.s24-shop-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--s24-space-6);
}

.s24-shop-section-title {
    font-size: var(--s24-text-xl);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0;
}

/* Tab Panels */
.s24-tab-panel {
    display: none;
}

.s24-tab-panel.active {
    display: block;
    animation: s24-shop-fade-in 0.3s ease-out;
}

/* ==========================================================================
   PRODUCTS TAB - CATEGORY PILLS
   ========================================================================== */

.s24-category-pills {
    display: flex;
    gap: var(--s24-space-2);
    overflow-x: auto;
    padding-bottom: var(--s24-space-2);
    margin-bottom: var(--s24-space-6);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.s24-category-pills::-webkit-scrollbar {
    display: none;
}

.s24-category-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--s24-space-2);
    padding: var(--s24-space-2) var(--s24-space-4);
    font-size: var(--s24-text-sm);
    font-weight: 500;
    color: var(--s24-muted-foreground);
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-full);
    cursor: pointer;
    transition: all var(--s24-transition-fast);
    white-space: nowrap;
}

.s24-category-pill:hover {
    border-color: var(--s24-primary);
    color: var(--s24-foreground);
}

.s24-category-pill.active {
    background: var(--s24-primary);
    color: var(--s24-primary-foreground);
    border-color: var(--s24-primary);
}

.s24-category-pill svg {
    width: 16px;
    height: 16px;
}

.s24-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 var(--s24-space-1);
    font-size: var(--s24-text-xs);
    background: hsl(0 0% 100% / 0.2);
    border-radius: var(--s24-radius-full);
}

.s24-category-pill.active .s24-category-count {
    background: hsl(0 0% 100% / 0.25);
}

/* Products Toolbar */
.s24-products-toolbar {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-4);
    margin-bottom: var(--s24-space-6);
}

@media (min-width: 640px) {
    .s24-products-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.s24-products-count {
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
}

.s24-products-count strong {
    color: var(--s24-foreground);
    font-weight: 600;
}

.s24-products-sort {
    display: flex;
    align-items: center;
    gap: var(--s24-space-3);
}

.s24-products-sort label {
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
    white-space: nowrap;
}

.s24-sort-select {
    padding: var(--s24-space-2) var(--s24-space-10) var(--s24-space-2) var(--s24-space-3);
    font-size: var(--s24-text-sm);
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--s24-space-3) center;
}

/* ==========================================================================
   INFO TAB STYLES
   ========================================================================== */

.s24-info-grid {
    display: grid;
    gap: var(--s24-space-6);
}

@media (min-width: 768px) {
    .s24-info-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.s24-info-card {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    padding: var(--s24-space-6);
}

.s24-info-card h3 {
    font-size: var(--s24-text-lg);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-4);
    display: flex;
    align-items: center;
    gap: var(--s24-space-2);
}

.s24-info-card h3 svg {
    width: 20px;
    height: 20px;
    color: var(--s24-primary);
}

.s24-info-text {
    font-size: var(--s24-text-base);
    color: var(--s24-muted-foreground);
    line-height: var(--s24-leading-relaxed);
}

.s24-info-text p {
    margin: 0 0 var(--s24-space-4);
}

.s24-info-text p:last-child {
    margin-bottom: 0;
}

/* Values Grid */
.s24-values-grid {
    display: grid;
    gap: var(--s24-space-4);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: var(--s24-space-6);
}

.s24-value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--s24-space-3);
    padding: var(--s24-space-4);
    background: var(--s24-muted);
    border-radius: var(--s24-radius);
}

.s24-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: hsl(142 64% 38% / 0.15);
    border-radius: var(--s24-radius);
    color: var(--s24-primary);
    flex-shrink: 0;
}

.s24-value-icon svg {
    width: 20px;
    height: 20px;
}

.s24-value-content h4 {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-1);
}

.s24-value-content p {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
    margin: 0;
}

/* Team Grid */
.s24-team-grid {
    display: grid;
    gap: var(--s24-space-4);
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-top: var(--s24-space-6);
}

.s24-team-member {
    text-align: center;
    padding: var(--s24-space-4);
    background: var(--s24-muted);
    border-radius: var(--s24-radius-lg);
}

.s24-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--s24-radius-full);
    margin: 0 auto var(--s24-space-3);
    object-fit: cover;
    background: var(--s24-border);
}

.s24-team-name {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-1);
}

.s24-team-role {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
}

/* Certifications */
.s24-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s24-space-3);
    margin-top: var(--s24-space-4);
}

.s24-certification {
    display: flex;
    align-items: center;
    gap: var(--s24-space-2);
    padding: var(--s24-space-2) var(--s24-space-3);
    background: hsl(142 64% 38% / 0.1);
    border-radius: var(--s24-radius);
    font-size: var(--s24-text-sm);
    color: var(--s24-primary);
}

.s24-certification svg {
    width: 16px;
    height: 16px;
}

/* FAQ Accordion */
.s24-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-3);
    margin-top: var(--s24-space-4);
}

.s24-faq-item {
    background: var(--s24-muted);
    border-radius: var(--s24-radius);
    overflow: hidden;
}

.s24-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--s24-space-4);
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.s24-faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--s24-muted-foreground);
    transition: transform var(--s24-transition-fast);
}

.s24-faq-item.open .s24-faq-question svg {
    transform: rotate(180deg);
}

.s24-faq-answer {
    display: none;
    padding: 0 var(--s24-space-4) var(--s24-space-4);
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
    line-height: var(--s24-leading-relaxed);
}

.s24-faq-item.open .s24-faq-answer {
    display: block;
}

/* Map Container */
.s24-map-container {
    width: 100%;
    height: 300px;
    background: var(--s24-muted);
    border-radius: var(--s24-radius-lg);
    overflow: hidden;
    margin-top: var(--s24-space-6);
}

.s24-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   COMPANY INFO CARD
   ========================================================================== */

.s24-company-info {
    display: grid;
    gap: var(--s24-space-6);
}

@media (min-width: 768px) {
    .s24-company-info {
        grid-template-columns: 2fr 1fr;
    }
}

.s24-company-description {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    padding: var(--s24-space-6);
}

.s24-company-description h3 {
    font-size: var(--s24-text-lg);
    font-weight: 600;
    margin: 0 0 var(--s24-space-4);
}

.s24-company-description p {
    font-size: var(--s24-text-base);
    color: var(--s24-muted-foreground);
    line-height: var(--s24-leading-relaxed);
    margin: 0;
}

.s24-company-details {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    padding: var(--s24-space-6);
}

.s24-company-details h3 {
    font-size: var(--s24-text-lg);
    font-weight: 600;
    margin: 0 0 var(--s24-space-4);
}

.s24-company-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-3);
}

.s24-company-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--s24-space-3);
    font-size: var(--s24-text-sm);
}

.s24-company-detail-item svg {
    width: 18px;
    height: 18px;
    color: var(--s24-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.s24-company-detail-item span {
    color: var(--s24-foreground);
}

/* ==========================================================================
   OPENING HOURS
   ========================================================================== */

.s24-opening-hours {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    padding: var(--s24-space-6);
}

.s24-opening-hours h3 {
    font-size: var(--s24-text-lg);
    font-weight: 600;
    margin: 0 0 var(--s24-space-4);
    display: flex;
    align-items: center;
    gap: var(--s24-space-2);
}

.s24-opening-hours h3 svg {
    color: var(--s24-primary);
}

.s24-hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-2);
}

.s24-hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--s24-space-2) 0;
    border-bottom: 1px solid var(--s24-border);
    font-size: var(--s24-text-sm);
}

.s24-hours-row:last-child {
    border-bottom: none;
}

.s24-hours-day {
    font-weight: 500;
    color: var(--s24-foreground);
}

.s24-hours-time {
    color: var(--s24-muted-foreground);
}

.s24-hours-row.today {
    background: hsl(142 64% 38% / 0.1);
    border-radius: var(--s24-radius-sm);
    padding: var(--s24-space-2) var(--s24-space-3);
    margin: 0 calc(var(--s24-space-3) * -1);
}

.s24-hours-row.today .s24-hours-day {
    color: var(--s24-primary);
}

.s24-status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s24-space-2);
    padding: var(--s24-space-1) var(--s24-space-3);
    border-radius: var(--s24-radius-full);
    font-size: var(--s24-text-xs);
    font-weight: 500;
}

.s24-status-badge.open {
    background: hsl(142 64% 38% / 0.15);
    color: var(--s24-success);
}

.s24-status-badge.closed {
    background: hsl(0 84% 60% / 0.15);
    color: var(--s24-destructive);
}

.s24-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: s24-pulse 2s ease-in-out infinite;
}

@keyframes s24-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ==========================================================================
   CONTACT CARD
   ========================================================================== */

.s24-contact-card {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    padding: var(--s24-space-6);
}

.s24-contact-card h3 {
    font-size: var(--s24-text-lg);
    font-weight: 600;
    margin: 0 0 var(--s24-space-4);
}

.s24-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-4);
}

.s24-contact-item {
    display: flex;
    align-items: center;
    gap: var(--s24-space-3);
}

.s24-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--s24-muted);
    border-radius: var(--s24-radius);
    color: var(--s24-primary);
}

.s24-contact-icon svg {
    width: 18px;
    height: 18px;
}

.s24-contact-info {
    flex: 1;
}

.s24-contact-label {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s24-contact-value {
    font-size: var(--s24-text-sm);
    font-weight: 500;
    color: var(--s24-foreground);
}

.s24-contact-value a {
    color: var(--s24-primary);
    text-decoration: none;
}

.s24-contact-value a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   SOCIAL LINKS
   ========================================================================== */

.s24-social-links {
    display: flex;
    gap: var(--s24-space-2);
    margin-top: var(--s24-space-4);
    padding-top: var(--s24-space-4);
    border-top: 1px solid var(--s24-border);
}

.s24-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--s24-muted);
    border-radius: var(--s24-radius);
    color: var(--s24-muted-foreground);
    transition: all var(--s24-transition-base);
}

.s24-social-link:hover {
    background: var(--s24-primary);
    color: var(--s24-primary-foreground);
}

.s24-social-link svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   MAP / LOCATION EMBED
   ========================================================================== */

.s24-location-card {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    overflow: hidden;
}

.s24-location-map {
    width: 100%;
    height: 250px;
    background: var(--s24-muted);
}

.s24-location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.s24-location-info {
    padding: var(--s24-space-4);
}

.s24-location-address {
    display: flex;
    align-items: flex-start;
    gap: var(--s24-space-3);
    font-size: var(--s24-text-sm);
    color: var(--s24-foreground);
}

.s24-location-address svg {
    width: 18px;
    height: 18px;
    color: var(--s24-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   PRODUCT GRID FOR SHOP
   ========================================================================== */

.s24-shop-products {
    display: grid;
    gap: var(--s24-space-4);
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .s24-shop-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .s24-shop-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Shop Product Card */
.s24-shop-product-card {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    overflow: hidden;
    transition: all var(--s24-transition-base);
}

.s24-shop-product-card:hover {
    border-color: var(--s24-primary);
    box-shadow: var(--s24-shadow-md);
    transform: translateY(-2px);
}

.s24-shop-product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--s24-muted);
    overflow: hidden;
}

.s24-shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--s24-transition-slow);
}

.s24-shop-product-card:hover .s24-shop-product-image img {
    transform: scale(1.05);
}

.s24-shop-product-badge {
    position: absolute;
    top: var(--s24-space-2);
    left: var(--s24-space-2);
    background: var(--s24-accent);
    color: var(--s24-accent-foreground);
    padding: var(--s24-space-1) var(--s24-space-2);
    border-radius: var(--s24-radius-sm);
    font-size: var(--s24-text-xs);
    font-weight: 600;
}

.s24-shop-product-content {
    padding: var(--s24-space-4);
}

.s24-shop-product-category {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--s24-space-1);
}

.s24-shop-product-name {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s24-shop-product-price {
    display: flex;
    align-items: baseline;
    gap: var(--s24-space-2);
}

.s24-shop-product-current-price {
    font-size: var(--s24-text-lg);
    font-weight: 700;
    color: var(--s24-primary);
}

.s24-shop-product-original-price {
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
    text-decoration: line-through;
}

.s24-shop-product-unit {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
}

/* ==========================================================================
   SHOP REVIEWS
   ========================================================================== */

.s24-reviews-summary {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-6);
    padding: var(--s24-space-6);
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    margin-bottom: var(--s24-space-6);
}

@media (min-width: 640px) {
    .s24-reviews-summary {
        flex-direction: row;
        align-items: center;
    }
}

.s24-reviews-score {
    text-align: center;
}

.s24-reviews-score-value {
    font-size: var(--s24-text-4xl);
    font-weight: 800;
    color: var(--s24-foreground);
}

.s24-reviews-score-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin: var(--s24-space-1) 0;
}

.s24-reviews-score-stars svg {
    width: 18px;
    height: 18px;
    color: var(--s24-warning);
    fill: var(--s24-warning);
}

.s24-reviews-score-count {
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
}

.s24-reviews-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-2);
}

.s24-reviews-bar-row {
    display: flex;
    align-items: center;
    gap: var(--s24-space-3);
    font-size: var(--s24-text-sm);
}

.s24-reviews-bar-label {
    width: 60px;
    color: var(--s24-muted-foreground);
}

.s24-reviews-bar {
    flex: 1;
    height: 8px;
    background: var(--s24-muted);
    border-radius: var(--s24-radius-full);
    overflow: hidden;
}

.s24-reviews-bar-fill {
    height: 100%;
    background: var(--s24-warning);
    border-radius: var(--s24-radius-full);
    transition: width var(--s24-transition-slow);
}

.s24-reviews-bar-count {
    width: 30px;
    text-align: right;
    color: var(--s24-muted-foreground);
}

/* Review Card */
.s24-review-card {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    padding: var(--s24-space-5);
    margin-bottom: var(--s24-space-4);
}

.s24-review-header {
    display: flex;
    align-items: flex-start;
    gap: var(--s24-space-3);
    margin-bottom: var(--s24-space-3);
}

.s24-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--s24-radius-full);
    background: var(--s24-muted);
    object-fit: cover;
}

.s24-review-author {
    flex: 1;
}

.s24-review-author-name {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0;
}

.s24-review-date {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
}

.s24-review-rating {
    display: flex;
    gap: 2px;
}

.s24-review-rating svg {
    width: 14px;
    height: 14px;
    color: var(--s24-warning);
    fill: var(--s24-warning);
}

.s24-review-rating svg.empty {
    fill: transparent;
    color: var(--s24-muted-foreground);
}

.s24-review-content {
    font-size: var(--s24-text-sm);
    color: var(--s24-foreground);
    line-height: var(--s24-leading-relaxed);
    margin: 0;
}

.s24-review-helpful {
    display: flex;
    align-items: center;
    gap: var(--s24-space-4);
    margin-top: var(--s24-space-4);
    padding-top: var(--s24-space-3);
    border-top: 1px solid var(--s24-border);
}

.s24-review-helpful-text {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
}

.s24-review-helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s24-space-1);
    padding: var(--s24-space-1) var(--s24-space-2);
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
    background: transparent;
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-sm);
    cursor: pointer;
    transition: all var(--s24-transition-fast);
}

.s24-review-helpful-btn:hover {
    background: var(--s24-muted);
    color: var(--s24-foreground);
}

/* ==========================================================================
   SPECIAL OFFERS / PROMOTIONS
   ========================================================================== */

.s24-shop-promo {
    position: relative;
    background: var(--s24-gradient-primary);
    border-radius: var(--s24-radius-xl);
    padding: var(--s24-space-8);
    color: var(--s24-primary-foreground);
    overflow: hidden;
}

.s24-shop-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: hsl(0 0% 100% / 0.1);
    border-radius: 50%;
}

.s24-shop-promo-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.s24-shop-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s24-space-2);
    padding: var(--s24-space-1) var(--s24-space-3);
    background: hsl(0 0% 100% / 0.2);
    border-radius: var(--s24-radius-full);
    font-size: var(--s24-text-xs);
    font-weight: 600;
    margin-bottom: var(--s24-space-4);
}

.s24-shop-promo-title {
    font-size: var(--s24-text-2xl);
    font-weight: 700;
    margin: 0 0 var(--s24-space-2);
}

.s24-shop-promo-desc {
    font-size: var(--s24-text-base);
    opacity: 0.9;
    margin: 0 0 var(--s24-space-6);
}

.s24-shop-promo-code {
    display: inline-flex;
    align-items: center;
    gap: var(--s24-space-2);
    padding: var(--s24-space-2) var(--s24-space-4);
    background: hsl(0 0% 100% / 0.15);
    border: 1px dashed hsl(0 0% 100% / 0.3);
    border-radius: var(--s24-radius);
    font-family: var(--s24-font-mono);
    font-size: var(--s24-text-lg);
    font-weight: 600;
}

/* ==========================================================================
   DELIVERY INFO
   ========================================================================== */

.s24-delivery-info {
    display: grid;
    gap: var(--s24-space-4);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.s24-delivery-card {
    display: flex;
    align-items: flex-start;
    gap: var(--s24-space-4);
    padding: var(--s24-space-5);
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
}

.s24-delivery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: hsl(142 64% 38% / 0.1);
    border-radius: var(--s24-radius);
    color: var(--s24-primary);
    flex-shrink: 0;
}

.s24-delivery-icon svg {
    width: 24px;
    height: 24px;
}

.s24-delivery-content h4 {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-1);
}

.s24-delivery-content p {
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
    margin: 0;
}

/* ==========================================================================
   SHOP SIDEBAR (for desktop)
   ========================================================================== */

@media (min-width: 1024px) {
    .s24-shop-layout {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: var(--s24-space-8);
    }

    .s24-shop-main {
        min-width: 0;
    }

    .s24-shop-sidebar {
        top: calc(72px + var(--s24-space-4));
        height: fit-content;
    }
}

.s24-sidebar-card {
    background: var(--s24-card);
    border: 1px solid var(--s24-border);
    border-radius: var(--s24-radius-lg);
    padding: var(--s24-space-6);
    margin-bottom: var(--s24-space-4);
}

.s24-sidebar-card:last-child {
    margin-bottom: 0;
}

.s24-sidebar-title {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-4);
}

/* ==========================================================================
   SHOP FOOTER / TRUST BADGES
   ========================================================================== */

.s24-shop-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s24-space-6);
    padding: var(--s24-space-8);
    background: var(--s24-muted);
    border-radius: var(--s24-radius-lg);
}

.s24-trust-badge {
    display: flex;
    align-items: center;
    gap: var(--s24-space-2);
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
}

.s24-trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--s24-primary);
}

/* ==========================================================================
   CATEGORY FILTER SIDEBAR
   ========================================================================== */

.s24-filter-section {
    margin-bottom: var(--s24-space-6);
}

.s24-filter-title {
    font-size: var(--s24-text-sm);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s24-filter-list {
    display: flex;
    flex-direction: column;
    gap: var(--s24-space-2);
}

.s24-filter-item {
    display: flex;
    align-items: center;
    gap: var(--s24-space-3);
    padding: var(--s24-space-2) var(--s24-space-3);
    border-radius: var(--s24-radius-sm);
    cursor: pointer;
    transition: background var(--s24-transition-fast);
}

.s24-filter-item:hover {
    background: var(--s24-muted);
}

.s24-filter-item.active {
    background: hsl(142 64% 38% / 0.1);
    color: var(--s24-primary);
}

.s24-filter-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid var(--s24-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--s24-transition-fast);
}

.s24-filter-item.active .s24-filter-checkbox {
    background: var(--s24-primary);
    border-color: var(--s24-primary);
}

.s24-filter-label {
    flex: 1;
    font-size: var(--s24-text-sm);
}

.s24-filter-count {
    font-size: var(--s24-text-xs);
    color: var(--s24-muted-foreground);
}

/* ==========================================================================
   EMPTY STATES
   ========================================================================== */

.s24-shop-empty {
    text-align: center;
    padding: var(--s24-space-16) var(--s24-space-4);
}

.s24-shop-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--s24-muted);
    border-radius: var(--s24-radius-full);
    margin-bottom: var(--s24-space-4);
    color: var(--s24-muted-foreground);
}

.s24-shop-empty-icon svg {
    width: 40px;
    height: 40px;
}

.s24-shop-empty h3 {
    font-size: var(--s24-text-lg);
    font-weight: 600;
    color: var(--s24-foreground);
    margin: 0 0 var(--s24-space-2);
}

.s24-shop-empty p {
    font-size: var(--s24-text-sm);
    color: var(--s24-muted-foreground);
    margin: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.s24-shop-fade-in {
    animation: s24-shop-fade-in 0.5s ease-out;
}

@keyframes s24-shop-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.s24-shop-slide-up {
    animation: s24-shop-slide-up 0.4s ease-out;
}

@keyframes s24-shop-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for product cards */
.s24-shop-products .s24-shop-product-card {
    opacity: 0;
    animation: s24-shop-fade-in 0.5s ease-out forwards;
}

.s24-shop-products .s24-shop-product-card:nth-child(1) { animation-delay: 0.05s; }
.s24-shop-products .s24-shop-product-card:nth-child(2) { animation-delay: 0.1s; }
.s24-shop-products .s24-shop-product-card:nth-child(3) { animation-delay: 0.15s; }
.s24-shop-products .s24-shop-product-card:nth-child(4) { animation-delay: 0.2s; }
.s24-shop-products .s24-shop-product-card:nth-child(5) { animation-delay: 0.25s; }
.s24-shop-products .s24-shop-product-card:nth-child(6) { animation-delay: 0.3s; }
.s24-shop-products .s24-shop-product-card:nth-child(7) { animation-delay: 0.35s; }
.s24-shop-products .s24-shop-product-card:nth-child(8) { animation-delay: 0.4s; }

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.s24-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.s24-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s24-line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s24-line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
