/* ==========================================================================
   premium.css - mileniumcafe
   structural (inlocuieste menu.css) + vizual premium
   paleta: alb/crem cu accente gold
   ========================================================================== */


/* --------------------------------------------------------------------------
   variabile
   -------------------------------------------------------------------------- */

:root {
  --mc-white:        #ffffff;
  --mc-cream:        #fdf8f2;
  --mc-cream-2:      #f5ede0;
  --mc-gold:         #c9a96e;
  --mc-gold-hover:   #dfc48a;
  --mc-gold-dark:    #a07838;
  --mc-gold-pale:    rgba(201, 169, 110, 0.12);
  --mc-espresso:     #2c1a0e;
  --mc-dark:         #1c120d;
  --mc-brown:        #5c3d1e;
  --mc-brown-light:  #9a7355;
  --mc-text-light:   #7a6050;
  --mc-border:       rgba(201, 169, 110, 0.22);
  --mc-border-soft:  #e8d5b7;

  /* header/footer raman intunecate pentru contrast */
  --mc-header-bg:    #1c120d;
  --mc-footer-bg:    #1c120d;
  --mc-header-border:#4a3020;
  --mc-text-nav:     #e8ddd1;
  --mc-text-sub:     #c4a882;

  --mc-font-display: 'Playfair Display', Georgia, serif;
  --mc-font-ui:      'Montserrat', Arial, sans-serif;
  --mc-h:            80px;
  --mc-h-sticky:     64px;
  --mc-h-mobile:     64px;
}


/* ==========================================================================
   STRUCTURAL - necesar pentru menu.js
   ========================================================================== */

.navik-header {
  position: relative;
  z-index: 998;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.navik-header *,
.navik-header *::before,
.navik-header *::after {
  box-sizing: border-box;
}

.navik-header a:hover,
.navik-header a:focus,
.navik-header a:active {
  text-decoration: none;
  outline: none;
}

.navik-header img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.navik-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: inherit;
}

.navik-header-container {
  position: relative;
}

/* sticky - adaugat de menu.js la scroll */
.navik-header.sticky {
  position: fixed;
  width: 100%;
  -webkit-animation-name: stickyTransition;
  animation-name: stickyTransition;
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes stickyTransition {
  from { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0); }
  to   { opacity: 1; -webkit-transform: none; transform: none; }
}
@keyframes stickyTransition {
  from { opacity: 0; transform: translate3d(0, -100%, 0); }
  to   { opacity: 1; transform: none; }
}

/* burger menu */
.burger-menu {
  position: absolute;
  top: 20px;
  right: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: -webkit-transform 330ms ease-out;
  transition: transform 330ms ease-out;
}

.burger-menu.menu-open {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.line-menu {
  width: 100%;
  height: 2px;
  border-radius: 2px;
}

.line-menu.line-half { width: 50%; }

.line-menu.first-line {
  -webkit-transform-origin: right;
  transform-origin: right;
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.line-menu.last-line {
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition: -webkit-transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.menu-open .line-menu.first-line { -webkit-transform: rotate(-90deg) translateX(3px); transform: rotate(-90deg) translateX(3px); }
.menu-open .line-menu.last-line  { -webkit-transform: rotate(-90deg) translateX(-3px); transform: rotate(-90deg) translateX(-3px); }

/* dropdown plus (expand pe mobil) */
.dropdown-plus {
  position: absolute;
  top: 0; right: 0;
  width: 48px; height: 48px;
  line-height: 48px;
  cursor: pointer;
}

.dropdown-plus::before,
.dropdown-plus::after {
  position: absolute;
  top: 24px; right: 18px;
  width: 14px; height: 2px;
  content: "";
  background-color: var(--mc-text-nav);
}

.dropdown-plus::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.dropdown-plus.dropdown-open::after {
  display: none;
}


/* ==========================================================================
   DESKTOP - structural
   ========================================================================== */

@media (min-width: 1200px) {

  .navik-header-container {
    height: var(--mc-h);
    display: flex;
    align-items: center;
  }

  .navik-header .logo {
    position: relative;
    flex-shrink: 0;
    padding: 0 28px 0 0;
  }

  .navik-header .logo img {
    width: auto;
    max-width: inherit;
    max-height: 56px;
    display: block;
    transition: max-height 0.3s ease;
  }

  .burger-menu { display: none; }
  .lang-switch  { display: none; }

  .navik-menu { margin-left: auto; }

  .navik-menu > ul {
    display: block !important;
    padding: 0;
    font-size: 0;
    line-height: 1;
  }

  .navik-menu > ul > li {
    display: inline-block;
    position: relative;
  }

  .navik-menu > ul > li > a {
    position: relative;
    display: block;
    box-sizing: border-box;
    height: var(--mc-h);
    line-height: var(--mc-h);
    padding: 0 15px;
    white-space: nowrap;
  }

  .navik-menu > ul > li:last-child > a {
    padding-right: 0;
  }

  .navik-menu ul li.dropdown_menu > a > span { display: none; }

  .navik-menu.menu-caret ul li.dropdown_menu > a > span {
    display: inline-block;
  }

  .navik-menu.menu-caret ul li.dropdown_menu > a > span::before {
    position: relative;
    top: -2px;
    box-sizing: content-box;
    display: inline-block;
    width: 4px; height: 4px;
    margin-left: 7px;
    content: "";
    border-color: currentColor;
    border-style: solid;
    border-width: 1.5px 1.5px 0 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: transform 0.2s ease;
  }

  /* dropdown container */
  .navik-menu li > ul {
    position: absolute;
    top: 100%; left: 0;
    display: block !important;
    min-width: 210px;
    padding: 6px 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999;
  }

  .navik-menu li > ul ul { top: -6px; left: 100%; }

  .navik-menu li:hover > ul { visibility: visible; opacity: 1; }

  .navik-menu li.submenu-right > ul { right: 0; left: inherit; }

  .navik-menu ul ul li > a {
    display: block;
    padding: 10px 20px !important;
    white-space: nowrap;
  }

  .navik-menu ul ul li:hover > a {
    padding-left: 26px !important;
  }

  .navik-menu ul li { position: relative; }

  .navik-menu ul li.current-menu > a,
  .navik-menu ul li:hover > a { background-color: inherit; }

  .dropdown-plus { display: none; }

  /* sticky - desktop */
  .navik-header.sticky .navik-header-container { height: var(--mc-h-sticky); }
  .navik-header.sticky .navik-menu > ul > li > a { height: var(--mc-h-sticky); line-height: var(--mc-h-sticky); }
  .navik-header.sticky .logo img { max-height: 42px; }

}


/* ==========================================================================
   MOBIL - structural
   ========================================================================== */

@media (max-width: 1199.98px) {

  .navik-header-container { height: var(--mc-h-mobile); }

  .navik-header .logo {
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .navik-header .logo img {
    max-height: 40px;
    width: auto;
  }

  .navik-menu > ul {
    display: none;
    padding: 0 0 12px;
    clear: both;
  }

  .navik-menu ul li > a {
    display: block;
    padding: 13px 16px;
  }

  .navik-menu ul ul li > a {
    padding: 11px 16px 11px 28px;
  }

  .lang-switch {
    display: flex;
    position: absolute;
    top: 50%; left: 14px;
    transform: translateY(-50%);
    align-items: center;
    gap: 6px;
  }

}


/* ==========================================================================
   VIZUAL - paleta premium alb/crem + gold
   ========================================================================== */


/* fonturi globale */
body {
  font-family: var(--mc-font-ui);
  /* suprascrie marginea adaugata de menu.js pe body (viewport-lg) */
  margin-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--mc-font-display);
}


/* --------------------------------------------------------------------------
   HEADER - fix complet pentru menu.js
   menu.js adauga clasa viewport-lg si face: header.margin-top = -90px, body.margin-top = 90px
   suprimam aceste manipulari cu !important
   -------------------------------------------------------------------------- */

/* previne disparitia headerului cand menu.js seteaza margin-top negativ */
#header-3.navik-header {
  position: fixed !important;
  top: 0 !important;
  margin-top: 0 !important;
  width: 100%;
  z-index: 999;
  background: var(--mc-header-bg);
  border-bottom: 1px solid var(--mc-header-border);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

/* sticky - fara animatie (deja e fix) */
#header-3.navik-header.sticky {
  -webkit-animation: none !important;
  animation: none !important;
  background: rgba(22, 13, 8, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(74, 48, 32, 0.8);
}

/* spatiu pentru headerul fix */
#page {
  padding-top: var(--mc-h);
}

@media (max-width: 1199.98px) {
  #page {
    padding-top: var(--mc-h-mobile);
  }
}

/* burger - culoare pe header inchis */
.line-menu {
  background-color: var(--mc-text-nav);
}

.dropdown-plus::before,
.dropdown-plus::after {
  background-color: var(--mc-text-nav);
}


/* --------------------------------------------------------------------------
   navigatie desktop
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) {

  #header-3 .navik-menu > ul > li > a {
    font-family: var(--mc-font-ui);
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--mc-text-nav);
    text-decoration: none;
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }

  /* linie animata la hover */
  #header-3 .navik-menu > ul > li > a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 14px; left: 15px; right: 15px;
    height: 1px;
    background: var(--mc-gold);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
  }

  #header-3 .navik-menu > ul > li:hover > a { color: var(--mc-gold); }
  #header-3 .navik-menu > ul > li:hover > a::after { -webkit-transform: scaleX(1); transform: scaleX(1); }
  #header-3 .navik-menu > ul > li.nav-btn > a::after { display: none; }

  /* buton telefon */
  #header-3 .navik-menu ul li.nav-btn > a {
    font-family: var(--mc-font-ui) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    color: var(--mc-gold) !important;
    border: 1px solid rgba(201, 169, 110, 0.45);
    border-radius: 3px;
    padding: 0 16px !important;
    height: 38px !important;
    line-height: 38px !important;
    margin: auto 0;
    display: inline-flex;
    align-items: center;
    -webkit-transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  #header-3 .navik-menu ul li.nav-btn:hover > a {
    color: var(--mc-dark) !important;
    background: var(--mc-gold);
    border-color: var(--mc-gold);
  }

  /* dropdown - fundal inchis */
  #header-3 .navik-menu li > ul {
    background: var(--mc-dark);
    border: 1px solid var(--mc-header-border);
    border-top: 2px solid var(--mc-gold);
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  }

  #header-3 .navik-menu ul ul li > a {
    font-family: var(--mc-font-ui) !important;
    font-size: 0.79rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0.03em;
    color: var(--mc-text-sub) !important;
    border-bottom: 1px solid rgba(74, 48, 32, 0.5);
    -webkit-transition: color 0.2s ease, padding-left 0.2s ease;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  #header-3 .navik-menu ul ul li:last-child > a { border-bottom: none; }

  #header-3 .navik-menu ul ul li:hover > a {
    color: var(--mc-gold) !important;
    background: rgba(201, 169, 110, 0.07) !important;
  }

  #header-3 .navik-menu ul ul li > a img.header-language-flag {
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 2px;
    opacity: 0.8;
    border-radius: 2px;
  }

}


/* navigatie mobil */
@media (max-width: 1199.98px) {

  #header-3.navik-header {
    background: var(--mc-header-bg);
  }

  .navik-menu ul li > a {
    font-family: var(--mc-font-ui);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mc-text-nav);
    border-bottom: 1px solid var(--mc-header-border);
    text-decoration: none;
    -webkit-transition: color 0.2s ease, background 0.2s ease;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .navik-menu ul li:hover > a,
  .navik-menu ul li > a:focus {
    color: var(--mc-gold);
    background: rgba(201, 169, 110, 0.06);
  }

  .navik-menu ul ul li > a {
    font-size: 0.79rem;
    font-weight: 500;
    text-transform: none;
    color: var(--mc-text-sub);
    background: rgba(0, 0, 0, 0.18);
    letter-spacing: 0.03em;
  }

  .navik-menu ul ul li:hover > a {
    color: var(--mc-gold);
    background: rgba(201, 169, 110, 0.08);
  }

  .navik-menu ul li.nav-btn > a {
    color: var(--mc-gold) !important;
    font-weight: 700 !important;
  }

  .lang-switch-flag {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--mc-header-border);
    border-radius: 4px;
    padding: 2px 7px;
    background: rgba(201, 169, 110, 0.07);
    -webkit-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
  }

  .lang-switch-flag:hover {
    border-color: var(--mc-gold);
  }

  .lang-switch-flag img { display: block; }

}

.header-language-flag {
  vertical-align: middle !important;
  margin-right: 7px;
  margin-bottom: 3px;
  border-radius: 2px;
}


/* --------------------------------------------------------------------------
   loader
   -------------------------------------------------------------------------- */

#loader-wrapper, #loader {
  background: var(--mc-dark);
}


/* ==========================================================================
   HERO SLIDER - 580px, elegant, centrat
   ========================================================================== */

#hero-1 {
  position: relative;
  overflow: hidden;
}

/* inaltime fixa moderata - nu full viewport */
#hero-1,
#hero-1 .slider,
#hero-1 .slider-wrapper {
  height: 580px !important;
}

@media (max-width: 991.98px) {
  #hero-1,
  #hero-1 .slider,
  #hero-1 .slider-wrapper {
    height: 420px !important;
  }
}

@media (max-width: 575.98px) {
  #hero-1,
  #hero-1 .slider,
  #hero-1 .slider-wrapper {
    height: 340px !important;
  }
}

/* overlay cald peste imagine */
#hero-1 .slider .slides li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 5, 0.55) 0%,
    rgba(20, 10, 5, 0.5) 50%,
    rgba(20, 10, 5, 0.65) 100%
  );
  z-index: 1;
}

/* caption */
#hero-1 .slider .slides li .caption {
  z-index: 2;
  text-align: center;
}

/* imagini acoperire completa */
#hero-1 .slider .slides li img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}


/* --------------------------------------------------------------------------
   text hero
   -------------------------------------------------------------------------- */

.mc-hero-eyebrow {
  display: block;
  font-family: var(--mc-font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mc-gold);
  margin-bottom: 16px;
  opacity: 0;
}

.caption-txt h2 {
  font-family: var(--mc-font-display) !important;
  font-size: clamp(1.9rem, 5vw, 3.6rem) !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4) !important;
  opacity: 0;
}

.mc-hero-desc {
  font-family: var(--mc-font-ui) !important;
  font-size: 0.95rem !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 500px;
  margin: 0 auto 28px !important;
  line-height: 1.7 !important;
  opacity: 0;
}

.mc-hero-cta {
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

@media (max-width: 575.98px) {
  .mc-hero-desc { display: none; }
  .caption-txt h2 { margin-bottom: 20px !important; }
}

/* animatii text - activate de clasa mc-text-in (adaugata de JS) */
.caption-txt.mc-text-in .mc-hero-eyebrow {
  -webkit-animation: mc-fadeInUp 0.6s ease both 0.1s;
  animation: mc-fadeInUp 0.6s ease both 0.1s;
}

.caption-txt.mc-text-in h2 {
  -webkit-animation: mc-fadeInUp 0.8s ease both 0.3s;
  animation: mc-fadeInUp 0.8s ease both 0.3s;
}

.caption-txt.mc-text-in .mc-hero-desc {
  -webkit-animation: mc-fadeInUp 0.8s ease both 0.55s;
  animation: mc-fadeInUp 0.8s ease both 0.55s;
}

.caption-txt.mc-text-in .mc-hero-cta {
  -webkit-animation: mc-fadeInUp 0.8s ease both 0.75s;
  animation: mc-fadeInUp 0.8s ease both 0.75s;
}

/* indicatori slider - gold */
.slider-wrapper .indicators .indicator-item {
  background-color: rgba(255, 255, 255, 0.35) !important;
}

.slider-wrapper .indicators .indicator-item.active {
  background-color: var(--mc-gold) !important;
}


/* ==========================================================================
   BUTOANE PREMIUM
   ========================================================================== */

.mc-btn-primary {
  display: inline-block;
  font-family: var(--mc-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mc-dark) !important;
  background: var(--mc-gold);
  border: 1px solid var(--mc-gold);
  border-radius: 3px;
  padding: 13px 26px;
  text-decoration: none !important;
  -webkit-transition: background 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.mc-btn-primary:hover {
  background: var(--mc-gold-hover);
  border-color: var(--mc-gold-hover);
  color: var(--mc-dark) !important;
}

.mc-btn-outline {
  display: inline-block;
  font-family: var(--mc-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  padding: 13px 26px;
  text-decoration: none !important;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.mc-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.mc-btn-gold {
  display: inline-block;
  font-family: var(--mc-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mc-dark) !important;
  background: var(--mc-gold);
  border: 1px solid var(--mc-gold);
  border-radius: 3px;
  padding: 13px 30px;
  text-decoration: none !important;
  -webkit-transition: background 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.mc-btn-gold:hover {
  background: var(--mc-gold-hover);
  border-color: var(--mc-gold-hover);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  color: var(--mc-dark) !important;
}


/* ==========================================================================
   FEATURES - fundal crem deschis, iconuri gold
   ========================================================================== */

.mc-features-section {
  background: var(--mc-cream);
  border-top: 1px solid var(--mc-border-soft);
  border-bottom: 1px solid var(--mc-border-soft);
}

.mc-feature-col {
  border-right: 1px solid var(--mc-border-soft);
}

.mc-feature-col:last-child {
  border-right: none;
}

@media (max-width: 767.98px) {
  .mc-feature-col:nth-child(even) { border-right: none; }
  .mc-feature-col:nth-child(n+3)  { border-top: 1px solid var(--mc-border-soft); }
}

.mc-feature-item {
  padding: 38px 24px 34px;
  text-align: center;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.mc-feature-item:hover {
  background: var(--mc-white);
}

.mc-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--mc-border-soft);
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--mc-white);
  -webkit-transition: border-color 0.3s ease, background 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.mc-feature-item:hover .mc-feature-icon {
  border-color: var(--mc-gold);
  background: var(--mc-gold-pale);
}

.mc-feature-icon i {
  font-size: 1rem;
  color: var(--mc-gold-dark);
}

.mc-feature-title {
  font-family: var(--mc-font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: var(--mc-espresso) !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}

.mc-feature-desc {
  font-family: var(--mc-font-ui);
  font-size: 0.77rem;
  color: var(--mc-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .mc-feature-item { padding: 26px 14px 22px; }
  .mc-feature-title { font-size: 0.85rem !important; }
}


/* ==========================================================================
   SECTIUNI MENIU - titluri
   ========================================================================== */

.menu-section .section-title h2,
.menu-section .section-title .h2-xl {
  font-family: var(--mc-font-display) !important;
  font-size: 2.1rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: var(--mc-espresso) !important;
  margin-bottom: 14px !important;
}

.mc-section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mc-gold), transparent);
  margin: 0 auto;
  opacity: 0.65;
}


/* ==========================================================================
   PRODUCT CARD - redesign cu inaltimi egale
   ========================================================================== */

/* coloana flexibila pentru inaltimi egale */
.mc-card-col {
  padding: 10px;
  display: -ms-flexbox;
  display: flex;
}

/* container card - full height */
.mc-product-card {
  background: var(--mc-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ede4d6;
  -webkit-box-shadow: 0 2px 12px rgba(44, 26, 14, 0.06);
  box-shadow: 0 2px 12px rgba(44, 26, 14, 0.06);
  -webkit-transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mc-product-card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 36px rgba(44, 26, 14, 0.13);
  box-shadow: 0 12px 36px rgba(44, 26, 14, 0.13);
}

/* imagine - inaltime fixa, fundalul este crem deschis (nu negru) */
.mc-card-img {
  position: relative;
  overflow: hidden;
  background: #f0e8da;
  height: 200px;
  flex-shrink: 0;
}

.mc-card-img > a {
  display: block;
  width: 100%;
  height: 100%;
}

.mc-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}

.mc-product-card:hover .mc-card-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* overlay cu zoom pe hover */
.mc-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0.38);
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.mc-product-card:hover .mc-card-overlay {
  opacity: 1;
}

.mc-zoom-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.92);
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mc-dark) !important;
  font-size: 1rem;
  text-decoration: none !important;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mc-zoom-link:hover {
  background: var(--mc-gold);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* zona text - creste pentru a umple spatiul ramas */
.mc-card-body {
  padding: 16px 16px 6px;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.mc-card-title {
  font-family: var(--mc-font-display) !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: var(--mc-espresso) !important;
  margin-bottom: 7px !important;
  line-height: 1.3 !important;
}

.mc-card-title a {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.mc-card-title a:hover {
  color: var(--mc-gold-dark) !important;
}

.mc-card-desc {
  font-family: var(--mc-font-ui);
  font-size: 0.77rem;
  color: var(--mc-text-light);
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* footer card - gramaj si pret */
.mc-card-footer {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 14px;
  border-top: 1px solid #ede4d6;
  margin-top: 12px;
}

.mc-card-weight {
  font-family: var(--mc-font-ui);
  font-size: 0.7rem;
  color: var(--mc-brown-light);
  font-weight: 500;
}

.mc-card-price {
  font-family: var(--mc-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--mc-gold-dark);
}

.mc-card-price-old {
  font-size: 0.76rem;
  font-style: normal;
  text-decoration: line-through;
  color: var(--mc-brown-light);
  margin-right: 6px;
}

@media (max-width: 575.98px) {
  .mc-card-col { padding: 6px; }
  .mc-card-img { height: 150px; }
  .mc-card-body { padding: 12px 12px 4px; }
  .mc-card-title { font-size: 0.88rem !important; }
  .mc-card-footer { padding: 8px 12px 12px; }
  .mc-card-desc { -webkit-line-clamp: 2; }
}


/* ==========================================================================
   ANIMATII LA SCROLL
   ========================================================================== */

[data-animate] {
  opacity: 0;
  -webkit-transform: translateY(18px);
  transform: translateY(18px);
  -webkit-transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].mc-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mc-feature-col:nth-child(1) { transition-delay: 0s; }
.mc-feature-col:nth-child(2) { transition-delay: 0.08s; }
.mc-feature-col:nth-child(3) { transition-delay: 0.16s; }
.mc-feature-col:nth-child(4) { transition-delay: 0.24s; }

.mc-card-col:nth-child(4n+1) { transition-delay: 0s; }
.mc-card-col:nth-child(4n+2) { transition-delay: 0.07s; }
.mc-card-col:nth-child(4n+3) { transition-delay: 0.14s; }
.mc-card-col:nth-child(4n+4) { transition-delay: 0.21s; }


/* ==========================================================================
   SECTIUNEA CTA / GUARANTEE - soft, cu overlay luminos
   ========================================================================== */

#banner-4.banner-section {
  position: relative;
}

.mc-cta-overlay {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 8, 3, 0.7) 0%,
    rgba(15, 8, 3, 0.62) 100%
  );
}

.mc-cta-eyebrow {
  display: block;
  font-family: var(--mc-font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mc-gold);
  margin-bottom: 16px;
}

.mc-cta-title {
  font-family: var(--mc-font-display) !important;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 18px;
}

.mc-cta-desc {
  font-family: var(--mc-font-ui);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .mc-cta-overlay { padding: 65px 0; }
}


/* ==========================================================================
   FOOTER - dark espresso pentru contrast
   ========================================================================== */

.mc-footer {
  background: var(--mc-footer-bg);
  border-top: 1px solid #4a3020;
}

.mc-footer-main {
  padding: 65px 0 35px;
}

.mc-footer-logo {
  max-height: 50px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.mc-footer-tagline {
  font-family: var(--mc-font-ui);
  font-size: 0.8rem;
  color: var(--mc-text-sub);
  line-height: 1.65;
  margin-bottom: 20px;
}

.mc-footer-social {
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.mc-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid #4a3020;
  border-radius: 50%;
  color: var(--mc-text-sub) !important;
  font-size: 0.82rem;
  text-decoration: none !important;
  -webkit-transition: border-color 0.25s ease, color 0.25s ease;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.mc-social-link:hover {
  border-color: var(--mc-gold);
  color: var(--mc-gold) !important;
}

.mc-footer-heading {
  font-family: var(--mc-font-display) !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #e8ddd1 !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid #4a3020;
}

.mc-footer-links {
  list-style: none;
  padding: 0; margin: 0;
}

.mc-footer-links li {
  margin-bottom: 8px;
}

.mc-footer-links li a {
  font-family: var(--mc-font-ui);
  font-size: 0.8rem;
  color: var(--mc-text-sub) !important;
  text-decoration: none !important;
  -webkit-transition: color 0.2s ease, padding-left 0.2s ease;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mc-footer-links li a:hover {
  color: var(--mc-gold) !important;
  padding-left: 4px;
}

.mc-footer-contacts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
}

.mc-footer-contact-row {
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.mc-contact-icon {
  color: var(--mc-gold);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 13px;
  text-align: center;
}

.mc-footer-contact-row span,
.mc-footer-contact-row a {
  font-family: var(--mc-font-ui);
  font-size: 0.8rem;
  color: var(--mc-text-sub) !important;
  text-decoration: none !important;
  line-height: 1.5;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.mc-footer-contact-row a:hover {
  color: var(--mc-gold) !important;
}

.mc-footer-bottom {
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid #4a3020;
  padding: 15px 0;
}

.mc-footer-copy,
.mc-footer-dev {
  font-family: var(--mc-font-ui);
  font-size: 0.71rem;
  color: rgba(196, 168, 130, 0.5);
  margin: 0;
  line-height: 1.6;
}

.mc-footer-dev a {
  color: rgba(196, 168, 130, 0.65) !important;
  text-decoration: none !important;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.mc-footer-dev a:hover {
  color: var(--mc-gold) !important;
}

.mb-50 { margin-bottom: 50px; }

@media (max-width: 767.98px) {
  .mc-footer-main { padding: 48px 0 18px; }
  .mc-footer-bottom { text-align: center; }
  .mc-footer-dev { text-align: center; margin-top: 4px; }
}


/* ==========================================================================
   PAGE HERO SECTION - pagini interioare (categorii)
   ========================================================================== */

.page-hero-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 5, 0.72) 0%,
    rgba(20, 10, 5, 0.55) 60%,
    rgba(20, 10, 5, 0.72) 100%
  );
  z-index: 1;
}

.page-hero-section > .container {
  position: relative;
  z-index: 2;
}

.page-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mc-gold), transparent);
  z-index: 3;
  opacity: 0.5;
}

.page-hero-section h2,
.page-hero-section .h2-xl {
  font-family: var(--mc-font-display) !important;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767.98px) {
  .page-hero-section { padding-top: 120px; padding-bottom: 65px; }
  .page-hero-section h2, .page-hero-section .h2-xl { font-size: 2rem; }
}


/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

#breadcrumb {
  margin-bottom: 16px;
  text-align: center;
}

.breadcrumb-nav {
  display: inline-block;
  margin: 0 auto;
}

.breadcrumb {
  padding: 0; margin-bottom: 0;
  background: transparent; border-radius: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap; flex-wrap: wrap;
  list-style: none;
  justify-content: center; align-items: center;
}

.breadcrumb-item a {
  font-family: var(--mc-font-ui);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mc-gold) !important;
  text-decoration: none; opacity: 0.9;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--mc-gold-hover) !important;
  opacity: 1;
}

.breadcrumb-item.active {
  font-family: var(--mc-font-ui);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #ffffff !important;
}

.breadcrumb-item + .breadcrumb-item { padding-left: 10px; }

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 10px;
  font-size: 0.6rem;
  color: var(--mc-gold);
  opacity: 0.6;
  content: "\2014";
  vertical-align: middle;
}


/* ==========================================================================
   INLOCUIRE YELLOW - gold
   ========================================================================== */

.yellow-color,
.yellow-color h2, .yellow-color h3, .yellow-color h4,
.yellow-color h5, .yellow-color h6, .yellow-color p,
.yellow-color a, .yellow-color li, .yellow-color i,
.yellow-color span {
  color: var(--mc-gold) !important;
}

.btn-yellow, .yellow-hover:hover {
  color: var(--mc-dark) !important;
  background-color: var(--mc-gold) !important;
  border-color: var(--mc-gold) !important;
}

.bg-yellow {
  background-color: var(--mc-gold) !important;
}


/* ==========================================================================
   KEYFRAMES
   ========================================================================== */

@-webkit-keyframes mc-fadeInUp {
  from { opacity: 0; -webkit-transform: translateY(22px); transform: translateY(22px); }
  to   { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes mc-fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
