  /* ── OVERLAY ── */
  .cart-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 30px 0;
    z-index: 999;
    visibility: hidden;
  }
 
  .cart-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 999;
}

  /* ── CLOSE BTN ── */
  .cart-modal-unique-close {
    position: fixed;
    top: 16px;
    right: calc(50% - 238px);
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f1f1;
    color: #333;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
  }
  .cart-modal-unique-close:hover { background: #e0e0e0; }
 
  /* ── MODAL CARD ── */
  .cart-modal-unique {
    background: #fff;
    width: 500px;
    max-width: 96vw;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    z-index: 900;
  }
 
  /* ── HEADER ── */
  .cart-modal-unique-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e8e8e8;
  }
  .cart-modal-unique-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.3px;
  }
 
  /* ── BODY ── */
  .cart-modal-unique-body {
    padding: 20px 24px 24px;
  }
 
  /* ── BASKET (product rows) ── */
  .cart-modal-basket {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 12px;
    padding-bottom: 4px;
  }
 
  .cart-product-wrapper {
    display: grid;
    grid-template-columns: 60px 1fr 90px 55px 28px;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid #e8e8e8;
  }
 
  .cart-product-wrapper:first-child { border-top: none; }
 
  .cart-img, .cart-product-wrapper img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }
 
  .cart-product {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .cart-product-header {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
  }
  .cart-product-subtitle {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
  }
 
  .cart-product-quanty {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
  }
  .cart-product-quanty button {
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #333;
  }
  .cart-product-quanty button:hover { background: #f5f5f5; }
  .cart-product-quanty .qty {
    font-size: 15px;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
  }
 
  .cart-product-total {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
    white-space: nowrap;
  }
 
  .cart-product-trash {
    cursor: pointer;
    color: #bbb;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    transition: color 0.15s;
  }
  .cart-product-trash:hover { color: #333; }
 
  /* ── TOTALS ── */
  .cart-total {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    padding: 10px 0 18px;
    color: #1a1a1a;
  }
  .cart-total span { font-weight: 700; }
 
  /* ── FIELDS ── */
  .cart-modal-unique-field {
    margin-bottom: 16px;
  }
  .cart-modal-unique-field label,
  .cart-modal-unique-field lable {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
  }
 
  .cart-modal-unique-field input[type="text"],
  .cart-modal-unique-field input[type="email"],
  .cart-modal-unique-field input[type="tel"],
  .cart-modal-unique-field select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
    color: #999;
    outline: none;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
  }
 
  .cart-modal-unique-field input:focus,
  .cart-modal-unique-field select:focus {
    border-color: #888;
    color: #1a1a1a;
  }
 
  /* select arrow */
  .select-wrapper {
    position: relative;
  }
  .select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
    font-size: 14px;
  }
  .select-wrapper select { padding-right: 34px; color: #1a1a1a; }
 
  /* ── TOOLTIP ── */
  .cart-tooltip {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 7px;
    line-height: 1.4;
  }
 
  /* ── PHONE WRAPPER ── */
  .cart-modal-unique-phone-wrapper {
    display: flex;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
  /*  overflow: hidden; */
  }
  .cart-modal-unique-phone-wrapper input[type="tel"] {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
  }
  .cart-modal-unique-phone-wrapper input[type="tel"]:focus { border-color: transparent; }
 
  /* ── COUNTRY SELECT (phone) ── */
  .cart-modal-unique-country-select {
    position: relative;
    cursor: pointer;
    min-width: 90px;
    background: #fff;
    border-right: 1px solid #d0d0d0;
    flex-shrink: 0;
    z-index: 10;
  }
  .cart-modal-unique-country-select .cart-selected {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 13px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .cart-modal-unique-country-select .flag {
    font-family: "Noto Color Emoji","Apple Color Emoji","Segoe UI Emoji",sans-serif;
    font-size: 18px;
  }
  .cart-modal-unique-country-select .code {
    font-size: 13px;
    color: #333;
  }
  .cart-modal-unique-country-select .dropdown-cart {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    display: none;
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  .cart-modal-unique-country-select.open .dropdown-cart { display: block; }

  .cart-modal-unique-country-select .option {
    padding: 9px 12px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cart-modal-unique-country-select .option:hover { background: #f5f5f5; }
 
  /* ── PAYMENT OPTIONS ── */
  .cart-payment-choose {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
 
  .cart-modal-unique-field input[type="radio"] {
    width: auto;
    padding: 0;
    border: none;
    margin-right: 8px;
    accent-color: #000;
    cursor: pointer;
  }
  .cart-modal-unique-field label[for] {
    display: inline;
    font-size: 14px;
    font-weight: 400;
    color: #333;
  }
  /* radio row */
  .cart-modal-unique-field:has(input[type="radio"]) {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
 
  /* ── SUBMIT ── */
  .cart-modal-unique-submit {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 0.2px;
    font-family: inherit;
    transition: background 0.15s;
  }
  .cart-modal-unique-submit:hover { background: #222; }
 
  /* ── FOOTER ── */
  .cart-modal-unique-footer {
    padding: 16px 24px;
    background: #f9f9f9;
    font-size: 12.5px;
    color: #666;
    text-align: center;
    border-top: 1px solid #eee;
    line-height: 1.6;
  }
  .cart-modal-unique-footer a {
    color: #0066cc;
    text-decoration: underline;
  }

  @media (max-width: 480px) {
  .cart-modal-unique {
    width: 420px;
  }
  }

    .crt-btn {
    position: fixed;
    display: block;
    top: 10%;
    right: 10%;
    z-index: 10;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
  background-color: hsla(0, 0%, 100%, .8);
    border-radius: 50px;
    border: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    cursor: pointer;
    outline: none;
    transition: background 0.15s;
    flex-shrink: 0;
  }
 
  .crt-btn:hover {
    background: #e8e8e8;
  }
 
  .crt-btn svg {
    width: 46px;
    height: 46px;
  }

 
  .crt-badge {
    position: absolute;
    bottom: -6px;
    right: -4px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    pointer-events: none;
    line-height: 1;
  }
 

  .crt-badge[data-hidden="true"] {
    display: none;
  }
 
  /* Tooltip */
  .crt-tooltip {
    position: absolute;
   /* bottom: calc(100% + 10px); */
    right: 150%;
  /*  transform: translateX(-50%); */
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-family: system-ui, -apple-system, sans-serif;
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 10;
  }
 /*
  .crt-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
  }
 */
  .crt-btn:hover .crt-tooltip {
    opacity: 1;
  }
 
  .crt-btn {

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.crt-btn.show {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.crt-badge[data-hidden="true"] {

    display: none;
}

  /* Mobile */
  @media (max-width: 480px) {
    .crt-btn {
      width: 54px;
      height: 54px;
    }
    .crt-btn svg {
      width: 24px;
      height: 24px;
    }
    .crt-badge {
      min-width: 18px;
      height: 18px;
      font-size: 10px;
      top: 4px;
      right: 4px;
    }
    .crt-tooltip {
      font-size: 12px;
      padding: 6px 10px;
    }
  }