/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; background: #fafafa; color: #1a1a1a; }

/* ===== HEADER ===== */
.header { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 0.5px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-top { text-align: center; padding: 8px 16px; background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.store-name { font-size: 13px; font-weight: 700; color: white; letter-spacing: 1px; }
.header-content { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.search-bar { flex: 1; position: relative; }
.search-bar input { width: 100%; padding: 10px 16px 10px 38px; border: none; background: rgba(142,142,147,0.12); border-radius: 10px; font-size: 15px; transition: all .3s; }
.search-bar input:focus { outline: none; background: rgba(142,142,147,0.18); }
.search-bar input::placeholder { color: rgba(60,60,67,0.6); }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: rgba(60,60,67,0.6); font-size: 16px; }
.cart-btn { position: relative; background: none; border: none; padding: 8px; cursor: pointer; color: #7c3aed; font-size: 24px; transition: transform .2s; text-decoration: none; display: flex; align-items: center; }
.cart-btn:active { transform: scale(0.9); }
.cart-count { position: absolute; top: 2px; right: 2px; background: #ef4444; color: white; font-size: 10px; font-weight: 700; padding: 2px 5px; border-radius: 10px; min-width: 18px; text-align: center; border: 2px solid rgba(255,255,255,0.95); }

/* ===== CATEGORIES ===== */
.category-section { background: white; padding: 16px 0; margin-bottom: 10px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.category-filters { max-width: 1400px; margin: 0 auto; padding: 0 16px; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.category-filters::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .category-filters { padding: 0 40px; } }
.category-btn { display: inline-block; padding: 8px 20px; margin-right: 10px; border-radius: 50px; border: 2px solid #e5e5e5; background: white; color: #666; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .3s; text-decoration: none; }
.category-btn:hover { border-color: #7c3aed; color: #7c3aed; }
.category-btn.active { background: #7c3aed; border-color: #7c3aed; color: white; }

/* ===== MAIN CONTAINER ===== */
.main-container { max-width: 1400px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 1024px) { .main-container { padding: 0 40px; } }

/* ===== HERO CAROUSEL 3D ===== */
.carousel-wrap { position: relative; margin: 24px auto 48px; height: 220px; perspective: 1000px; overflow: visible; }
@media (min-width: 768px) { .carousel-wrap { height: 280px; } }
.carousel { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.carousel-item { position: absolute; top: 0; width: 60%; height: 100%; border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 1s cubic-bezier(.4,0,.2,1); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-text { position: absolute; inset: 0; background: rgba(26,26,46,0.45); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: white; text-shadow: 0 2px 8px rgba(0,0,0,0.5); padding: 0 1rem; opacity: 0; transition: opacity .8s; }
.carousel-text h1 { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.carousel-text p { font-size: .85rem; color: #c4b5fd; }
.carousel-item.pos-center { left: 50%; transform: translateX(-50%) translateZ(0) scale(1); z-index: 10; box-shadow: 0 16px 48px rgba(124,58,237,0.35); }
.carousel-item.pos-center .carousel-text { opacity: 1; }
.carousel-item.pos-center::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: lightSweep 3s ease-in-out infinite;
  z-index: 15; pointer-events: none;
}
@keyframes lightSweep {
  0%   { left: -80%; opacity: 0; }
  10%  { opacity: 1; }
  60%  { left: 140%; opacity: 1; }
  61%  { opacity: 0; }
  100% { left: 140%; opacity: 0; }
}
.carousel-item.pos-left { left: 2%; transform: translateX(0) translateZ(-120px) scale(0.78) rotateY(12deg); z-index: 5; filter: brightness(0.6); }
.carousel-item.pos-right { right: 2%; left: auto; transform: translateX(0) translateZ(-120px) scale(0.78) rotateY(-12deg); z-index: 5; filter: brightness(0.6); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(124,58,237,0.85); color: white; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 20; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: #7c3aed; }
.carousel-btn.prev { left: 4px; }
.carousel-btn.next { right: 4px; }
.carousel-dots { position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 20; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd6fe; cursor: pointer; transition: background .2s; }
.carousel-dot.active { background: #7c3aed; }

/* ===== STATS ===== */
.stats { display: flex; gap: 10px; padding: 0 0 16px; }
.stat-item { background: white; padding: 10px 16px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; text-align: center; transition: transform .3s; }
.stat-item:hover { transform: translateY(-2px); }
.stat-value { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, #7c3aed, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 2px; }
.stat-label { font-size: 11px; color: #666; font-weight: 500; }

/* ===== SECTION HEADER ===== */
.section-header { padding: 24px 0 16px; }
.section-title { font-size: 22px; font-weight: 800; color: #1a1a1a; letter-spacing: -.5px; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 50px; height: 4px; background: linear-gradient(90deg, #7c3aed, #a78bfa); border-radius: 2px; }
@media (min-width: 768px) { .section-title { font-size: 28px; } }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding-bottom: 100px; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; } }

/* ===== PRODUCT CARD ===== */
.product-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: all .3s; border: 1px solid #f5f5f5; display: flex; flex-direction: column; cursor: pointer; }
.product-card:active { transform: scale(0.98); }
@media (min-width: 768px) { .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); } }
.product-image-container { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.product-badge { position: absolute; top: 8px; right: 8px; background: linear-gradient(135deg, #7c3aed, #a78bfa); color: white; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; z-index: 10; text-transform: uppercase; letter-spacing: .5px; }
.product-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
@media (min-width: 768px) { .product-card:hover .product-image img { transform: scale(1.08); } }
.product-info { padding: 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
@media (min-width: 768px) { .product-info { padding: 16px; gap: 8px; } }
.product-category { font-size: 10px; color: #7c3aed; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.product-title { font-size: 13px; color: #1a1a1a; font-weight: 600; line-height: 1.3; min-height: 34px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-price-container { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.product-price { font-size: 16px; color: #1a1a1a; font-weight: 800; }
.product-stock { font-size: 11px; color: #10b981; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.product-stock.out { color: #ef4444; }
.product-stock i { font-size: 6px; }
.product-actions { display: flex; gap: 8px; margin-top: auto; }
.add-to-cart-btn { flex: 1; padding: 10px; background: linear-gradient(135deg, #7c3aed, #6d28d9); color: white; border: none; border-radius: 10px; font-weight: 700; font-size: 12px; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.add-to-cart-btn:active:not(:disabled) { transform: scale(0.95); }
.add-to-cart-btn:disabled { background: #e5e5e5; color: #999; cursor: not-allowed; }

/* ===== STORIES ===== */
.stories-section { margin: 8px 0 20px; }
.stories-label { font-size: 13px; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; padding: 0 4px; }
.stories-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.stories-scroll::-webkit-scrollbar { display: none; }
.story-card { flex: 0 0 100px; width: 100px; height: 160px; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.12); border: 2.5px solid #7c3aed; transition: transform .2s; }
.story-card:active { transform: scale(0.95); }
.story-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 40%, transparent 70%); }
.story-card-title { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; color: white; font-size: 10px; font-weight: 700; padding: 0 6px; line-height: 1.3; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.story-card-price { position: absolute; top: 8px; right: 6px; background: #7c3aed; color: white; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 8px; }

/* ===== SPINNER ===== */
.spinner-lg { width: 48px; height: 48px; border: 4px solid #ede9fe; border-top-color: #7c3aed; border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 60px 20px; grid-column: 1/-1; }
.empty-state-icon { font-size: 48px; margin-bottom: 12px; opacity: .3; color: #7c3aed; }
.empty-state-text { font-size: 16px; color: #666; font-weight: 500; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 80px; right: 20px; width: 40px; height: 40px; background: linear-gradient(135deg, #7c3aed, #6d28d9); color: white; border: none; border-radius: 50%; font-size: 16px; cursor: pointer; box-shadow: 0 8px 24px rgba(124,58,237,0.4); display: flex; align-items: center; justify-content: center; transition: all .3s; z-index: 50; opacity: 0; visibility: hidden; transform: scale(0.8); }
.scroll-top.visible { opacity: .8; visibility: visible; transform: scale(1); }
@media (max-width: 768px) { .scroll-top { right: 16px; bottom: 80px; } }

/* ===== BOTTOM SHEET ===== */
.bs-overlay, .bottom-sheet-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; animation: fadeIn .3s; }
.bs-overlay.active, .bottom-sheet-overlay.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.bottom-sheet { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-radius: 24px 24px 0 0; z-index: 2001; transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1); max-height: 90vh; overflow-y: auto; box-shadow: 0 -8px 32px rgba(0,0,0,0.2); }
.bottom-sheet.active { transform: translateY(0); }
.bottom-sheet-handle { width: 40px; height: 4px; background: #e5e5e5; border-radius: 2px; margin: 12px auto 0; }
.bottom-sheet-header { padding: 16px 20px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: white; z-index: 10; }
.bottom-sheet-title { font-size: 18px; font-weight: 800; color: #1a1a1a; }
.bottom-sheet-close { width: 32px; height: 32px; border-radius: 50%; background: #f5f5f5; border: none; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; color: #666; text-decoration: none; }
.bottom-sheet-close:active { background: #e5e5e5; transform: scale(0.9); }
.bottom-sheet-content { padding: 20px; }

/* ===== CART ===== */
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: .3; color: #7c3aed; }
.cart-empty-text { font-size: 16px; color: #999; margin-bottom: 20px; }
.cart-item { display: flex; gap: 12px; padding: 12px; background: #fafafa; border-radius: 14px; margin-bottom: 10px; }
.cart-item-image { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; background: white; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item-title { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.3; }
.cart-item-price { font-size: 15px; font-weight: 700; color: #7c3aed; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.quantity-control { display: flex; align-items: center; gap: 8px; background: white; border-radius: 8px; padding: 4px; }
.quantity-btn { width: 26px; height: 26px; border-radius: 6px; border: none; background: #7c3aed; color: white; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.quantity-btn:active { transform: scale(0.9); background: #6d28d9; }
.quantity-value { min-width: 28px; text-align: center; font-weight: 700; font-size: 13px; }
.cart-item-remove { background: #fee; color: #ef4444; border: none; padding: 6px 10px; border-radius: 6px; font-size: 12px; cursor: pointer; }
.cart-summary { margin-top: 20px; padding: 16px; background: linear-gradient(135deg, #f8f9fa, #e9ecef); border-radius: 14px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; }
.cart-summary-row.total { font-size: 18px; font-weight: 800; color: #1a1a1a; padding-top: 10px; border-top: 2px solid #e5e5e5; margin-top: 10px; }
.cart-summary-row.total .price { color: #7c3aed; }
.cart-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ===== BUTTONS ===== */
.btn-primary { width: 100%; padding: 14px; background: linear-gradient(135deg, #7c3aed, #6d28d9); color: white; border: none; border-radius: 12px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.btn-primary:active { transform: scale(0.98); }
.btn-secondary { width: 100%; padding: 12px; background: white; color: #666; border: 2px solid #e5e5e5; border-radius: 12px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.btn-secondary:active { border-color: #7c3aed; color: #7c3aed; transform: scale(0.98); }

/* ===== FORM ===== */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; }
.form-label.optional::after { content: ' (optionnel)'; font-weight: 400; color: #999; }
.form-input { width: 100%; padding: 12px 14px; border: 2px solid #e5e5e5; border-radius: 10px; font-size: 14px; transition: all .3s; background: #fafafa; }
.form-input:focus { outline: none; border-color: #7c3aed; background: white; }
.form-input::placeholder { color: #999; }
.form-checkbox { display: flex; align-items: center; gap: 10px; padding: 14px; background: #fafafa; border-radius: 10px; cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; accent-color: #7c3aed; }
.form-checkbox-label { font-size: 13px; font-weight: 600; color: #1a1a1a; cursor: pointer; }
.address-fields { margin-top: 12px; padding: 14px; background: #f8f9fa; border-radius: 10px; border: 2px dashed #e5e5e5; display: none; }
.address-fields.active { display: block; animation: slideDown .3s; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== PRODUCT DETAIL ===== */
.product-detail-image { width: 100%; height: 280px; border-radius: 16px; overflow: hidden; background: #f8f9fa; margin-bottom: 20px; }
.product-detail-image img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-info { display: flex; flex-direction: column; gap: 12px; }
.product-detail-category { font-size: 12px; color: #7c3aed; font-weight: 700; text-transform: uppercase; }
.product-detail-title { font-size: 20px; font-weight: 800; color: #1a1a1a; line-height: 1.3; }
.product-detail-description { font-size: 14px; color: #666; line-height: 1.6; }
.product-detail-price-container { display: flex; align-items: center; gap: 12px; }
.product-detail-price { font-size: 28px; font-weight: 800; color: #7c3aed; }
.product-detail-stock { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: #f0fdf4; color: #10b981; border-radius: 20px; font-size: 13px; font-weight: 600; }
.product-detail-stock.out { background: #fef2f2; color: #ef4444; }
.product-detail-actions { margin-top: 8px; }

/* ===== DIALOG ===== */
.dialog-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px; }
.dialog-overlay.active { display: flex; }
.dialog { background: white; border-radius: 20px; padding: 32px 24px 24px; width: 100%; max-width: 360px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: popIn .3s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
.dialog-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #ede9fe, #ddd6fe); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.dialog-icon i { font-size: 28px; color: #7c3aed; }
.dialog-title { font-size: 18px; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; }
.dialog-body { font-size: 14px; color: #555; line-height: 1.6; white-space: pre-line; margin-bottom: 8px; }
.dialog-total { font-size: 22px; font-weight: 900; color: #7c3aed; margin-bottom: 24px; }
.dialog-actions { display: flex; flex-direction: column; gap: 10px; }

/* ===== SUCCÈS ===== */
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #d1fae5, #a7f3d0); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; animation: popIn .4s cubic-bezier(.34,1.56,.64,1); }
.success-icon i { font-size: 40px; color: #10b981; }
.success-title { font-size: 24px; font-weight: 900; color: #1a1a1a; margin-bottom: 6px; }
.success-subtitle { font-size: 16px; color: #666; margin-bottom: 24px; }
.success-card { background: #f8f9fa; border-radius: 14px; padding: 16px; margin-bottom: 16px; text-align: left; }
.success-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; color: #555; }
.success-row:last-child { border-bottom: none; }
.success-row strong { color: #1a1a1a; }
.success-note { font-size: 13px; color: #888; line-height: 1.5; background: #fffbeb; border-radius: 10px; padding: 12px; display: flex; align-items: flex-start; gap: 8px; }
.success-note i { color: #f59e0b; margin-top: 2px; flex-shrink: 0; }

/* ===== ALERT / FLASH ===== */
.alert { padding: 14px 16px; border-radius: 12px; margin: 12px 0; font-size: 14px; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error { background: #fef2f2; color: #991b1b; border-left: 4px solid #ef4444; }
.flash-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; border-left: 4px solid #ef4444; border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }

/* ===== FOOTER ===== */
footer { background: linear-gradient(135deg, #1a1a2e, #16213e); color: white; overflow: hidden; margin-top: 20px; }
.footer-content { padding: 50px 40px 30px; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { .footer-content { grid-template-columns: 1fr; gap: 30px; padding: 40px 20px 20px; } }
.footer-section h3 { color: #a78bfa; margin-bottom: 16px; font-size: 16px; font-weight: 700; }
.company-info p { color: #b8c5d6; line-height: 1.8; font-size: 14px; }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: #b8c5d6; font-size: 14px; }
.contact-item i { color: #a78bfa; width: 18px; }
.contact-item a { color: #b8c5d6; text-decoration: none; transition: color .3s; }
.contact-item a:hover { color: #a78bfa; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 16px 40px; text-align: center; color: #b8c5d6; font-size: 13px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #25D366; color: white; padding: 12px 24px; border-radius: 50px; text-decoration: none; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all .3s; z-index: 1000; font-size: 14px; font-weight: 600; white-space: nowrap; }
.whatsapp-float:hover { background: #20ba5a; transform: translateX(-50%) translateY(-3px); }
.whatsapp-float i { font-size: 20px; }
@media (max-width: 768px) { .whatsapp-float { padding: 10px 18px; font-size: 13px; bottom: 15px; left: 50%; transform: translateX(-50%); } }

/* ===== CALL FLOAT ===== */
.call-float { position: fixed; bottom: 20px; left: 20px; background: #6366F1; color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 16px rgba(99,102,241,0.4); z-index: 1001; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.call-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(99,102,241,0.55); }