.store-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.store-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.store-header p {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.7);
    padding: 10px 15px;
    border-radius: 15px;
}

.store-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.category-filter {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
}

.category-filter h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b8b;
    margin-bottom: 15px;
    text-align: center;
}

.category-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-filter li {
    margin-bottom: 0;
}

.category-filter a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    display: block;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter li.active a {
    background: #ff6b8b;
    color: white;
    font-weight: 500;
}

.category-filter a:hover {
    background: #fef7ff;
    color: #ff6b8b;
    transform: translateY(-2px);
}

.products-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,107,139,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #ff6b8b;
}

.product-image {
    margin-bottom: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b8b;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    background-color: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 10px;
}

.view-details {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2c3e50;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 1;
}

.view-details:hover {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,139,0.3);
}
