/* =============================================
   Apartment Detail — Premium Full-Page Design
   ============================================= */

/* ---- Header (transparent → solid on scroll) ---- */
.ad-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .4s ease, box-shadow .4s ease;
}

.ad-header.is-scrolled {
  background: var(--brown);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.ad-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 8px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.ad-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  text-decoration: none;
}

.ad-back:hover { color: #fff; }

.ad-back span {
  display: inline;
}

.ad-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ad-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.ad-header-phone {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}

.ad-header-phone:hover { color: #fff; }

/* ---- Language Switcher (Premium) ---- */
.ad-header .ap-lang-switcher,
.ad-header-inner .ap-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
}

.ad-header-inner .ap-lang-btn {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 6px 10px;
  text-decoration: none;
  transition: color .3s ease;
  line-height: 1;
  position: relative;
}

.ad-header-inner .ap-lang-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 1px;
  background: var(--accent, #C8956C);
  transition: transform .3s ease;
}

.ad-header-inner .ap-lang-btn:hover {
  color: rgba(255,255,255,.85);
}

.ad-header-inner .ap-lang-btn.active {
  color: #fff;
  font-weight: 600;
}

.ad-header-inner .ap-lang-btn.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dividers between language buttons */
.ad-header-inner .ap-lang-btn + .ap-lang-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.15);
}

.ad-header.is-scrolled .ap-lang-btn {
  color: rgba(20,20,20,.4);
}

.ad-header.is-scrolled .ap-lang-btn:hover {
  color: rgba(20,20,20,.85);
}

.ad-header.is-scrolled .ap-lang-btn.active {
  color: #111;
  font-weight: 600;
}

.ad-header.is-scrolled .ap-lang-btn.active::after {
  background: var(--accent, #C8956C);
}

.ad-header.is-scrolled .ap-lang-btn + .ap-lang-btn::before {
  background: rgba(0,0,0,.12);
}


/* ---- HERO — Full Viewport ---- */
.ad-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ad-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ad-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ad-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.05) 30%,
      rgba(0,0,0,.2) 60%,
      rgba(0,0,0,.75) 100%
    );
}

.ad-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px 80px;
  text-align: left;
}

.ad-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.98), 0 10px 34px rgba(0, 0, 0, 0.82), 0 0 28px rgba(0, 0, 0, 0.48);
}

.ad-hero h1 {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.96), 0 14px 42px rgba(0, 0, 0, 0.78), 0 0 34px rgba(0, 0, 0, 0.42);
}

.ad-hero-price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.9), 0 12px 34px rgba(0,0,0,0.62), 0 0 24px rgba(0,0,0,0.35);
}

.ad-hero-inline-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.ad-inline-spec strong {
  color: #fff;
  font-weight: 600;
}

.ad-dot {
  color: rgba(255, 255, 255, 0.3);
}

.ad-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ad-hero-cta {
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.ad-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(134,65,40,.4);
  background: #9a4d30;
}

.ad-hero-cta:active { transform: scale(.98); }

.ad-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: rgba(37,211,102,.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  transition: transform .2s, background .2s;
  text-decoration: none;
}

.ad-hero-wa:hover {
  background: #25d366;
  transform: translateY(-2px);
}

.ad-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: adBounce 2s ease-in-out infinite;
}

@keyframes adBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Premium Main Layout ---- */
.ad-main-content {
  background: var(--bg-1);
}

.ad-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Editorial Section ---- */
.ad-editorial {
  padding: 140px 0 100px;
  background: radial-gradient(1000px 600px at 15% 15%, rgba(80,55,48,.12), transparent 60%);
}

.ad-ed-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 100px;
  align-items: start;
}

.ad-ed-sidebar {
  position: sticky;
  top: 120px;
}

.ad-ed-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: .95;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -.02em;
}

.ad-ed-subtitle {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -.01em;
}

/* Quick Specs in Sidebar */
.ad-quick-specs {
  display: flex;
  flex-direction: column;
}

.ad-q-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ad-q-spec:first-child { border-top: 1px solid rgba(255,255,255,.08); }

.ad-q-lbl {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ad-q-val {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* Content Area */
.ad-about-text {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}

.ad-about-text p {
  margin-bottom: 24px;
}

.ad-about-text p:first-child strong {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.ad-about-text strong {
  color: #fff;
}

.ad-about-text h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #fff;
  margin: 50px 0 20px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.ad-about-text h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin-top: 14px;
}

.ad-about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.ad-about-text ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: rgba(255,255,255,.75);
}

.ad-about-text ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Features Block */
.ad-features-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.ad-elegant-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  list-style: none;
}

.ad-elegant-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  transition: transform .3s, border-color .3s;
}

.ad-elegant-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(134,65,40,.25);
  background: rgba(255,255,255,.04);
}

.ad-list-icon {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(134,65,40,.6);
}

.ad-list-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

/* ---- Editorial Gallery ---- */
.ad-gallery-editorial {
  padding: 40px 0 140px;
}

.ad-gallery-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.ad-gallery-header .ad-ed-title {
  margin-bottom: 0;
  white-space: nowrap;
}

.ad-gallery-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
}

.ad-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
  grid-auto-flow: dense;
}

.ad-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a09;
  grid-column: span 1;
  grid-row: span 1;
}

.ad-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(0.2, 0, 0.2, 1), filter .4s;
}

.ad-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.ad-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,15,10,.2);
  transition: opacity .4s;
}

.ad-gallery-item:hover .ad-photo-overlay {
  opacity: 0;
}

.ad-gallery-item::after {
  content: "Vezi fullscreen";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 15, 14, 0.68);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.ad-gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.ad-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px;
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ad-lightbox.is-open {
  display: flex;
}

.ad-lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: min(100%, 1240px);
}

.ad-lb-img-wrap {
  width: 100%;
  max-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-lb-img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.ad-lb-counter {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ad-lb-close,
.ad-lb-prev,
.ad-lb-next {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 28px;
  line-height: 1;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.ad-lb-prev,
.ad-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ad-lb-prev {
  left: 24px;
}

.ad-lb-next {
  right: 24px;
}

.ad-lb-close:hover,
.ad-lb-prev:hover,
.ad-lb-next:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
}

.ad-lb-close:hover {
  transform: translateY(-1px);
}

.ad-lb-prev:hover,
.ad-lb-next:hover {
  transform: translateY(calc(-50% - 1px));
}

.ad-lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
}

/* Bento Style Pattern */
.ad-gallery-item:nth-child(7n + 1) { grid-column: span 2; grid-row: span 2; }
.ad-gallery-item:nth-child(7n + 4) { grid-column: span 2; grid-row: span 1; }
.ad-gallery-item:nth-child(7n + 5) { grid-column: span 1; grid-row: span 2; }


/* ---- PREMIUM CTA ---- */
.ad-premium-cta {
  position: relative;
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
}

.ad-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 50% 100%, rgba(212,119,69,.15), transparent);
  z-index: 1;
}

.ad-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.ad-cta-content h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}

.ad-cta-content p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.ad-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ad-pcta-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.ad-pcta-btn:hover {
  background: #E88350;
  transform: translateY(-2px);
}

.ad-pcta-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.ad-pcta-wa:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-2px);
}


@media (max-width: 1024px) {
  .ad-hero-content { padding: 0 32px 70px; }
  .ad-ed-grid { grid-template-columns: 1fr; gap: 60px; }
  .ad-ed-sidebar { position: static; }
  .ad-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; }
  .ad-gallery-item { grid-column: span 1; grid-row: span 1; }
  .ad-gallery-item:nth-child(7n + 1) { grid-column: span 2; grid-row: span 2; }
  .ad-gallery-item:nth-child(7n + 5) { grid-column: span 1; grid-row: span 2; }
  .ad-gallery-item:nth-child(7n + 4) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .ad-container { padding: 0 24px; }
  
  /* Split layout for mobile: image top half, content bottom half */
  .ad-hero { height: auto; min-height: auto; padding-top: 0; display: flex; flex-direction: column; justify-content: flex-start; }
  .ad-hero-img { position: relative; width: 100%; height: 50vh; min-height: 350px; flex-shrink: 0; inset: auto; }
  .ad-hero-overlay { height: 50vh; min-height: 350px; background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.2) 100%); inset: auto; top: 0; left: 0; right: 0; }
  .ad-hero-content { position: relative; padding: 32px 24px 40px; background: var(--bg-1); flex: 1; z-index: 2; width: 100%; }
  
  .ad-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); margin-bottom: 12px; text-shadow: none; }
  .ad-hero-subtitle { font-size: 11px; margin-bottom: 12px; letter-spacing: 0.12em; text-shadow: none; }
  .ad-hero-price { font-size: 2.2rem; margin-bottom: 20px; text-shadow: none; }
  
  .ad-viewers { margin: 0 0 20px; font-size: 13px; background: rgba(255,255,255,0.05); padding: 8px 14px; border-radius: 6px; display: inline-flex; }
  .ad-hero-spec-tags { margin-bottom: 30px; gap: 8px; }
  .ad-hero-tag { padding: 10px 14px; flex: 1 1 45%; }
  .ad-tag-label { font-size: 11px; }
  .ad-tag-value { font-size: 14px; }
  
  .ad-hero-actions { flex-direction: column; gap: 12px; }
  .ad-interactive-btn, .ad-interactive-btn-outline { width: 100%; justify-content: center; padding: 16px 20px; font-size: 15px; }

  .ad-hero-scroll { display: none; }
  .ad-header-phone { display: none; }
  .ad-header-inner .ap-lang-switcher { gap: 0; }
  .ad-header-inner .ap-lang-btn { padding: 4px 7px; font-size: 10px; }

  .ad-back span { display: none; }

  .ad-editorial { padding: 80px 0 60px; }
  .ad-ed-title { font-size: 2.2rem; margin-bottom: 30px; }
  .ad-about-text { font-size: 16px; }
  .ad-about-text p:first-child strong { font-size: 22px; }

  .ad-features-block { padding-top: 40px; margin-top: 60px; }
  .ad-elegant-list { grid-template-columns: 1fr; }

  .ad-gallery-header { margin-bottom: 40px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .ad-gallery-editorial { padding: 20px 0 80px; }

  
  .ad-cta-content h2 { font-size: 2rem; }
  .ad-cta-content p { font-size: 16px; margin-bottom: 32px; }

  .ad-lightbox {
    padding: 20px 12px 28px;
    gap: 10px;
  }

  .ad-lb-stage {
    gap: 14px;
    width: min(100%, calc(100vw - 24px));
  }

  .ad-lb-img-wrap,
  .ad-lb-img-wrap img {
    max-height: calc(100vh - 140px);
  }

  .ad-lb-prev, .ad-lb-next { width: 40px; height: 40px; font-size: 22px; }
  .ad-lb-prev { left: 10px; }
  .ad-lb-next { right: 10px; }
}

@media (max-width: 480px) {
  .ad-hero h1 { font-size: 1.6rem; }
  .ad-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 8px; }
  .ad-gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .ad-gallery-item:nth-child(3n + 1) { grid-column: span 2 !important; grid-row: span 2 !important; }

  .ad-cta-actions { flex-direction: column; }
  .ad-pcta-btn, .ad-pcta-wa { width: 100%; text-align: center; justify-content: center; }

  .ad-gallery-item::after {
    opacity: 1;
    transform: none;
    font-size: 10px;
    right: 10px;
    bottom: 10px;
    padding: 7px 10px;
  }
}


/* --- INTERACTIVE HERO UPDATE --- */
.ad-hero-content.animate-in > * {
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}
.ad-hero-content.animate-in .ad-hero-subtitle { animation-delay: 0.1s; }
.ad-hero-content.animate-in h1 { animation-delay: 0.2s; }
.ad-hero-content.animate-in .ad-hero-price { animation-delay: 0.3s; }
.ad-hero-content.animate-in .ad-hero-spec-tags { animation-delay: 0.4s; }
.ad-hero-content.animate-in .ad-hero-actions { animation-delay: 0.5s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 0 rgba(212,119,69, 0.4);
  animation: pulseDot 2s infinite;
  vertical-align: middle;
  margin-top: -2px;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(212,119,69, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(212,119,69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212,119,69, 0); }
}

.ad-viewers {
  margin: 14px 0 18px;
}

.ad-hero-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.ad-hero-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 20px;
  background: rgba(255,255,255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255, 0.08);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
  cursor: default;
}
.ad-hero-tag:hover {
  background: rgba(255,255,255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(255,255,255, 0.25);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.ad-tag-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ad-tag-value {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.ad-interactive-btn {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212,119,69, 0.25);
}
.ad-interactive-btn span {
  position: relative;
  z-index: 2;
}
.ad-interactive-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: .6s cubic-bezier(.25,.8,.25,1);
  z-index: 1;
}
.ad-interactive-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212,119,69, 0.4);
  background: #E88350;
}
.ad-interactive-btn:hover::before {
  left: 150%;
}

.ad-interactive-btn-outline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255, 0.15);
  background: rgba(255,255,255, 0.02);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}
.ad-interactive-btn-outline:hover {
  background: rgba(37,211,102, 0.9);
  border-color: #25D366;
  box-shadow: 0 10px 30px rgba(37,211,102, 0.3);
  transform: translateY(-3px);
}

@media(max-width: 480px){
  .ad-hero-tag { width: calc(50% - 6px); }
  .ad-hero-actions { flex-direction: column; }
  .ad-interactive-btn, .ad-interactive-btn-outline { width: 100%; justify-content: center; }
}
