:root {
  --brand: #5B21B6; 
  --brand-2: #7C3AED; 
  --brand-light: #EDE7FF; 
  --accent: #22C55E; 
  --text: #0F172A; 
  --muted: #64748B; 
  --bg: #f8fafc; 
  --card: #ffffff;
  --ok: #16a34a; 
  --warn: #f59e0b; 
  --danger: #dc2626;
  --radius: 12px; 
  --shadow: 0 5px 15px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
  --header-bg-overlay: rgba(6,3,20,0.45);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: "Cairo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.5; font-weight: 400; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
.container { max-width: 1100px; margin-inline: auto; padding: 10px; }
header { position: sticky; top: 0; background: var(--header-bg-overlay); backdrop-filter: blur(10px); z-index: 50; box-shadow: var(--shadow); background-image: linear-gradient(var(--header-bg-overlay), var(--header-bg-overlay)), url('https://raw.githubusercontent.com/Axis-auto/uv/refs/heads/main/hero.webp'); background-size: cover; background-position: center; background-attachment: fixed; }
header .inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 0; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 18px; color: white; flex-direction: row; }
.logo img { height: 40px; width: auto; object-fit: contain; }
.logo span { font-size: 18px; font-weight: 800; color: white; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 8px; border: 1px solid transparent; background: var(--brand); color: #fff; font-weight: 700; transition: var(--transition); cursor: pointer; box-shadow: var(--shadow); will-change: transform, box-shadow; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,.2); }
.btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,0.3); }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); box-shadow: none; }
.btn.ghost:hover { background: rgba(255,255,255,0.1); }
.modern-btn { background: linear-gradient(135deg,var(--brand),var(--brand-2)); box-shadow: 0 4px 6px rgba(37,99,235,0.2); }
.modern-btn:hover { background: linear-gradient(135deg,var(--brand-2),var(--brand)); box-shadow: 0 6px 10px rgba(37,99,235,0.3); }
.btn.primary { font-size: 18px; padding: 12px 24px; border-radius: 12px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 4px 8px rgba(91,33,182,0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(91,33,182,0.3); }
.hero { padding: 24px 0 16px; background-image: linear-gradient(var(--header-bg-overlay), var(--header-bg-overlay)), url('https://raw.githubusercontent.com/Axis-auto/uv/refs/heads/main/hero.webp'); background-size: cover; background-position: center; background-attachment: fixed; position: relative; min-height: 100vh; display: flex; align-items: center; color: white; }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.hero h1 { font-size: clamp(32px,5vw,48px); line-height: 1.2; margin: 8px 0 12px; color: white; font-weight: 700; text-shadow: 0 6px 20px rgba(0,0,0,0.45); }
.hero .lead { color: #e2e8f0; font-size: clamp(16px,2vw,18px); text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.badge { font-size: 12px; border: 1px solid rgba(255,255,255,0.3); padding: 6px 10px; border-radius: 8px; background: rgba(34,197,94,0.2); box-shadow: 0 1px 3px rgba(0,0,0,0.05); color: #22c55e; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.card { background: var(--card); border: 1px solid #e2e8f0; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: var(--transition); will-change: transform, box-shadow; }
.product-card { display: grid; gap: 12px; background: var(--brand-light); }
.product-img-container, .sub-image-container { width: 100%; height: auto; display: flex; justify-content: center; align-items: center; overflow: hidden; margin: 0; padding: 0; background: #f8f8f8; aspect-ratio: 4/3; }
.product-img-container img, .sub-image-container img { width: 100%; height: auto; object-fit: contain; transition: transform 0.3s ease; }
.product-img-container img { max-height: 400px; object-fit: cover; object-position: center; }
.sub-image-container img { max-height: 150px; object-fit: cover; object-position: center; }
.image-container { position: relative; width: 100%; overflow: hidden; cursor: pointer; }
.image-container:hover img { transform: scale(1.05); }
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.grid.cols-4 { grid-template-columns: repeat(4,1fr); }
section { padding: 24px 0; animation: fadeIn 0.5s ease-in; }
h2 { font-size: clamp(24px,2.8vw,28px); margin: 0 0 12px; font-weight: 700; }
h3 { font-size: clamp(18px,2.2vw,22px); margin: 0 0 8px; font-weight: 700; }
.muted { color: var(--muted); }
.features .feat, .steps .step { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 10px; border: 1px solid #e2e8f0; background: #fff; transition: transform 0.2s; will-change: transform; }
.features .feat:hover, .steps .step:hover { transform: translateY(-3px); }
.icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg,var(--brand),var(--brand-2)); display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.step .num { width: 24px; height: 24px; border-radius: 6px; background: #dbeafe; color: #2563eb; display: grid; place-items: center; font-weight: 800; }
.table { width: 100%; border-collapse: separate; border-spacing: 0 4px; }
.table tr { background: #fff; border: 1px solid #e2e8f0; }
.table td, .table th { padding: 8px 10px; }
.table th { background: #f1f5f9; text-align: right; }
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.kpi { background: #fff; border: 1px solid #e2e8f0; padding: 12px; border-radius: 12px; text-align: center; box-shadow: var(--shadow); }
.kpi .big { font-size: 20px; font-weight: 900; color: var(--brand); }
.faq details { background: #fff; border: 1px solid #e2e8f0; padding: 10px; border-radius: 10px; margin-bottom: 6px; }
.faq summary { font-weight: 700; cursor: pointer; }
.price { font-size: 24px; font-weight: 900; color: var(--brand); }
.pricing-options { display: flex; gap: 12px; margin: 12px 0; }
.pricing-card { flex: 1; border: 2px solid #e2e8f0; border-radius: var(--radius); padding: 14px; text-align: center; transition: var(--transition); will-change: transform, border-color; }
.pricing-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--brand); background: var(--brand-light); position: relative; }
.pricing-card.featured::before { content: attr(data-bestseller); position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--brand); color: white; padding: 3px 10px; border-radius: 16px; font-size: 11px; font-weight: bold; }
.pricing-card h3 { margin-top: 0; }
.pricing-card .price { font-size: 28px; margin: 10px 0; }
.pricing-card ul { list-style: none; padding: 0; margin: 12px 0; text-align: right; padding-right: 16px; }
.pricing-card li { padding: 4px 0; border-bottom: 1px solid #f1f5f9; }
.pricing-card img { max-width: 100%; height: auto; max-height: 150px; object-fit: contain; margin-bottom: 10px; border-radius: 8px; }
.form { display: grid; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 10px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 16px; transition: border-color 0.3s; color: var(--text); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-note { font-size: 14px; color: var(--muted); margin-top: 4px; }
footer { padding: 24px 0; border-top: 1px solid #e2e8f0; margin-top: 20px; background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://raw.githubusercontent.com/Axis-auto/uv/refs/heads/main/hero.webp'); background-size: cover; background-position: center; background-attachment: fixed; color: white; }
.floating-cta { position: fixed; left: 12px; bottom: 12px; z-index: 60; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.gradient-bg { background: linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%); }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.feature-icon { background: linear-gradient(135deg,var(--brand),var(--brand-2)); box-shadow: 0 2px 4px rgba(37,99,235,0.2); }
.car-theme-border { border-left: 4px solid var(--brand); }
.warnings { background: #fef3c7; border: 1px solid #fde68a; border-radius: var(--radius); padding: 12px; margin: 12px 0; }
.warnings h4 { margin-top: 0; color: #92400e; font-weight: 700; }
.warnings ul { margin: 6px 0; padding-left: 16px; }
.warnings li { margin-bottom: 4px; }
.payment-methods { display: flex; gap: 12px; margin: 12px 0; }
.payment-method { flex: 1; border: 2px solid #e2e8f0; border-radius: var(--radius); padding: 14px; text-align: center; cursor: pointer; transition: var(--transition); will-change: border-color, background-color; }
.payment-method:hover, .payment-method.selected { border-color: var(--brand); background-color: var(--brand-light); }
.payment-method .payment-icon { font-size: 32px; margin-bottom: 8px; }
.payment-details { display: none; margin-top: 12px; padding: 12px; border: 1px solid #e2e8f0; border-radius: var(--radius); background-color: #f8fafc; }
.payment-details.active { display: block; }
.payment-method.coming-soon { position: relative; }
.payment-method.coming-soon::before { content: attr(data-coming-soon); position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--warn); color: white; padding: 3px 10px; border-radius: 16px; font-size: 11px; font-weight: bold; }
.file-upload { display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.file-upload label { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; background: #f8fafc; border: 1px dashed #93c5fd; border-radius: 8px; cursor: pointer; transition: var(--transition); }
.file-upload label:hover { background: #e0f2fe; }
.file-name { font-size: 14px; color: var(--muted); margin-top: 4px; }
.alert { padding: 10px; border-radius: 8px; margin: 8px 0; display: none; aria-live: "polite"; }
.alert-success { background-color: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background-color: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.image-preview { display: none; margin-top: 8px; text-align: center; }
.image-preview img { max-width: 100%; max-height: 180px; border-radius: 8px; border: 1px solid #e2e8f0; object-fit: contain; }
.loader { display: none; width: 20px; height: 20px; border: 3px solid #f3f3f3; border-top: 3px solid var(--brand); border-radius: 50%; animation: spin 1s linear infinite; margin-left: 8px; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.upload-status { display: flex; align-items: center; margin-top: 4px; }
.modal { display: none; position: fixed; z-index: 100; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.modal-content { display: block; margin: auto; max-width: 90%; max-height: 80%; margin-top: 5%; object-fit: contain; }
.close-modal { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; transition: var(--transition); }
.close-modal:hover { color: #bbb; }
.shipping-timeline { display: flex; justify-content: space-between; position: relative; margin: 16px 0; }
.shipping-timeline::before { content: ''; position: absolute; top: 12px; left: 0; right: 0; height: 2px; background: #e2e8f0; }
.timeline-step { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; flex: 1; }
.timeline-step .dot { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; margin-bottom: 6px; }
.timeline-step p { text-align: center; margin: 0; font-size: 12px; }
.privacy-policy { max-height: 300px; overflow-y: auto; padding: 12px; border: 1px solid #e2e8f0; border-radius: var(--radius); background-color: #f8fafc; margin: 12px 0; }
.privacy-policy h4 { margin-top: 0; color: var(--brand); font-weight: 700; }
.privacy-policy p { font-size: 14px; line-height: 1.6; }
.privacy-checkbox { display: flex; align-items: flex-start; gap: 8px; margin: 12px 0; }
.privacy-checkbox input { margin-top: 4px; }
.privacy-checkbox label { font-weight: normal; margin-bottom: 0; }
.privacy-link { color: var(--brand); text-decoration: underline; cursor: pointer; }
.lang-switcher { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.2); padding: 6px 12px; border-radius: 20px; cursor: pointer; transition: var(--transition); color: white; }
.lang-switcher:hover { background: rgba(255,255,255,0.3); }
.lang-switcher a { padding: 4px 8px; border-radius: 16px; transition: var(--transition); }
.lang-switcher a.active { background: white; color: var(--brand); cursor: default; }
.lang-switcher a:hover:not(.active) { background: rgba(255,255,255,0.2); }
.guarantee-badge { display: flex; align-items: center; gap: 6px; margin: 12px 0; padding: 8px 12px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; color: #166534; }
.contact-info { display: flex; flex-direction: column; gap: 6px; }
.contact-item { display: flex; align-items: center; gap: 6px; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact h3 { margin-bottom: 12px; color: white; font-weight: 700; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.footer-contact-item i { color: white; width: 20px; }
.social-links { display: flex; gap: 12px; margin-top: 10px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); color: white; transition: var(--transition); }
.social-link:hover { background: white; color: var(--brand); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); flex-wrap: wrap; gap: 12px; color: white; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-links a:hover { color: white; }
.whatsapp-contact { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding: 10px; background: rgba(255,255,255,0.1); border-radius: 8px; }
.whatsapp-contact a { display: flex; align-items: center; gap: 8px; color: white; font-weight: 600; }
.numbers-fix { unicode-bidi: plaintext; direction: ltr; display: inline-block; }
[dir="ltr"] { text-align: left; direction: ltr; }
[dir="ltr"] .table th { text-align: left; }
[dir="ltr"] .pricing-card ul { text-align: left; padding-left: 16px; padding-right: 0; }
[dir="ltr"] .warnings ul { padding-right: 0; padding-left: 16px; }
[dir="ltr"] .features .feat, [dir="ltr"] .steps .step { flex-direction: row; }
[dir="ltr"] .car-theme-border { border-left: none; border-right: 4px solid var(--brand); }
[dir="ltr"] .footer-contact-item { direction: ltr; }
header .inner { align-items: center; gap: 12px; padding: 8px 0; }
header .logo { flex: 0 0 auto; min-width: 100px; }
header nav { flex: 1 1 auto; min-width: 0; display: flex; justify-content: flex-end; align-items: center; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 0; }
header nav::-webkit-scrollbar { display: none; }
header nav a { flex: 0 0 auto; white-space: nowrap; font-size: 14px; padding: 6px 10px; }
.cart-icon { position: relative; cursor: pointer; color: white; display: flex; align-items: center; justify-content: center; min-width: 30px; }
.cart-icon .fa-shopping-cart { font-size: 18px; }
.cart-count { position: absolute; top: -8px; right: -8px; background: red; color: white; border-radius: 50%; padding: 2px 6px; font-size: 10px; min-width: 16px; height: 16px; text-align: center; display: flex; align-items: center; justify-content: center; }
.menu-icon { display: none; font-size: 24px; color: white; cursor: pointer; }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; background: rgba(0,0,0,0.8); width: 200px; padding: 10px; border-radius: 0 0 8px 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.3); z-index: 100; border: 1px solid rgba(255,255,255,0.2); }
.mobile-menu a { display: block; padding: 10px; color: white; text-decoration: none; font-size: 16px; transition: var(--transition); }
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }
@media (max-width:920px) { .hero .wrap { grid-template-columns: 1fr; } .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr 1fr; } .footer-content { grid-template-columns: 1fr; } }
@media (max-width:768px) {
  .logo { font-size: 16px; } .logo img { height: 35px; } .logo span { font-size: 14px; }
  .menu-icon { display: block; }
  header nav .nav-links { display: none; }
  header .inner { justify-content: space-between; padding: 6px 8px; gap: 8px; }
  header nav { display: flex; align-items: center; gap: 6px; flex: 1; justify-content: flex-end; flex-wrap: nowrap; overflow-x: auto; padding: 0 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
  header nav::-webkit-scrollbar { display: none; }
  .btn.ghost { padding: 6px 10px; font-size: 12px; white-space: nowrap; }
  .hero h1, .hero .lead { text-align: center; }
  .badges, .cta-row { justify-content: center; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2,1fr); }
  .pricing-options, .shipping-timeline, .payment-methods { flex-direction: column; }
  .shipping-timeline::before { display: none; }
  .features .feat, .steps .step { flex-direction: column; text-align: center; }
  .icon, .step .num { margin: 0 auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .lang-switcher { padding: 4px 8px; font-size: 12px; gap: 4px; min-width: 50px; }
  .cart-icon .fa-shopping-cart { font-size: 16px; }
  .cart-count { font-size: 10px; min-width: 16px; padding: 1px 4px; top: -6px; right: -6px; height: 14px; }
  .sub-image-container { padding: 0; }
  .sub-images-grid { display: none; }
}
@media (max-width:640px) {
  .container { padding: 8px; }
  header .inner { padding: 6px 0; gap: 6px; }
  .logo { font-size: 16px; gap: 6px; min-width: 80px; } .logo img { height: 35px; } .logo span { font-size: 14px; }
  .btn { padding: 8px 14px; font-size: 14px; white-space: nowrap; }
  .btn.ghost { padding: 4px 8px; font-size: 12px; }
  .hero { padding: 12px 0; min-height: 80vh; }
  .hero h1 { font-size: 22px; }
  .hero .lead { font-size: 14px; }
  .badge { font-size: 10px; padding: 3px 6px; }
  .card { padding: 12px; }
  .table { font-size: 14px; }
  .table td, .table th { padding: 6px 8px; }
  .kpi { padding: 8px; }
  .kpi .big { font-size: 18px; }
  .pricing-card { padding: 10px; }
  .pricing-card .price { font-size: 24px; }
  .form-input, .form-select { padding: 10px; font-size: 14px; }
  .lang-switcher { padding: 4px 8px; font-size: 11px; min-width: 50px; }
  .floating-cta { padding: 8px 14px; font-size: 14px; }
  header nav a { font-size: 12px; padding: 5px 8px; }
  .cart-icon .fa-shopping-cart { font-size: 15px; }
  .cart-count { font-size: 9px; min-width: 14px; padding: 0px 3px; top: -5px; right: -5px; height: 12px; }
  .sub-image-container { padding: 0; }
}
@media (max-width:480px) {
  .logo { font-size: 14px; min-width: 70px; }
  .logo img { height: 25px; }
  .logo span { font-size: 12px; }
  .btn { padding: 6px 12px; font-size: 12px; }
  .hero h1 { font-size: 20px; }
  .badge { font-size: 9px; }
  .kpis { grid-template-columns: 1fr; }
  header .inner { gap: 4px; padding: 4px 6px; }
  nav { gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
  nav::-webkit-scrollbar { display: none; }
  .btn.ghost { padding: 4px 8px; font-size: 10px; }
  .lang-switcher { padding: 3px 6px; font-size: 10px; gap: 2px; min-width: 40px; }
  .cart-icon .fa-shopping-cart { font-size: 14px; }
  .cart-count { font-size: 8px; min-width: 12px; padding: 0px 2px; top: -4px; right: -4px; height: 10px; }
  header nav a { font-size: 10px; padding: 4px 6px; }
  .sub-image-container { padding: 0; }
}
.cart-modal { display: none; position: fixed; z-index: 100; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.4); }
.cart-content { background-color: #fefefe; margin: 15% auto; padding: 20px; border: 1px solid #888; width: 80%; max-width: 600px; border-radius: 8px; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #e2e8f0; }
.quantity-controls { display: flex; align-items: center; gap: 10px; }
.quantity-controls button { padding: 5px 10px; background: var(--brand); color: white; border: none; cursor: pointer; transition: var(--transition); border-radius: 4px; }
.quantity-controls button:hover { background: var(--brand-2); }
.cart-total { margin-top: 20px; font-weight: bold; text-align: right; }
.checkout-btn { display: block; width: 100%; margin-top: 20px; }
.cart-summary { background: #fff; border: 1px solid #e2e8f0; padding: 12px; border-radius: 12px; margin-bottom: 16px; }
.cart-summary-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid #e2e8f0; }
.cart-summary-item img { width: 80px; height: auto; object-fit: contain; border-radius: 8px; }
.cart-summary-details { flex: 1; }
.cart-summary-subtotal, .cart-summary-shipping, .cart-summary-grandtotal { display: flex; justify-content: space-between; padding: 4px 0; }
.cart-summary-grandtotal { font-weight: bold; border-top: 1px solid #e2e8f0; margin-top: 8px; padding-top: 8px; }
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: var(--brand); color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 100; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-icon { margin-top: 16px; }
@media screen and (max-width: 480px) { .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; } .whatsapp-icon { margin-top: 13px; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
/* Cookie banner */
#cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #f1f5f9; color: var(--text); padding: 16px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000; display: none; align-items: center; justify-content: space-between; font-size: 14px; }
#cookie-banner p { margin: 0; flex: 1; }
#cookie-banner .cookie-buttons { display: flex; gap: 12px; }
#cookie-banner button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; transition: var(--transition); }
#cookie-accept { background-color: var(--brand); color: white; }
#cookie-accept:hover { background-color: var(--brand-2); }
#cookie-decline { background-color: transparent; color: var(--muted); border: 1px solid var(--muted); }
#cookie-decline:hover { background-color: #e2e8f0; }
#cookie-banner a { color: var(--brand); text-decoration: underline; }
