.featured-collection-section { padding: 60px 0; background: #fff; font-family: 'Poppins', sans-serif; }

.f-col-header { text-align: left; margin-bottom: 30px; display: flex; flex-direction: column; gap: 8px; border-bottom: 2px solid #f1f5f9; padding-bottom: 15px; }
.f-col-header h2 { font-size: 26px; color: #1e293b; font-weight: 700; text-transform: capitalize; }
.f-col-header p { font-size: 14px; color: #64748b; }

/* Product Card */
.f-prod-card { background: #fff; border-radius: 12px; transition: 0.3s; padding-bottom: 15px; }
.f-prod-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

/* Image Area */
.f-prod-img { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: #f8fafc; }
.f-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.f-prod-card:hover .f-prod-img img { transform: scale(1.05); }

.f-sale-badge { position: absolute; top: 12px; left: 12px; background: #ef4444; color: white; font-size: 10px; font-weight: bold; padding: 4px 10px; border-radius: 4px; z-index: 2; }

/* Hover Actions */
.f-quick-actions { position: absolute; top: 15px; right: -50px; display: flex; flex-direction: column; gap: 10px; transition: 0.3s; z-index: 2; }
.f-prod-card:hover .f-quick-actions { right: 15px; }
.f-action-btn { width: 35px; height: 35px; border-radius: 50%; background: #fff; border: none; color: #1e293b; box-shadow: 0 4px 10px rgba(0,0,0,0.1); cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.f-action-btn:hover { background: #1B4D3E; color: #D4AF37; }

/* Product Info */
.f-prod-info { padding: 15px 5px 0; text-align: left; }
.f-prod-info h3 { font-size: 14px; color: #334155; font-weight: 500; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 40px; }

.f-prod-price { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.f-price { font-size: 16px; font-weight: 700; color: #0f172a; }
.f-compare-price { font-size: 13px; color: #94a3b8; text-decoration: line-through; }

.f-add-cart-btn { display: block; width: 100%; text-align: center; padding: 10px; border: 1px solid #1B4D3E; color: #1B4D3E; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.f-add-cart-btn:hover { background: #1B4D3E; color: #fff; }

/* Swiper Nav Arrows */
.f-custom-nav { color: #1e293b !important; background: #fff; width: 40px !important; height: 40px !important; border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.f-custom-nav:after { font-size: 16px !important; font-weight: bold; }
.f-custom-nav:hover { background: #1B4D3E; color: #D4AF37 !important; }

/* Empty State */
.f-empty-collection { text-align: center; padding: 50px 20px; background: #f8fafc; border-radius: 12px; color: #64748b; }
.f-empty-collection i { font-size: 40px; color: #cbd5e1; margin-bottom: 15px; }