.elementor-4167 .elementor-element.elementor-element-79aec14{--display:flex;}/* Start custom CSS for wd_text_block, class: .elementor-element-33dea35 *//* Main card */
.aromour-promo-box {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 24px;
  padding: 48px 40px 40px 40px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out;
  margin: 0 auto;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.06);
}

.aromour-promo-box * { box-sizing: border-box; }

.aromour-promo-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c59d5f, #e8c48a, #c59d5f);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.aromour-promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  animation: pulse 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Main text area */
.aromour-promo-main {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  line-height: 1;
  margin: 5px 0;
}

/* Discount headline */
.aromour-promo-discount {
  display: block;
  font-size: 65px;
  font-weight: 900;
  color: #c59d5f; /* fallback */
  background: linear-gradient(135deg, #c59d5f, #e8c48a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1px;
  letter-spacing: -1px;
  animation: float 3s ease-in-out infinite;
  line-height: 1.2;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Code chip */
.aromour-promo-code {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  font-size: 42px;
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 12px;
  margin-top: 16px;
  letter-spacing: 2px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.40);
  border: 3px dashed #1a1a1a;
  position: relative;
  transition: transform 0.2s ease;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

.aromour-promo-code:hover { transform: scale(1.05); }

/* Expiry row */
.aromour-promo-expiry {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid #eee;
  font-size: 15px;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.aromour-promo-expiry::before {
  content: '⏰';
  font-size: 18px;
  line-height: 1;
}

.aromour-promo-expiry strong {
  color: #c59d5f;
  font-weight: 700;
}

/* =========================
   Bottom row — NEVER breaks
   ========================= */

/* Elementor/WoodMart sometimes inject <p> tags: neutralize them */
.promo-sub p { margin: 0 !important; }

/* Layout */
.promo-sub{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;

  display: inline-flex;         /* inline so it sizes to content */
  align-items: center;
  justify-content: center;

  gap: 0;                       /* divider handles spacing */
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

/* Items */
.promo-sub-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Divider as pseudo-element on the right item (cannot wrap alone) */
.promo-sub-right::before{
  content: '';
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #ddd;
  margin: 0 16px;
  flex-shrink: 0;
}

/* Mobile stacking */
@media (max-width: 600px) {
  .aromour-promo-box {
    padding: 36px 24px 32px 24px;
    max-width: 100%;
  }

  .aromour-promo-badge {
    font-size: 11px;
    padding: 10px 18px;
    gap: 8px;
  }

  .aromour-promo-discount { font-size: 36px; }
  .aromour-promo-main { font-size: 18px; }

  .aromour-promo-code {
    font-size: 24px;
    padding: 10px 20px;
  }

  .aromour-promo-expiry {
    font-size: 14px;
    margin-top: 24px;
  }

  .promo-sub{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .promo-sub-right::before{
    display: none;
  }
}

.aromour-promo-code[data-copied="1"]::before{
  content: '✅ ';
  opacity: 1;
  color: #2e7d32;
}/* End custom CSS */