@media (min-width: 768px) {
    .main-wrapper {
        padding-top: 170px;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding-top: 120px;
    }
}

.shop-index {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.shop-header {
    text-align: center;
}

.shop-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.shop-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.btn-secondary {
    background: #ecf0f1;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #bdc3c7;
    color: #2c3e50;
    text-decoration: none;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #7f8c8d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* --- Modern price/discount style --- */
.product-price-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.final-price {
    font-size: 1.7rem;
    font-weight: 700;
    color: #191919;
    line-height: 1;
}
.original-price {
    font-size: 1.1rem;
    color: #a0a0a0;
    text-decoration: line-through;
    font-weight: 400;
    line-height: 1;
}
.discount-modern {
    font-size: 1.1rem;
    color: #e30613;
    font-weight: 700;
    line-height: 1;
}
.pointer{
    cursor: pointer;
}
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .shop-header h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}