/* ═══════════════════════════════════════════════════
   MyCityMall Coming Soon — Elementor Widget Styles
   All rules scoped to .mcmcs-widget
═══════════════════════════════════════════════════ */

/* ── Base ── */
.mcmcs-widget *,
.mcmcs-widget *::before,
.mcmcs-widget *::after { box-sizing: border-box; margin: 0; padding: 0; }

.mcmcs-widget {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(5px,.9vh,12px) clamp(10px,2vw,32px) clamp(6px,1vh,12px);
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.mcmcs-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ── Gold Ribbon ── */
.mcmcs-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(.48rem,1vw,.76rem);
  letter-spacing: .24em;
  color: #000;
  background: linear-gradient(90deg, #c47f00, var(--pc,#f5a800), #ffd060, var(--pc,#f5a800), #c47f00);
  padding: 3px clamp(14px,2.2vw,32px);
  box-shadow: 0 0 20px rgba(245,168,0,.65);
  animation: mcmcs-ribbon-pulse 2s ease-in-out infinite;
}
@keyframes mcmcs-ribbon-pulse {
  0%,100% { box-shadow: 0 0 14px rgba(245,168,0,.5); }
  50%     { box-shadow: 0 0 36px rgba(245,168,0,1), 0 0 70px rgba(245,168,0,.3); }
}

/* ── Bunting ── */
.mcmcs-bunting {
  position: absolute; top: 0; right: 0;
  width: 55%; pointer-events: none; z-index: 3;
}
.mcmcs-bunting svg { width: 100%; }

/* ── Arc ── */
.mcmcs-arc {
  position: absolute;
  bottom: 15%; left: 50%;
  transform: translateX(-50%);
  width: min(82vw, 840px);
  height: min(13vw, 115px);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border: 1.5px solid rgba(245,168,0,.32);
  box-shadow: 0 0 40px rgba(245,168,0,.18), inset 0 0 30px rgba(245,168,0,.06);
  z-index: 2;
  animation: mcmcs-arc-b 3.5s ease-in-out infinite;
}
@keyframes mcmcs-arc-b {
  0%,100% { opacity: .5; }
  50%     { opacity: 1; box-shadow: 0 0 70px rgba(245,168,0,.35); }
}

/* ── Hanging Tag ── */
.mcmcs-tag-wrap {
  position: absolute; top: 0;
  left: clamp(10px,2vw,26px);
  z-index: 8;
  display: flex; flex-direction: column; align-items: center;
}
.mcmcs-tag-chains {
  display: flex;
  gap: clamp(14px,3vw,36px);
  height: clamp(14px,2vh,24px);
}
.mcmcs-tag-chains span {
  width: 2px;
  background: repeating-linear-gradient(to bottom, #c47f00 0 3px, #8a5a00 3px 6px);
  border-radius: 1px;
  height: 100%;
  display: block;
}
.mcmcs-tag {
  background: linear-gradient(145deg,#1f1500,#0e0900);
  border: 1.8px solid var(--pc,#f5a800);
  border-radius: 12px;
  padding: clamp(7px,1.1vw,13px) clamp(10px,1.5vw,18px);
  max-width: clamp(115px,16vw,200px);
  text-align: center;
  box-shadow: 0 0 32px rgba(245,168,0,.4), inset 0 0 14px rgba(245,168,0,.07);
  animation: mcmcs-tag-swing 4s ease-in-out infinite;
  transform-origin: top center;
  position: relative;
}
.mcmcs-tag-spark {
  position: absolute; top: -6px; right: -6px;
  font-size: 1rem;
  animation: mcmcs-spark-spin 2.5s linear infinite;
}
@keyframes mcmcs-spark-spin {
  0%,100%{ transform: rotate(0) scale(.8); }
  50%    { transform: rotate(180deg) scale(1.1); }
}
.mcmcs-tag-mega {
  display: block;
  font-size: clamp(1.4rem,2.2vw,2rem);
  margin-bottom: 3px;
  filter: drop-shadow(0 0 8px #f5a800);
  animation: mcmcs-mega-bounce 2s ease-in-out infinite;
}
@keyframes mcmcs-mega-bounce {
  0%,100%{ transform: rotate(-8deg) scale(1); }
  50%    { transform: rotate(8deg) scale(1.1); }
}
.mcmcs-tag-text {
  font-size: clamp(.4rem,.95vw,.66rem);
  font-weight: 800; color: #fff;
  letter-spacing: .05em; text-transform: uppercase; line-height: 1.5;
}
.mcmcs-tag-text em { font-style: normal; color: var(--pc,#f5a800); }
@keyframes mcmcs-tag-swing {
  0%,100%{ transform: rotate(-5deg); }
  50%    { transform: rotate(5deg); }
}

/* ── Badges ── */
.mcmcs-badge {
  position: absolute; z-index: 4;
  border-radius: 10px; text-align: center;
  color: #fff; font-weight: 800; line-height: 1.2;
  padding: clamp(3px,.5vw,7px) clamp(5px,1vw,12px);
  animation: mcmcs-badge-in .8s cubic-bezier(.34,1.56,.64,1) both,
             mcmcs-badge-bob 3.5s ease-in-out infinite;
  border: 1.5px solid transparent;
}
.mcmcs-badge-1 {
  right: clamp(8px,6%,80px); top: 15%;
  box-shadow: 0 4px 22px rgba(200,0,0,.6);
  animation-delay: .4s, .8s;
}
.mcmcs-badge-2 {
  right: clamp(8px,5%,68px); top: 32%;
  box-shadow: 0 4px 22px rgba(0,0,0,.15);
  animation-delay: .6s, 1.2s;
}
.mcmcs-b-title { font-size: clamp(.42rem,.88vw,.66rem); letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.mcmcs-b-val   { font-size: clamp(.78rem,1.65vw,1.35rem); font-family: 'Bebas Neue',sans-serif; letter-spacing: .06em; }
@keyframes mcmcs-badge-in  { from{ opacity:0;transform:scale(0) rotate(-20deg) } to{ opacity:1;transform:scale(1) rotate(0) } }
@keyframes mcmcs-badge-bob { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-6px) rotate(-1deg)} }

/* ── Logo Zone ── */
.mcmcs-logo-zone {
  position: relative; z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  animation: mcmcs-slide-down .7s cubic-bezier(.34,1.3,.64,1) both;
}
@keyframes mcmcs-slide-down {
  from{ opacity:0;transform:translateY(-26px) }
  to  { opacity:1;transform:translateY(0) }
}
.mcmcs-logo-badge {
  background: linear-gradient(145deg,rgba(30,22,0,.96),rgba(12,8,0,.97));
  border: 1.5px solid rgba(245,168,0,.55);
  border-radius: 16px;
  padding: clamp(5px,.8vw,10px) clamp(10px,1.6vw,20px);
  display: flex; align-items: center; gap: clamp(7px,1.1vw,14px);
  box-shadow: 0 0 32px rgba(245,168,0,.25), 0 0 80px rgba(245,168,0,.06);
  position: relative; overflow: hidden;
}
.mcmcs-logo-badge::before {
  content:'';position:absolute;inset:0;
  background:linear-gradient(110deg,transparent 30%,rgba(255,220,80,.07) 50%,transparent 70%);
  animation:mcmcs-shimmer 3s linear infinite;
}
@keyframes mcmcs-shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(200%)} }

.mcmcs-logo-img {
  width: clamp(36px,5vw,64px);
  height: clamp(36px,5vw,64px);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(245,168,0,.45);
  background: rgba(245,168,0,.07);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mcmcs-logo-img img { width:100%;height:100%;object-fit:contain;display:block; }
.mcmcs-logo-ph {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: rgba(245,168,0,.55);
}
.mcmcs-logo-ph svg { width:clamp(16px,2.2vw,28px);height:clamp(16px,2.2vw,28px);opacity:.6; }
.mcmcs-logo-ph span { font-size:clamp(.3rem,.55vw,.48rem);text-transform:uppercase;letter-spacing:.06em;font-weight:700;text-align:center;line-height:1.2; }

.mcmcs-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem,2.2vw,2rem);
  color: #fff; letter-spacing: .08em;
  text-shadow: 0 0 18px rgba(245,168,0,.3);
}

/* ── Headline ── */
.mcmcs-headline {
  position: relative; z-index: 5;
  text-align: center; line-height: .84;
  animation: mcmcs-scale-in .9s .25s cubic-bezier(.34,1.2,.64,1) both;
}
@keyframes mcmcs-scale-in {
  from{ opacity:0;transform:scale(.75) }
  to  { opacity:1;transform:scale(1) }
}
.mcmcs-coming {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, min(10.5vw,13.5vh), 10rem);
  color: #fff; display: block; letter-spacing: .05em;
  text-shadow: 0 4px 0 rgba(0,0,0,.8), 0 8px 30px rgba(0,0,0,.8), 4px 4px 0 rgba(80,60,0,.5);
  -webkit-text-stroke: 1px rgba(255,255,255,.15);
}
.mcmcs-soon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, min(12.5vw,15.5vh), 12rem);
  display: block; letter-spacing: .05em;
  background: linear-gradient(175deg, #fffde0 0%, #ffe99a 18%, var(--sc,#ffd060) 35%, var(--pc,#f5a800) 55%, #c47f00 78%, #7a4a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(245,168,0,.7)) drop-shadow(0 4px 0 rgba(120,60,0,.6));
  animation: mcmcs-gold-glow 2.8s ease-in-out infinite;
}
@keyframes mcmcs-gold-glow {
  0%,100%{ filter: drop-shadow(0 0 18px rgba(245,168,0,.6)) drop-shadow(0 4px 0 rgba(120,60,0,.6)) }
  50%    { filter: drop-shadow(0 0 45px rgba(245,168,0,1)) drop-shadow(0 4px 0 rgba(120,60,0,.7)) drop-shadow(0 0 80px rgba(255,200,0,.6)) }
}

/* ── Pill / Stay Tuned ── */
.mcmcs-pill-wrap {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  animation: mcmcs-fade-up .8s .5s ease both;
}
@keyframes mcmcs-fade-up { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

.mcmcs-pill {
  background: linear-gradient(90deg,#c47f00 0%,var(--pc,#f5a800) 40%,#ffd060 60%,#c47f00 100%);
  background-size: 200%; color: #000; font-weight: 900;
  font-size: clamp(.56rem,1.25vw,.84rem); letter-spacing: .18em; text-transform: uppercase;
  padding: clamp(3px,.55vh,7px) clamp(18px,3.2vw,42px); border-radius: 4px;
  box-shadow: 0 0 28px rgba(245,168,0,.55), 0 2px 8px rgba(0,0,0,.5);
  animation: mcmcs-pill-shimmer 2.5s linear infinite;
}
@keyframes mcmcs-pill-shimmer { 0%{background-position:0%} 100%{background-position:200%} }
.mcmcs-sub { font-size:clamp(.58rem,1.25vw,.84rem);color:rgba(255,255,255,.88);text-align:center;font-weight:500; }
.mcmcs-sub b { color:var(--pc,#f5a800);font-weight:800; }

/* ── Features ── */
.mcmcs-features {
  position: relative; z-index: 5;
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: clamp(4px,1.4vw,24px);
  animation: mcmcs-fade-up .8s .7s ease both;
}
.mcmcs-feat { display:flex;flex-direction:column;align-items:center;gap:3px;flex:0 0 auto; }
.mcmcs-feat-icon {
  width: clamp(30px,4.5vw,54px); height: clamp(30px,4.5vw,54px);
  filter: drop-shadow(0 0 8px rgba(245,168,0,.65));
  animation: mcmcs-icon-pop 2s ease-in-out infinite;
}
.mcmcs-feat-icon svg { width:100%;height:100%; }
@keyframes mcmcs-icon-pop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.mcmcs-feat:nth-child(3) .mcmcs-feat-icon { animation-delay:.2s }
.mcmcs-feat:nth-child(5) .mcmcs-feat-icon { animation-delay:.4s }
.mcmcs-feat:nth-child(7) .mcmcs-feat-icon { animation-delay:.6s }
.mcmcs-feat:nth-child(9) .mcmcs-feat-icon { animation-delay:.8s }
.mcmcs-feat-div {
  width:1px;height:clamp(28px,4.5vw,48px);
  background:linear-gradient(180deg,transparent,rgba(245,168,0,.4),transparent);
  align-self:center;
}
.mcmcs-feat-lbl {
  font-size:clamp(.36rem,.88vw,.62rem);color:#fff;font-weight:700;
  text-transform:uppercase;letter-spacing:.05em;text-align:center;line-height:1.3;
}

/* ── Contact ── */
.mcmcs-contact {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(12px,2.8vw,40px);
  background: linear-gradient(90deg,rgba(24,16,0,.95),rgba(16,10,0,.97),rgba(24,16,0,.95));
  border: 1.8px solid rgba(245,168,0,.4);
  border-radius: 50px;
  padding: clamp(6px,.9vh,12px) clamp(18px,4vw,52px);
  width: min(92%,580px);
  box-shadow: 0 0 36px rgba(245,168,0,.18),inset 0 0 24px rgba(245,168,0,.04);
  animation: mcmcs-fade-up .8s .9s ease both;
}
.mcmcs-c-div { width:1px;height:22px;background:rgba(245,168,0,.4);flex-shrink:0; }
.mcmcs-c-item {
  display:flex;align-items:center;gap:8px;color:#fff;
  font-size:clamp(.6rem,1.5vw,.92rem);font-weight:800;letter-spacing:.04em;white-space:nowrap;
}
.mcmcs-c-icon {
  width:clamp(16px,2.2vw,26px);height:clamp(16px,2.2vw,26px);
  filter:drop-shadow(0 0 6px rgba(245,168,0,.6));flex-shrink:0;display:block;
}
.mcmcs-c-icon svg { width:100%;height:100%; }

/* ── Balloons ── */
.mcmcs-balloons { position:absolute;inset:0;pointer-events:none;z-index:3; }
.mcmcs-ball { position:absolute;animation:mcmcs-float-ball ease-in-out infinite; }
@keyframes mcmcs-float-ball {
  0%,100%{ transform:translateY(0) rotate(-4deg) }
  50%    { transform:translateY(-24px) rotate(4deg) }
}

/* ── Responsive ── */
@media(max-width:560px){
  .mcmcs-tag-wrap { max-width:24vw; }
  .mcmcs-badge-1,.mcmcs-badge-2 { display:none; }
  .mcmcs-feat-div { display:none; }
  .mcmcs-features { gap:4px;flex-wrap:wrap; }
}
@media(max-width:380px){
  .mcmcs-contact { flex-direction:column;gap:5px;border-radius:14px; }
  .mcmcs-c-div   { width:44%;height:1px; }
}
@media(prefers-reduced-motion:reduce){
  .mcmcs-widget *,
  .mcmcs-widget *::before,
  .mcmcs-widget *::after { animation:none!important; }
}
