
.mt-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1fr 360px;gap:22px;align-items:start}
@media (max-width:980px){.mt-grid{grid-template-columns:1fr}}
.mt-filterbar__row{display:flex;gap:18px;align-items:center;justify-content:space-between;margin:18px 0;flex-wrap:wrap;}
.mt-filterbar__left{display:flex;gap:12px;align-items:center;flex:1;min-width:320px;}
.mt-filterbar__right{display:flex;gap:12px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.mt-select,.mt-input{height:44px;border:2px solid #c24;border-radius:14px;padding:0 14px;outline:0;background:#fff;min-width:220px;max-width:100%;}
.mt-input{flex:1;min-width:260px;border-radius:12px;}
.mt-btn{padding: 10px 20px 10px 20px;
  border-radius: 5px 5px 5px 5px;
  background-color: #EA008A;
  color: #ffffff;
  gap: 10px;
display: flex;}
.mt-btn svg{fill:currentColor}
.mt-results{margin-top:10px}

/* card clickable like a link */
.mt-card{display:flex;justify-content:space-between;align-items:flex-start;padding:16px;border:1px solid #eee;border-radius:18px;margin-bottom:14px;background:#fff;gap:14px;text-decoration:none;color:inherit}
.mt-card:hover{border-color:#ddd;box-shadow:0 6px 18px rgba(0,0,0,.04)}
.mt-card__left{flex:1}
.mt-card__title{font-weight:800;color:#111;display:inline-block;margin-bottom:6px}
.mt-card__meta{display:flex;align-items:center;gap:10px;white-space:nowrap}
.mt-price{font-weight:900;color:#c24}
.mt-plus{width:34px;height:34px;border-radius:50%;border:0;background:#c24;color:#fff;font-size:18px;cursor:pointer;line-height:34px}
.mt-plus[disabled]{opacity:.45;cursor:not-allowed}
.mt-empty{padding:14px 10px;color:#666}
.mt-acfwrap{margin-top:2px}
.mt-acf{font-size:12px;line-height:1.3;color:#666}
.mt-acf__k{font-weight:800;color:#555}
.mt-acf__v{color:#666}
.mt-pagination{margin:10px 0 0}
.mt-pager{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.mt-pager__btn,.mt-pager__num{height:36px;padding:0 12px;border-radius:10px;border:1px solid #eee;background:#fff;cursor:pointer}
.mt-pager__btn[disabled]{opacity:.45;cursor:not-allowed}
.mt-pager__num.is-active{border-color:#c24;color:#c24;font-weight:900}
.mt-pager__dots{padding:0 4px;color:#888}
.mt-cartpanel{background:linear-gradient(180deg,#7b1b52,#5a1440);border-radius:18px;color:#fff;overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,.08)}
.mt-cartpanel__head{padding:14px 16px;font-weight:900}
.mt-cartpanel__body{background:#fff;color:#222;padding:10px 12px;min-height:140px}
.mt-cartpanel__footer{background:#fff;color:#222;padding:12px;border-top:1px solid #eee}
.mt-cartpanel__total{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;font-size:14px}
.mt-cartpanel__total strong{color:#c24;font-size:16px}
.mt-cartpanel__actions{display:flex;gap:10px}
.mt-cartpanel__checkout{flex:1;text-align:center;text-decoration:none;background:#c24;color:#fff;border-radius:12px;padding:10px 12px;font-weight:900}
.mt-cartpanel__print{width:110px;border:1px solid #c24;background:#fff;color:#c24;border-radius:12px;padding:10px 12px;font-weight:900;cursor:pointer}
.mt-cartitem{padding:10px 8px;border-bottom:1px solid #f0f0f0;display:flex;justify-content:space-between;gap:10px;align-items:center}
.mt-cartitem:last-child{border-bottom:none}
.mt-cartitem__name{font-weight:800;font-size:13px;line-height:1.2}
.mt-cartitem__meta{display:flex;align-items:center;gap:10px;white-space:nowrap}
.mt-cartitem__line{color:#c24;font-weight:900;font-size:13px}
.mt-trash{border:0;background:#7b1b52;color:#fff;width:30px;height:30px;border-radius:10px;cursor:pointer}
.mt-grid.is-loading .mt-results{opacity:.7;pointer-events:none}
.mt-grid.is-cart-loading .mt-cartpanel{opacity:.85;pointer-events:none}



/* საძიებო ზოლი და სელექტები */
.mt-filter-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.mt-search-wrapper {
    position: relative;
    flex: 1;
}

.mt-input {
    width: 100%;
    padding: 12px 25px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    background: #f9f9f9;
}

.mt-search-btn {
    position: absolute;
    right: -50px;
    top: 0;
    background: #e91e63; /* ვარდისფერი */
    border: none;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.mt-select {
    border: 2px solid #b00058; /* შინდისფერი ჩარჩო */
    border-radius: 15px;
    padding: 8px 20px;
    outline: none;
}

/* კალათის დიზაინი */
.mt-cartpanel {
    background: #fcfcfc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.mt-cartpanel__head {
    background: #8e1a4d;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
}

.mt-cartpanel__total {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #fff;
    margin: 10px;
    border-radius: 10px;
    color: #e91e63;
    font-weight: 700;
}

.mt-cartpanel__checkout {
    display: block;
    background: #d1127d;
    color: white;
    text-align: center;
    padding: 12px;
    margin: 0 15px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}


/* ბარათის ძირითადი სტილი */
.mt-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 25px 35px;
    border-radius: 30px; /* დიდი მომრგვალება */
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mt-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* მარცხენა მხარე (სათაური და მეტა მონაცემები) */
.mt-card__left {
    flex: 1;
}

.mt-card__title {
    font-weight: 700;
    font-size: 20px;
    color: #610b38; /* მუქი შინდისფერი */
    display: block;
    margin-bottom: 12px;
}

/* მეტა მონაცემები (ID, ქვეყანა, კატეგორია) */
.mt-acfwrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.mt-acf__item {
    font-size: 14px;
    color: #888;
    padding: 0 15px;
    border-right: 1px solid #ddd; /* ვერტიკალური ხაზები */
}

.mt-acf__item:first-child {
    padding-left: 0;
}

.mt-acf__item:last-child {
    border-right: none;
}

/* მარჯვენა მხარე (ფასი და ღილაკი) */
.mt-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding-left: 30px;
    border-left: 1px solid #eee; /* ვერტიკალური გამყოფი მარჯვნივ */
    min-width: 120px;
}

/* ფასის სტილი */
.mt-price {
    font-weight: 800;
    font-size: 18px;
    color: #d1127d; /* ვარდისფერი ფასი */
}

.mt-price .woocommerce-Price-currencySymbol {
    margin-left: 4px;
}

/* პლიუს ღილაკი */
.mt-plus {
    background: #8e7a8a; /* ნაცრისფერი/იასამნისფერი ტონი სურათიდან */
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mt-plus:hover {
    background: #610b38;
}

/* რესპონსივი მობილურისთვის */
@media (max-width: 600px) {
    .mt-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .mt-card__meta {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 15px;
        margin-top: 15px;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ბარათის ზოგადი სტილი */
.mt-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 25px 35px;
    border-radius: 35px; /* მომრგვალებული კუთხეები */
    border: 1px solid #eee;
    text-decoration: none;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
}

.mt-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mt-card__title {
    font-weight: 700;
    font-size: 19px;
    color: #5d0a33; /* მუქი შინდისფერი სათაური */
    display: block;
    margin-bottom: 8px;
}

/* ქვედა მონაცემების ზოლი */
.mt-acfwrap {
    display: flex;
    align-items: center;
}

.mt-acf__item {
    font-size: 14px;
    color: #999; /* ღია ნაცრისფერი ტექსტი */
    padding: 0 15px;
    position: relative;
}

.mt-acf__item:first-child { padding-left: 0; }

/* ვერტიკალური გამყოფი ხაზები 
.mt-acf__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #ddd;
} */

/* მარჯვენა მხარე (ფასი და ღილაკი) */
.mt-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-left: 30px;
    border-left: 1px solid #f0f0f0; /* ვერტიკალური ხაზი ფასამდე */
    min-width: 110px;
}

.mt-price {
    font-weight: 800;
    font-size: 18px;
    color: #d81b7d; /* ვარდისფერი ფასი */
}

/* პატარა მრგვალი პლიუს ღილაკი */
.mt-plus {
    background: #8e7a8a;
    color: #fff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   CART PANEL – FINAL FIX
   ჩასვი CSS-ის ბოლოს
========================= */

/* Panel */
.mt-cartpanel{
  background:#fff !important;
  border-radius:20px !important;
  overflow:hidden !important;
  box-shadow:0 5px 25px rgba(0,0,0,.05) !important;
  color:#222 !important;
}

/* Header */
.mt-cartpanel__head{
  background: linear-gradient(135deg,#8e1b57,#b72c74) !important;
  color:#fff !important;
  padding:16px 20px !important;
  font-size:18px !important;
  font-weight:700 !important;
}

/* Body */
.mt-cartpanel__body{
  background:#fff !important;
  color:#222 !important;
  padding:10px 20px !important;
  min-height:140px !important;
}

/* Items */
.mt-cartitem{
  padding:14px 0 !important;
  border-bottom:1px solid #eee !important;
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  gap:14px !important;
}

.mt-cartitem:last-child{border-bottom:none !important;}

.mt-cartitem__name{
  font-size:15px !important;
  font-weight:600 !important;
  color:#7a1448 !important;
  line-height:1.2 !important;
}

/* Price + remove row */
.mt-cartitem__meta{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  white-space:nowrap !important;
}

.mt-cartitem__line{
  color:#e6007a !important;
  font-weight:700 !important;
  font-size:14px !important;
}

/* Remove button (round) */
.mt-trash{
  width:34px !important;
  height:34px !important;
  border-radius:50% !important;
  border:none !important;
  background:#a0205c !important;
  color:#fff !important;
  cursor:pointer !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:16px !important;
  transition:background .2s ease, transform .15s ease !important;
}

.mt-trash:hover{
  background:#7a1448 !important;
  transform:scale(1.05) !important;
}

/* Footer */
.mt-cartpanel__footer{
  background:#fff !important;
  color:#222 !important;
  padding:16px 20px 20px !important;
  border-top:1px solid #eee !important;
}

/* Total */
.mt-cartpanel__total{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  margin:0 0 14px !important;
  padding:0 !important;
  background:transparent !important;
  border-radius:0 !important;
  font-size:16px !important;
  font-weight:600 !important;
}

.mt-cartpanel__total span{
  color:#7a1448 !important;
}

.mt-cartpanel__total strong{
  color:#e6007a !important;
  font-size:16px !important;
  font-weight:800 !important;
}

/* Actions */
.mt-cartpanel__actions{
  display:flex !important;
  gap:10px !important;
}

.mt-cartpanel__checkout{
  flex:1 !important;
  display:block !important;
  text-align:center !important;
  text-decoration:none !important;
  background:#8e1b57 !important;
  color:#fff !important;
  border-radius:12px !important;
  padding:10px 14px !important;
  font-weight:700 !important;
  margin:0 !important;
}

.mt-cartpanel__checkout:hover{
  background:#7a1448 !important;
}

.mt-cartpanel__print{
  flex:1 !important;               /* თუ გინდა 110px იყოს, აქ შეცვალე */
  width:auto !important;            /* ან წაშალე და width:110px დატოვე */
  border:none !important;
  background:#f3f3f3 !important;
  color:#444 !important;
  border-radius:12px !important;
  padding:10px 14px !important;
  font-weight:700 !important;
  cursor:pointer !important;
}

.mt-cartpanel__print:hover{
  background:#e8e8e8 !important;
}



/* scope only our shortcode */
.mt-uc-single { max-width: 920px; margin: 0 auto; }

.mt-uc-single .uc-items-wrapper { list-style: none; margin: 0; padding: 0; }
.mt-uc-single .product-items { overflow: visible !important; }

.mt-uc-single .mt-uc-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
 
 
    padding: 20px 20px 20px 20px;
    border-radius: 25px;
    border: 2px solid #EFE8ED;


}

.mt-uc-single  .product-text-name {
    font-weight: 600;
    color: #5B103E;
    margin-top: 10px;
        display: block;
}

.mt-uc-single .uc-prices{
 display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    flex-direction: column;
}


.uc-buttons a {  background-color: var(--e-global-color-65fec19);
    font-size: 25px;
    text-decoration: none;
    line-height: 0px;
    letter-spacing: 0px;
    word-spacing: 0px;
    padding: 5px 5px 5px 5px;
    color: #FFFFFF;
    border-radius: 31px;
    display:block }

   

.uc-buttons a:hover {
    background-color: #EA008A;
}

.mt-uc-single .small-info-kvlevebi{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  opacity:.75;
  margin-top:8px;
}


    .uc_regular_price--single {
            display:block !important;
            font-family: "FiraGO-600", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #EA008A;
        }
        
        .small-info-kvlevebi span {
    padding: 15px;
    border-left: 2px solid #EFE8ED;
}
        .small-info-kvlevebi {
     
    color: #8C8089;
    float: left;
    margin-top: 25px;
        }
        .product-items .product-text {

    padding: 5px;
            display: flex
;
    align-items: baseline;
    /* gap: 10px; */
    justify-content: space-between;
}
        .uc-prices {
    margin-top: 10px;
    text-align: center;
    padding: 5px;
    border-left: 2px solid #EFE8ED;
            width:100px;
}


/* ============================================================
   RESPONSIVE — mobile & tablet
   ============================================================ */

/* ---- კარტი მობილურზე ---- */
@media (max-width: 600px) {

  /* filter grid — ერთ სვეტად */
  .mt-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* filterbar — ვერტიკალურად */
  .mt-filterbar__row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .mt-filterbar__left,
  .mt-filterbar__right {
    flex-direction: column;
    min-width: unset;
    width: 100%;
  }
  .mt-select,
  .mt-input {
    width: 100% !important;
    min-width: 350px !important;
    box-sizing: border-box;
  }
  .mt-btn {
    width: 100%;
    justify-content: center;
  }

  /* კარტი — ვერტიკალური layout */
  .mt-card {
    flex-direction: column;
    padding: 16px !important;
    border-radius: 18px !important;
    gap: 10px;
  }
  .mt-card__left { width: 100%; }
  .mt-card__meta {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-left: none !important;
    border-top: 1px solid #f0f0f0;
    padding-left: 0 !important;
    padding-top: 10px;
    min-width: unset !important;
  }

  /* cart panel — სრული სიგანე ქვემოთ */
  .mt-right { width: 100%; }
  .mt-cartpanel { border-radius: 14px !important; }

  /* single product layout */
  .mt-single-layout {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .mt-single-grid {
    position: static !important;
  }
  .mt-single-page {
    padding: 0 12px 40px !important;
  }
}

/* ---- ტაბლეტი (601px – 980px) ---- */
@media (min-width: 601px) and (max-width: 980px) {

  .mt-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .mt-filterbar__row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .mt-filterbar__left {
    flex: 1 1 100%;
    min-width: unset;
  }
  .mt-filterbar__right {
    flex: 1 1 auto;
  }

  .mt-card {
    padding: 18px 22px !important;
  }
  .mt-card__meta {
    min-width: 100px !important;
  }

  .mt-single-layout {
    grid-template-columns: 1fr !important;
  }
  .mt-single-grid {
    position: static !important;
  }

  /* cart panel ტაბლეტზე — ქვემოთ, სრული სიგანე */
  .mt-cartpanel {
    max-width: 480px;
  }
}

/* ---- ACF fields მობილურზე ---- */
@media (max-width: 600px) {
  .mt-acfwrap {
    flex-wrap: wrap;
    gap: 4px;
  }
  .mt-acf__item {
    padding: 0 8px !important;
    font-size: 12px;
  }
}


/* ============================================================
   SINGLE PRODUCT PAGE  –  mt-single-*
   ============================================================ */

.mt-single-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 60px;
  margin-top: 25px;
}

.mt-single-layout {
    position: relative;
}

.mt-back-btn-wrap {
    position: absolute;
    left: -70px;
    top: 0;
    height: 100%;
}

.mt-back-btn {
    position: sticky;
    top: 23vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #7a2960;
    color: #7a2960;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mt-back-btn:hover {
    background: #7a2960;
    color: #fff;
} color: #fff;
 
.mt-back-btn svg   { flex-shrink: 0; }

/* 2-სვეტი */
.mt-single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.mt-single-card { margin-bottom: 0 !important; }

/* sections */
.mt-single-section { margin-top: 28px; }
.mt-single-section__title {
  font-size: 25px;
  font-weight: 700;
  color: #EA008A;
  text-decoration: underline;
  margin: 0 0 10px;
  display: block;
}


/*
.preparation-block {
    display: inline-flex !important;
} */

.mt-single-section__body.mt-description {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}
.mt-single-section__body.mt-description ul,
.mt-single-section__body.mt-description ol { padding-left: 22px; margin: 8px 0; }
.mt-single-section__body.mt-description li { margin-bottom: 4px; }

/* PDF */
.mt-single-section--pdf { display: flex; align-items: center; gap: 10px; }
.mt-single-section--pdf .mt-single-section__title { margin: 0; }
.mt-pdf-link {
     display: inline-flex;
    /* justify-content: flex-start; */
    height: auto;
    border-radius: 10px;
    background: #f6eaf2;
    color: #a52668;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
    /* margin-left: 15px; */
    padding: 10px 15px;
    font-weight: 600;
    /* flex-direction: row; */
    /* flex-wrap: wrap; */
    align-items: center;
   /* max-width: 200px; */
   
    text-align: center;
        vertical-align: baseline;
}

.mt-pdf-link span {
    display: block;
    padding-bottom: 3px;
}
.mt-pdf-link:hover { background: #EA008A; color: #fff; }

/* cart wrapper sticky */
.mt-single-grid {
  display: block !important;
  position: sticky;
  z-index: 1;
  width: 100%;

}

/* cart body min-height */
.mt-cartpanel__body {
  min-height: 220px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
}
.mt-cartpanel__body .mt-empty {
  text-align: center;
  color: #aaa;
  font-size: 14px;
  padding: 20px;
  width: 100%;
}
.mt-cartpanel__body .mt-cartitem:first-child { padding-top: 4px; }

/* is-in-cart */
.mt-plus.is-in-cart {
  background: #c8e6c9 !important;
  color: #2e7d32 !important;
  cursor: not-allowed;
  opacity: 0.8;
}

/* z-index fix — dropdown მენიუ cart-ის თავზე */
.mt-single-grid { z-index: 1; position: relative; }


/* Autocomplete dropdown */
.mt-autocomplete-wrap { position: relative; }

.mt-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
}

.mt-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: background .15s;
}

.mt-suggestion-item:hover,
.mt-suggestion-item.is-active { background: #f4f6f9; }

.mt-sug-title mark {
    background: none;
    color: inherit;
    font-weight: 700;
}

.mt-sug-sku {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}


.mt-cartpanel__print {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mt-cartpanel__print svg {
    flex-shrink: 0;
    position: static;
    vertical-align: middle;
}