/* Carib'Outillage — sombre tropical ROUGE / JAUNE / VERT */
:root {
  --red: #ff2a2a;
  --red-dark: #b50e0e;
  --hibiscus: #ff3b3b;
  --black: #070a08;
  --ink: #f2f5f0;
  --muted: #a8b5a4;
  --sand: #1a2218;
  --cream: #101610;
  --sea: #1f8f4a;
  --sea-deep: #0d5c2e;
  --sea-light: #2ecf6a;
  --turquoise: #3dff8a;
  --palm: #22c55e;
  --palm-deep: #15803d;
  --gold: #ffd400;
  --sunset: #ffb000;
  --mango: #ffe566;
  --line: #2a3a2c;
  --card: #141c15;
  --card-2: #1a241c;
  --shadow: 0 14px 40px rgba(0, 0, 0, .55);
  --radius: 16px;
  --max: 1180px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Ubuntu, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 8% -5%, rgba(255, 42, 42, .22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 212, 0, .14), transparent 48%),
    radial-gradient(ellipse 55% 40% at 50% 110%, rgba(34, 197, 94, .16), transparent 50%),
    linear-gradient(180deg, #0a0f0b 0%, #0d140f 40%, #0a120c 100%);
  min-height: 100vh;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .11;
  background: repeating-linear-gradient(
    -32deg,
    #ff2a2a 0 12px,
    #ffd400 12px 24px,
    #22c55e 24px 36px,
    transparent 36px 84px
  );
}
body > * { position: relative; z-index: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--red); }
button, input, select, textarea { font: inherit; color: inherit; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }


/* Top bars */
.ship-bar {
  background: linear-gradient(90deg, #0f7a32 0%, #c91010 45%, #d4a000 100%);
  color: #fff;
  text-align: center;
  font-size: .95rem;
  font-weight: 800;
  padding: .65rem 1rem;
  letter-spacing: .03em;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.fastauto-ticker {
  background: linear-gradient(90deg, #1a0808, #0d3d1f 50%, #1a0808);
  color: #f0fff4;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
  position: relative;
}
.fastauto-ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 40px, rgba(245,197,24,.08) 40px 80px);
  pointer-events: none;
}
.fastauto-ticker__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  padding: .65rem 0;
  white-space: nowrap;
  font-weight: 600;
  font-size: .95rem;
}
.fastauto-ticker__track span { display: inline-flex; align-items: center; gap: .45rem; }
.fastauto-ticker__track strong { color: var(--gold); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  background: rgba(10, 16, 12, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: inherit;
}
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  color: #fff;
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 900;
}
.brand-text small { color: var(--gold); font-size: .82rem; font-weight: 700; }

.nav {
  display: flex;
  gap: .35rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.nav a {
  color: #d7e0d6;
  font-weight: 600;
  font-size: .95rem;
  padding: .35rem .2rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: .55rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 0;
  border-radius: 999px;
  padding: .65rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--hibiscus), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(225, 29, 72, .35);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; }
.btn-sea {
  background: linear-gradient(135deg, #1db954, #0d5c2e);
  color: #fff;
}
.btn-sea:hover { filter: brightness(1.08); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover { border-color: var(--red); color: var(--gold); background: rgba(255,212,0,.08); }
.btn-wa {
  background: linear-gradient(135deg, #25d366, #0f8a3c);
  color: #041a0c;
}
.btn-wa:hover { filter: brightness(1.08); color: #fff; }
.btn-sm { padding: .45rem .85rem; font-size: .88rem; }
.cart-btn {
  position: relative;
  background: linear-gradient(135deg, #1a0a0a, #0d3d1f);
  color: #fff;
  border: 1px solid rgba(255,212,0,.35);
  border-radius: 999px;
  padding: .55rem .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 42, 42, .25);
}
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  min-width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  background: var(--black);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: .55rem .75rem;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 2.2rem;
  background:
    radial-gradient(ellipse at 12% 15%, rgba(255, 212, 0, .22), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(255, 42, 42, .28), transparent 40%),
    radial-gradient(ellipse at 70% 95%, rgba(34, 197, 94, .18), transparent 45%),
    linear-gradient(145deg, #0c120e 0%, #1a0c0c 40%, #0c1a12 100%);
  border-bottom: 4px solid var(--gold);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  background: linear-gradient(90deg, rgba(34,197,94,.2), rgba(255,42,42,.15));
  color: var(--gold);
  font-weight: 800;
  font-size: .82rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid rgba(255,212,0,.35);
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.12;
  margin: .85rem 0 .6rem;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ff2a2a, #ffd400, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { color: var(--muted); font-size: 1.08rem; max-width: 36rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 1.6rem;
}
.stat {
  background: rgba(20, 28, 21, .9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.stat strong {
  display: block;
  font-size: 1.15rem;
  background: linear-gradient(90deg, #ff2a2a, #ffd400);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { font-size: .8rem; color: var(--muted); }

.hero-card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 212, 0, .35);
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #1a1a1a;
}
.hero-card-body { padding: 1rem 1.1rem 1.2rem; }
.hero-card-body h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: .2rem;
  font-weight: 800;
  color: var(--gold);
  font-size: 1.35rem;
  text-shadow: 0 0 20px rgba(255,42,42,.25);
}
.price-tag small { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* Sections */
.section { padding: 2.5rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}
.section-head p { margin: .25rem 0 0; color: var(--muted); }
.section-head h2 { color: #fff; }
.page-hero h1 { color: #fff; }

.cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .7rem;
}
.cat-chip {
  background: linear-gradient(180deg, #1a241c, #221810);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .85rem .6rem;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  transition: .15s ease;
}
.cat-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow);
  background: #1f2a20;
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.product-card__media {
  position: relative;
  background: linear-gradient(180deg, #1a2218, #121812);
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .6rem;
}
.badge {
  position: absolute;
  top: .6rem; left: .6rem;
  background: linear-gradient(135deg, #ff2a2a, #b50e0e);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .25rem .5rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.badge-free {
  background: var(--palm);
}
.product-card__body {
  padding: .9rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}
.product-card__cat {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--sea);
  font-weight: 800;
}
.product-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  flex: 1;
}
.product-card h3 a { color: inherit; }
.product-card h3 a:hover { color: var(--red); }
.product-card__desc {
  color: var(--muted);
  font-size: .86rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: .45rem;
}
.product-card__actions { display: flex; gap: .35rem; flex-wrap: wrap; }

/* Partner / Fastauto */
.partner-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  background:
    linear-gradient(135deg, rgba(255,212,0,.18), transparent 40%),
    linear-gradient(135deg, #1a0808 0%, #0d3d1f 45%, #3a0a0a 100%);
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}
.partner-copy { padding: 1.6rem 1.5rem; }
.partner-copy h2 { margin: 0 0 .5rem; font-size: 1.5rem; }
.partner-copy p { opacity: .92; }
.partner-copy .addr {
  margin-top: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: .85rem 1rem;
  font-weight: 600;
}
.partner-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  padding: .6rem;
}
.partner-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(0,0,0,.2);
}

/* Trust */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.trust-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}
.trust-item .ico { font-size: 1.5rem; }
.trust-item strong { display: block; margin: .35rem 0 .15rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }

/* Product detail */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: start;
}
.gallery-main {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.thumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .7rem;
}
.thumbs button {
  border: 2px solid var(--line);
  background: var(--card-2);
  border-radius: 10px;
  padding: 0;
  width: 68px;
  height: 68px;
  overflow: hidden;
  cursor: pointer;
}
.thumbs button.active, .thumbs button:hover { border-color: var(--red); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pdp-info h1 { margin: 0 0 .5rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.pdp-meta { color: var(--muted); margin-bottom: .8rem; }
.pdp-price { font-size: 2rem; font-weight: 800; color: var(--gold); margin: .4rem 0 1rem; }
.pdp-long { white-space: pre-line; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; }
.qty-row { display: flex; align-items: center; gap: .6rem; margin: 1rem 0; }
.qty-row input {
  width: 4rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .5rem;
  background: var(--card-2);
  color: #fff;
}

/* Filters */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.2rem;
  align-items: center;
}
.toolbar input, .toolbar select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .6rem .8rem;
  background: var(--card);
  color: #fff;
  min-width: 160px;
}
.toolbar input { flex: 1; min-width: 200px; }

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 80;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #101610;
  color: #f2f5f0;
  z-index: 90;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,.55);
  border-left: 2px solid var(--gold);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer header h2 { margin: 0; font-size: 1.15rem; }
.cart-body { flex: 1; overflow: auto; padding: 1rem; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: .7rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: #1a241c;
  border-radius: 8px;
}
.cart-item h4 { margin: 0 0 .2rem; font-size: .92rem; }
.cart-item .rm {
  background: none; border: 0; color: var(--red);
  cursor: pointer; font-size: .8rem; font-weight: 700;
}
.cart-footer {
  border-top: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: .55rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
}
.empty-cart { color: var(--muted); text-align: center; padding: 2rem .5rem; }

/* Contact / legal */
.page-hero {
  padding: 1.8rem 0 1rem;
}
.page-hero h1 { margin: 0 0 .35rem; }
.page-hero p { margin: 0; color: var(--muted); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.contact-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .7rem;
  background: #1a241c;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.ig-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.ig-box img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.legal h2 { margin-top: 1.4rem; font-size: 1.15rem; }
.legal p, .legal li { color: var(--muted); }

/* Footer */
.site-footer {
  margin-top: 2.5rem;
  background: linear-gradient(180deg, #050805 0%, #1a0808 50%, #07140c 100%);
  color: #ddd;
  padding: 2.2rem 0 1.4rem;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.4rem;
}
.site-footer h4 { color: #fff; margin: 0 0 .7rem; }
.site-footer a { color: #ccc; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .88rem;
  color: #999;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: #1a0a0a;
  color: #fff;
  border: 1px solid var(--gold);
  padding: .7rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  z-index: 100;
  transition: transform .25s ease;
  box-shadow: var(--shadow);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Mobile */
@media (max-width: 900px) {
  .hero-grid, .pdp, .partner-block, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .trust { grid-template-columns: 1fr 1fr; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #0e160f;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: .8rem 1rem 1rem;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .brand-text small { display: none; }
  .partner-gallery img { height: 110px; }
}
@media (max-width: 560px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
}


/* Mega brand hero */
.hero-brand {
  display: block;
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  margin: .35rem 0 .55rem;
  background: linear-gradient(92deg, #fff 0%, var(--gold) 40%, var(--red) 78%, var(--palm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: none;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.35));
}
.hero-brand span { display: block; }
.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
}

/* Floating WhatsApp */
.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: 1.15rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  font-weight: 800;
  font-size: .95rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(18, 140, 126, .45);
  border: 2px solid rgba(255,255,255,.25);
  text-decoration: none !important;
}
.fab-wa:hover { filter: brightness(1.08); color: #fff !important; transform: translateY(-2px); }
.fab-wa .fab-ico { font-size: 1.35rem; line-height: 1; }
@media (max-width: 560px) {
  .fab-wa span.fab-label { display: none; }
  .fab-wa { padding: .95rem 1.05rem; border-radius: 50%; }
}
.btn-qonto {
  background: linear-gradient(135deg, #1a1a2e, #6c5ce7);
  color: #fff !important;
  border: 0;
}
.btn-qonto:hover { filter: brightness(1.08); color: #fff !important; }
.brand img { height: 64px !important; width: auto; }
