/* === Hero Section === */
.hero-section {
    min-height: 500px;
}

.hero-slide {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

/* === Flash Sale Section === */
.bg-gradient-flash-sale {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #f39c12 100%);
}

.flash-sale-image-wrapper {
    height: 160px;
    overflow: hidden;
}

.flash-sale-placeholder {
    height: 160px;
    transition: transform 0.3s ease;
}

.flash-sale-card:hover .flash-sale-placeholder {
    transform: scale(1.05);
}

.flash-sale-price {
    font-size: 1.25rem;
}

.flash-sale-original-price {
    font-size: 0.875rem;
}

/* === New Arrivals Section === */
.new-arrival-image-wrapper {
    height: 180px;
}

.new-arrival-placeholder {
    height: 180px;
    transition: transform 0.3s ease;
}

.bg-pink-gradient { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.bg-teal-gradient { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
.bg-rose-gradient { background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%); }
.bg-purple-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

.new-arrival-card:hover .new-arrival-placeholder {
    transform: scale(1.05);
}

/* === Product Card === */
.product-image-wrapper {
    height: 200px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-placeholder {
    height: 200px;
    background: #f8f9fa;
}

/* === Category Card === */
.category-image-wrapper {
    height: 120px;
}

.category-image {
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: rgba(0,0,0,0.1);
}

.category-placeholder {
    height: 120px;
}

/* === Best Sellers Section === */
.best-seller-featured-image {
    height: 200px;
}

.best-seller-placeholder {
    height: 200px;
}

.bg-coral-gradient { background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); }
.bg-white-lily-gradient { background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); }
.bg-forest-gradient { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.bg-amber-gradient { background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%); }
.bg-orchid-gradient { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }

.best-seller-thumb {
    width: 60px;
    height: 60px;
}

.best-seller-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.best-seller-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
}

.best-seller-item-rank {
    min-width: 32px;
}

/* === Reviews Section === */
.review-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.1) !important;
}

.review-text {
    font-style: italic;
    color: #6c757d;
}

.review-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

/* === Guarantees Section === */
.guarantee-card {
    transition: transform 0.2s ease;
}

.guarantee-card:hover {
    transform: translateY(-4px);
}

.guarantee-icon {
    width: 72px;
    height: 72px;
}

/* === About Section === */
.about-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-decoration {
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.stat-item {
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

/* === Announcement Card === */
.announcement-image {
    height: 160px;
    object-fit: cover;
}

/* === Utilities === */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Carousel === */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
