body {
  overflow-x: hidden;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: flex-start;
}

.cart-layout  {
  min-width: 0;
}

.checkout-card,
.panel {
  min-width: 0;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table th,
.table td {
  padding: 14px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 228, 194, 0.12);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-item > div:last-child {
  min-width: 0;
  flex: 1 1 auto;
}

.cart-thumb {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(112, 70, 40, 0.36), rgba(32, 21, 14, 0.2));
  border: 1px solid rgba(255, 228, 194, 0.12);
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-qty-input {
  width: 84px;
  max-width: 100%;
  min-width: 0;
  text-align: center;
}

.cart-remove {
  width: 100%;
  max-width: 140px;
  white-space: normal;
}

.cart-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cart-actions .button,
.cart-actions button {
  min-width: 0;
}

@media (max-width: 980px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 24px);
  }

  .table,
  .table thead,
  .table tbody,
  .table tr,
  .table th,
  .table td {
    display: block;
    width: 100%;
  }

  .table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .table tr {
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 228, 194, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
  }

  .table td {
    border: 0;
    padding: 8px 0;
  }

  .table td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: #c7b29a;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .cart-item {
    align-items: flex-start;
  }

  .cart-thumb {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .cart-remove {
    max-width: none;
  }

  .cart-actions {
    flex-direction: column;
  }

  .cart-actions .button,
  .cart-actions button {
    width: 100%;
    text-align: center;
  }
}
.hero-video{
    display:block;
    width:50%;
    max-width:220px;
    height:auto;
    max-height:100px;
    object-fit:contain;
    border-radius:16px;
    margin:18px 0;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

