.elementor-3566 .elementor-element.elementor-element-be0bd00{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-215874d *//* =====================================================
   ELEMENTSKIT MEGA MENU CSS — Custom Rigid Boxes
   FIX: Full-height vertical borders (top to bottom)
   Paste in: Appearance > Customize > Additional CSS
   ===================================================== */

/* ── Reset ── */
.crb-mega,
.crb-mega * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

/* ── Outer wrapper ── */
.crb-mega {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top: 3px solid #550000;
  width: 100%;
}

/* ── Columns container: grid + gap trick for full-height borders ── */
.crb-cols-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #ddd5c8; /* this color IS the border */
  border: 1px solid #ddd5c8;
  gap: 0 1px;                /* 1px gap reveals background = border */
  flex: 1 1 auto;
}

/* ── Each column — white bg covers the grid background except the gap ── */
.crb-col {
  background: #fff;
  min-width: 0;
}

/* ── Column heading ── */
.crb-col-title {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:#550000 !important;
 padding: 10px 0 10px 5px;
  border-bottom: 1px solid #ddd5c8;
  display: block;
}

/* ── Menu item ── */
.crb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-bottom: 6px;
  color: inherit;
  text-decoration: none !important;
}
.crb-item:hover {
  background: #f7f1ea;
  text-decoration: none !important;
  transition: 0.5s !important;
}
.crb-item:hover .crb-name { color: #8b1a2b; }

/* ── Thumbnail ── */
.crb-thumb {
  position: relative;
  width: 60px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #e0d5c8;
  overflow: hidden;
  background: #f3ede5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Text ── */
.crb-text { display: flex; flex-direction: column; min-width: 0; }
.crb-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  transition: color 0.15s;
  white-space: normal;
}
.crb-sub {
  font-size: 12px;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.3;
}
.crb-text-active .crb-name{
  color: #550000;
  font-size: 20px;
  font-weight: 700;
}
/* TABLET ≤ 1024px */
@media (max-width: 1024px) {
  .crb-mega { border-top-width: 2px; }
  .crb-cols-wrap {
    grid-template-columns: 1fr;
    gap: 1px 0;
  }
  .crb-col { padding: 12px 14px 14px; }
  .crb-col-title { font-size: 11px !important; margin-bottom: 8px !important; }
  .crb-item { padding: 7px 6px; gap: 10px; }
  .crb-thumb { width: 50px; height: 47px; }
  .crb-footer { flex-direction: column; align-items: flex-start; gap: 10px; padding: 10px 14px 14px; }
}

/* MOBILE ≤ 767px */
@media (max-width: 767px) {
  .crb-col { padding: 10px 12px 12px; }
  .crb-col-title { font-size: 10px !important; letter-spacing: 0.08em; }
  .crb-item { padding: 6px 4px; gap: 9px; margin-bottom: 1px; }
  .crb-thumb { width: 45px; height: 40px; }
  .crb-name  { font-size: 12.5px; }
  .crb-sub   { font-size: 10.5px; }
}/* End custom CSS */