.products-section-elegant {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.section-header-elegant {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge-elegant {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title-elegant {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-elegant .gradient-text {
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description-elegant {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Product Card */
.product-card-elegant {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card-elegant:hover::before {
    opacity: 1;
}

.product-card-elegant:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(82, 33, 19, 0.2);
}

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

/* Image Section */
.product-image-wrapper-elegant {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.product-image-elegant {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image-elegant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.product-card-elegant:hover .product-image-elegant img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1);
}

.product-overlay-elegant {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(82, 33, 19, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-elegant:hover .product-overlay-elegant {
    opacity: 1;
}

.product-overlay-content-elegant {
    transform: translateY(30px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-elegant:hover .product-overlay-content-elegant {
    transform: translateY(0) scale(1);
}

.view-btn-elegant {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #522113;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.view-btn-elegant:hover {
    transform: rotate(90deg);
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    color: #fff;
}

.product-badge-elegant {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.product-card-elegant:hover .product-badge-elegant {
    transform: scale(1.1) rotate(-5deg);
}

/* Content Section */
.product-content-elegant {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-category-elegant {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #522113;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title-elegant {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-elegant:hover .product-title-elegant {
    color: #522113;
}

.product-description-elegant {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer-elegant {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-more-link-elegant {
    color: #522113;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.product-more-link-elegant i {
    transition: transform 0.3s ease;
}

.product-card-elegant:hover .product-more-link-elegant {
    gap: 15px;
}

.product-card-elegant:hover .product-more-link-elegant i {
    transform: translateX(-8px);
}

/* View All Button */
.view-all-section-elegant {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all-elegant {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #522113 0%, #8B3A1F 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(82, 33, 19, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-view-all-elegant::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-view-all-elegant:hover::before {
    width: 300px;
    height: 300px;
}

.btn-view-all-elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(82, 33, 19, 0.6);
    color: #fff;
}

.btn-view-all-elegant i {
    transition: transform 0.3s ease;
}

.btn-view-all-elegant:hover i {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .products-section-elegant {
        padding: 70px 0;
    }
    
    .section-title-elegant {
        font-size: 2.5rem;
    }
    
    .product-title-elegant {
        font-size: 20px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .section-title-elegant {
        font-size: 2rem;
    }
    
    .product-content-elegant {
        padding: 25px;
    }
    
    .product-title-elegant {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .products-section-elegant {
        padding: 50px 0;
    }
    
    .section-header-elegant {
        margin-bottom: 40px;
    }
    
    .product-content-elegant {
        padding: 20px;
    }
}
