/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-title strong {
    color: #F67777;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.hero-signature {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #F67777;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Product Filter */
.product-filter {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-categories {
    display: flex;
    gap: 1.5rem;
}

.filter-categories a {
    color: #F67777;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.filter-categories a:hover,
.filter-categories a.active {
    color: black;
}

.filter-dropdown {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.product-item {
    text-align: center;
}

.product-image-wrapper {
    position: relative;
    padding-bottom: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-image-wrapper:hover img {
    transform: scale(1.05);
}

.sold-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F67777;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    z-index: 1;
}

.product-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #F67777;
    font-weight: 500;
}

.related-buy {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.buy-now {
    background: #F67777;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-now:hover {
    background: #ff5555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .filter-categories {
        display: none;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}