.store-hero {
    background: linear-gradient(135deg, #d4868f, #c27380);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.store-hero h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.store-hero p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
}

.collection-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: white;
    color: #d4868f;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image .emoji-fallback {
    font-size: 60px;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 24px;
    font-weight: 300;
    color: #d4868f;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4868f, #c27380);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #d4868f;
    padding: 10px 25px;
    border: 2px solid #d4868f;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #d4868f, #c27380);
    color: white;
}

.custom-orders {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.custom-orders h2 {
    font-size: 36px;
    font-weight: 300;
    color: #d4868f;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.custom-orders p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.custom-orders a {
    display: inline-block;
    background: linear-gradient(135deg, #d4868f, #c27380);
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-orders a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
