/* ============================================
   AIRALOVE — Mejuri Inspired Design v8.0
   Pure white · Minimal · Let photos breathe
   ============================================ */

:root {
  --mj-white:   #ffffff;
  --mj-off:     #faf8f5;
  --mj-cream:   #f5f0e8;
  --mj-gold:    #c8a96e;
  --mj-dark:    #1a1a1a;
  --mj-grey:    #6b6b6b;
  --mj-light:   #e8e0d5;
  --mj-border:  #ebebeb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.mj-wrap {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--mj-dark);
  background: var(--mj-white);
}

/* ── TICKER ── */
.mj-ticker {
  background: var(--mj-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
}

.mj-ticker-inner {
  display: inline-block;
  animation: mj-scroll 20s linear infinite;
  white-space: nowrap;
}

@keyframes mj-scroll {
  0%   { transform: translateX(30%); }
  100% { transform: translateX(-70%); }
}

/* ── HERO WITH IMAGE ── */
.mj-hero-img {
  position: relative;
  min-height: 92vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.mj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.1) 50%,
    transparent 100%
  );
}

.mj-hero-img .mj-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 600px;
}

.mj-hero-img .mj-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.mj-hero-btn-light {
  display: inline-block;
  background: white;
  color: var(--mj-dark) !important;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: background 0.3s, color 0.3s;
}

.mj-hero-btn-light:hover {
  background: var(--mj-gold);
  color: white !important;
}

/* ── HERO PLAIN (no image) ── */
.mj-hero-plain {
  position: relative;
  min-height: 85vh;
  background: var(--mj-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mj-hero-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mj-hero-art svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mj-hero-plain .mj-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 600px;
}

.mj-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mj-gold);
  margin-bottom: 24px;
}

.mj-hero-plain .mj-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--mj-dark);
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.mj-hero-btn {
  display: inline-block;
  background: var(--mj-dark);
  color: white;
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: background 0.3s;
}

.mj-hero-btn:hover {
  background: var(--mj-gold);
  color: white;
}

/* ── PRODUCTS ── */
.mj-products {
  padding: 80px 60px 100px;
  background: var(--mj-white);
}

.mj-products-head {
  text-align: center;
  margin-bottom: 50px;
}

.mj-products-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--mj-grey);
}

/* ── GRID ── */
.mj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ── CARD ── */
.mj-card {
  background: var(--mj-white);
}

.mj-card-img {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--mj-off);
}

.mj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4,0,0.2,1);
}

.mj-card:hover .mj-card-img img {
  transform: scale(1.04);
}

.mj-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mj-placeholder svg { width: 100%; height: 100%; }

/* Badge */
.mj-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mj-dark);
  background: white;
  padding: 4px 9px;
  z-index: 2;
}

/* Quick Add */
.mj-atc-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
}

.mj-card:hover .mj-atc-wrap {
  transform: translateY(0);
}

.mj-atc {
  width: 100%;
  background: var(--mj-dark);
  color: white;
  border: none;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  transition: background 0.3s;
}

.mj-atc:hover { background: #333; }

/* Card body */
.mj-card-body {
  padding: 14px 4px 24px;
}

.mj-card-name {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--mj-dark);
  text-decoration: none;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.mj-card-name:hover { color: var(--mj-gold); }

/* WooCommerce price */
.mj-card-price .price {
  font-size: 13px;
  color: var(--mj-grey);
  font-weight: 300;
}

.mj-card-price del {
  color: #bbb;
  font-size: 12px;
  margin-right: 4px;
}

.mj-card-price ins {
  text-decoration: none;
  color: var(--mj-gold);
}

.mj-empty {
  text-align: center;
  padding: 80px;
  color: var(--mj-grey);
  grid-column: 1 / -1;
  font-size: 14px;
}

.mj-empty a { color: var(--mj-gold); }

/* ── FOOTER ── */
.mj-footer {
  border-top: 1px solid var(--mj-border);
  background: var(--mj-white);
}

.mj-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 60px;
  border-bottom: 1px solid var(--mj-border);
  flex-wrap: wrap;
  gap: 24px;
}

.mj-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--mj-dark);
  margin-bottom: 4px;
}

.mj-footer-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mj-grey);
  text-transform: uppercase;
}

.mj-footer-nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.mj-footer-nav a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mj-grey);
  text-decoration: none;
  transition: color 0.3s;
}

.mj-footer-nav a:hover { color: var(--mj-dark); }

.mj-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  font-size: 11px;
  color: var(--mj-grey);
  letter-spacing: 0.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── TOAST ── */
.mj-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--mj-dark);
  color: white;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}

.mj-toast-show { transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ── */
@keyframes mj-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mj-hero-content > * {
  animation: mj-fadeUp 1s ease forwards;
  opacity: 0;
}

.mj-hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.mj-hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.mj-hero-content > *:nth-child(3) { animation-delay: 0.6s; }

.mj-card {
  animation: mj-fadeUp 0.6s ease forwards;
  opacity: 0;
}

.mj-card:nth-child(1) { animation-delay: 0.05s; }
.mj-card:nth-child(2) { animation-delay: 0.1s; }
.mj-card:nth-child(3) { animation-delay: 0.15s; }
.mj-card:nth-child(4) { animation-delay: 0.2s; }
.mj-card:nth-child(5) { animation-delay: 0.25s; }
.mj-card:nth-child(6) { animation-delay: 0.3s; }
.mj-card:nth-child(7) { animation-delay: 0.35s; }
.mj-card:nth-child(8) { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .mj-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .mj-hero-img   { min-height: 70vh; }
  .mj-hero-img .mj-hero-content { padding: 40px 24px; }
  .mj-hero-img .mj-hero-title { font-size: 44px; }
  .mj-hero-plain .mj-hero-title { font-size: 42px; }
  .mj-products   { padding: 60px 16px 80px; }
  .mj-grid       { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .mj-footer-top { padding: 36px 24px; flex-direction: column; text-align: center; }
  .mj-footer-nav { justify-content: center; gap: 24px; }
  .mj-footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .mj-hero-img .mj-hero-title { font-size: 34px; }
  .mj-hero-plain .mj-hero-title { font-size: 32px; }
}

/* ── HIDE PAGE TITLE ── */
.page-title,
.entry-title,
.page-header,
h1.entry-title {
  display: none !important;
}

/* ── HIDE DUPLICATE WOOCOMMERCE SHOP ── */
.woocommerce-notices-wrapper,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: none !important;
}

/* ── HIDE ADD WIDGET AREA ── */
.widget-area,
.sidebar,
aside.widget-area {
  display: none !important;
}

/* ── CLEAN HERO BUTTON ── */
.mj-hero-btn-light {
  background: white;
  color: #1a1a1a !important;
  padding: 16px 48px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: background 0.3s, color 0.3s;
  display: inline-block;
}

.mj-hero-btn-light:hover {
  background: #c8a96e;
  color: white !important;
}
