/**
 * IAP-IT Shop - Globales Stylesheet
 * Kaufpsychologisch optimiertes Design
 */

/* ==========================================================================
   CSS Variables - Shop spezifisch
   ========================================================================== */
:root {
    --shop-card-bg: rgba(255, 255, 255, 0.03);
    --shop-card-border: rgba(255, 255, 255, 0.08);
    --shop-card-hover-border: rgba(28, 172, 148, 0.4);
    --shop-card-radius: 20px;
    --shop-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shop-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Animated Background - IT Theme
   ========================================================================== */
.shop-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shop-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(28, 172, 148, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(208, 9, 141, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(28, 172, 148, 0.04) 0%, transparent 30%);
    animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-2%, -2%) rotate(1deg); }
}

/* Grid Pattern Overlay */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(28, 172, 148, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 172, 148, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* ==========================================================================
   Shop Layout
   ========================================================================== */
.shop-main {
    min-height: 80vh;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HERO SLIDER - Automatisch wechselnd
   ========================================================================== */
.hero-slider-section {
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slides {
    position: relative;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-slides {
        min-height: auto;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-image {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    .hero-text {
        padding: 0 !important;
    }
}

.hero-text {
    padding-right: 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(208, 9, 141, 0.2), rgba(28, 172, 148, 0.2));
    border: 1px solid rgba(208, 9, 141, 0.4);
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-badge .badge-discount {
    background: var(--color-secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
}

.hero-badge .badge-text {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge-alt {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.2), rgba(28, 172, 148, 0.1));
    border-color: rgba(28, 172, 148, 0.4);
}

.hero-badge-alt .badge-text {
    color: var(--color-primary);
}

.hero-category {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-light);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}

@media (max-width: 900px) {
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Price Block - Kaufpsychologie */
.hero-price-block {
    margin-bottom: 28px;
}

.price-comparison {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .price-comparison {
        justify-content: center;
    }
}

.price-original {
    display: flex;
    flex-direction: column;
}

.price-original .price-label {
    font-size: 12px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-original .price-value {
    font-size: 1.3rem;
    color: var(--color-gray);
    text-decoration: line-through;
    font-weight: 500;
}

.price-now {
    display: flex;
    flex-direction: column;
}

.price-now .price-label {
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.price-now .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.price-single .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.price-single .price-tax {
    display: block;
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 4px;
}

.savings-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(28, 172, 148, 0.15);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 10px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
}

.savings-info svg {
    color: var(--color-primary);
}

/* Stock Warning - Verknappung */
.stock-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    animation: pulseWarning 2s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero-actions {
        justify-content: center;
    }
}

.btn-large {
    padding: 18px 36px !important;
    font-size: 16px !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(28, 172, 148, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating Savings Badge */
.floating-savings {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: linear-gradient(135deg, var(--color-secondary), #e91e63);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(208, 9, 141, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-savings .savings-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.floating-savings .savings-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.2);
}

.slider-dot .dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--color-primary);
    border-radius: 2px;
}

.slider-dot.active .dot-progress {
    animation: dotProgress 6000ms linear;
}

@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}

.slider-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(28, 172, 148, 0.2);
    border-color: rgba(28, 172, 148, 0.4);
    color: var(--color-primary);
}

/* Simple Hero Fallback */
.hero-simple-section {
    text-align: center;
    padding: 80px 0;
}

.hero-simple-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-simple-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--color-light);
}

.hero-simple-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 32px;
}

/* ==========================================================================
   TRUST SECTION - Vertrauenselemente
   ========================================================================== */
.trust-section {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1000px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 16px;
    transition: all 0.3s;
}

.trust-item:hover {
    border-color: var(--shop-card-hover-border);
    transform: translateY(-4px);
}

.trust-icon {
    width: 52px;
    height: 52px;
    background: rgba(28, 172, 148, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-light);
}

.trust-text span {
    font-size: 13px;
    color: var(--color-gray);
}

/* ==========================================================================
   CATEGORY SECTIONS - Mit Produkten
   ========================================================================== */
.category-section {
    padding: 80px 0;
    position: relative;
}

.category-section.section-alt {
    background: rgba(0, 0, 0, 0.2);
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(28, 172, 148, 0.2), transparent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 800px) {
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-intro {
        text-align: center;
    }
}

.section-intro {
    max-width: 600px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(28, 172, 148, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--color-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-text {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    background: rgba(28, 172, 148, 0.1);
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 10px;
    transition: all 0.3s;
}

.section-link:hover {
    background: rgba(28, 172, 148, 0.2);
    transform: translateX(5px);
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.product-grid {
    display: grid;
    gap: 20px;
}

.product-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .product-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .product-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRODUCT CARDS - Kaufpsychologisch optimiert
   ========================================================================== */
.product-card {
    position: relative;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: var(--shop-card-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.product-image {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

.badge-sale {
    background: linear-gradient(135deg, var(--color-secondary), #e91e63);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, var(--color-primary), #15a085);
    color: white;
}

.product-stock-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

/* Product Info */
.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-light);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Price */
.product-price {
    margin-top: auto;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.price-old {
    font-size: 13px;
    color: var(--color-gray);
    text-decoration: line-through;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-savings {
    display: block;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 4px;
}

.price-tax {
    display: block;
    font-size: 11px;
    color: var(--color-gray);
    margin-top: 4px;
}

/* Product Hover CTA */
.product-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.product-card:hover .product-hover {
    opacity: 1;
    transform: translateY(0);
}

.hover-cta {
    display: block;
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

/* ==========================================================================
   WHY SECTION - Überzeugung
   ========================================================================== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(28, 172, 148, 0.05) 0%, transparent 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.why-text .section-label {
    margin-bottom: 16px;
}

.why-text .section-title {
    margin-bottom: 20px;
}

.why-text .section-text {
    margin-bottom: 32px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list li span {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.5;
}

/* Stats Grid */
.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--shop-card-hover-border);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
    text-align: center;
}

/* ==========================================================================
   CTA SECTION - Handlungsaufforderung
   ========================================================================== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(28, 172, 148, 0.1), rgba(208, 9, 141, 0.1));
    border: 1px solid rgba(28, 172, 148, 0.3);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

.cta-content h2 {
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--color-gray);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .cta-actions {
        justify-content: center;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--color-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ==========================================================================
   EXISTING STYLES - Backward Compatibility
   ========================================================================== */

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: var(--shop-card-radius);
    padding: 40px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--shop-card-hover-border);
    box-shadow: var(--shop-shadow-hover);
}

.category-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-light);
}

.category-card .product-count {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 16px;
    background: rgba(28, 172, 148, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Filter Sidebar */
.products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1000px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
}

.shop-sidebar {
    position: sticky;
    top: 100px;
}

.filter-section {
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.filter-section h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--color-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.filter-list a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-light);
}

.filter-list a.active {
    background: rgba(28, 172, 148, 0.15);
    color: var(--color-primary);
    font-weight: 600;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 12px;
}

.result-count {
    font-size: 14px;
    color: var(--color-gray);
}

.sort-select select {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--shop-card-border);
    border-radius: 6px;
    color: var(--color-light);
    font-size: 13px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--color-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb .current {
    color: var(--color-primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.pagination a {
    padding: 12px 24px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 10px;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: var(--shop-card-radius);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    color: var(--color-gray);
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--color-light);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--color-gray);
    margin-bottom: 24px;
}

/* Mobile Filter */
.mobile-filter-btn {
    display: none;
    width: 100%;
    padding: 14px 20px;
    background: var(--shop-card-bg);
    border: 1px solid var(--shop-card-border);
    border-radius: 12px;
    color: var(--color-light);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1000px) {
    .mobile-filter-btn {
        display: flex;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: var(--color-dark);
        z-index: 999;
        overflow-y: auto;
        transition: left 0.3s;
        padding: 20px;
    }

    .shop-sidebar.open {
        left: 0;
    }
}

/* Old Hero Banner Styles (kept for compatibility) */
.hero-banner {
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

.shop-section {
    position: relative;
    padding: 60px 0;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(28, 172, 148, 0.3), rgba(208, 9, 141, 0.3), transparent);
    margin: 60px 0;
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-refurbished {
    background: rgba(99, 102, 241, 0.9);
    color: white;
}

.badge-discount {
    background: rgba(208, 9, 141, 0.9);
    color: white;
}

.badge-new {
    background: rgba(28, 172, 148, 0.9);
    color: white;
}

/* Product Card Content (old) */
.product-card-image {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
}

.product-card-category {
    font-size: 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-light);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
