.antoeli-tabs-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.antoeli-tabs-wrapper * { box-sizing: border-box; }

.antoeli-tabs-desc {
  color: #555577;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── TABS NAV ── */
.antoeli-tabs-nav {
  display: flex;
  border-bottom: 2px solid #dde0f0;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 0;
}

.antoeli-tab-btn {
  background: none;
  border: none;
  padding: 10px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555577;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}

.antoeli-tab-btn:hover { color: #364496; }
.antoeli-tab-btn.active { color: #364496; border-bottom-color: #364496; }

/* ── TAB PANELS ── */
.antoeli-tab-panel { display: none; }
.antoeli-tab-panel.active { display: block; }

.antoeli-model-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.antoeli-model-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.antoeli-model-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #364496;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.antoeli-model-info p {
  font-size: 14.5px;
  color: #333;
  margin-bottom: 14px;
  text-align: justify;
}

.antoeli-model-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #1a1a2e;
}

.antoeli-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.antoeli-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.antoeli-check-list li::before {
  content: '✓';
  color: #364496;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.antoeli-model-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 300px;
}

/* ── GALLERY ── */
.antoeli-gallery { padding: 32px 0 0; }

.antoeli-gallery h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: #1a1a2e;
}

.antoeli-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.antoeli-gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .2s;
  cursor: pointer;
}

.antoeli-gallery-grid img:hover { transform: scale(1.05); }

/* ── VIDEO ── */
.antoeli-video { padding: 32px 0 0; }

.antoeli-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  border: none;
  max-width: 560px;
  display: block;
  margin: 0 auto;
}

/* ── BUTTON ── */
.antoeli-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: #364496;
  color: #fff;
  transition: background .2s;
}

.antoeli-btn:hover { background: #4a5bbd; }

/* ── FAB ── */
.antoeli-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #364496;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(54,68,150,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}

.antoeli-fab:hover { transform: scale(1.08); }

.antoeli-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.antoeli-badge.show { display: flex; }

/* ── PANEL ── */
.antoeli-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.antoeli-overlay.open { opacity: 1; visibility: visible; }

.antoeli-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 10000;
  box-shadow: -4px 0 30px rgba(0,0,0,.1);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.antoeli-panel.open { right: 0; }

.antoeli-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #dde0f0;
}

.antoeli-panel-hd h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
}

.antoeli-panel-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f6fa;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #555577;
  display: flex;
  align-items: center;
  justify-content: center;
}

.antoeli-panel-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.antoeli-empty {
  text-align: center;
  padding: 48px 0;
  color: #555577;
}

.antoeli-panel-ft {
  padding: 16px 24px 24px;
  border-top: 1px solid #dde0f0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .antoeli-tabs-wrapper { padding: 0 24px; }
  .antoeli-model-card { grid-template-columns: 1fr; gap: 24px; }
  .antoeli-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .antoeli-tabs-wrapper { padding: 0 16px; }
  .antoeli-gallery-grid { grid-template-columns: 1fr; }
  .antoeli-panel { width: 100%; right: -100%; }
}