/* استایل سفارشی سبد خرید سایت سدنا */

.sedna-cart-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sedna-cart-main-col {
    width: 75%;
}

.sedna-cart-side-col {
    width: 23%;
}

.sedna-cart-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.sedna-cart-table th,
.sedna-cart-table td {
    vertical-align: middle !important;
    text-align: center;
}

.sedna-cart-table .product-thumb img {
    display: block;
    margin: 0 auto;
    max-width: 80px;
    height: auto;
    object-fit: contain;
}

.sedna-cart-table input[type="number"] {
    width: 60px;
    text-align: center;
    padding: 4px 6px;
}

.sedna-cart-totals {
    width: 100%;
}

.sedna-cart-totals h3 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px; /* برابر با .sedna-cart-main-title */
    font-weight: bold;
    color: #222222;
}


.sedna-cart-summary {
    width: 100%;
}

.sedna-cart-summary td {
    font-weight: bold;
    text-align: right;
}

.sedna-cart-summary td:last-child {
    padding-right: 20px;
}

.checkout-container {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.checkout-button {
    padding: 1px 60px !important;
    font-size: 15px;
    border-radius: 40px;
    background-color: #1A365E;
    color: #fff !important;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

.checkout-button:hover {
    background-color: #26518C;
}

.sedna-cart-table td:last-child a {
    color: #E53935 !important;
    font-weight: bold;
    font-size: 20px;
}

.sedna-cart-main-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1px;
    text-align: center;
    color: #222222;
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
  .sedna-cart-wrapper {
    flex-direction: column;
  }

  .sedna-cart-main-col,
  .sedna-cart-side-col {
    width: 100%;
  }

  .sedna-cart-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .sedna-cart-table th:nth-child(1),
  .sedna-cart-table td:nth-child(1),
  .sedna-cart-table th:nth-child(2),
  .sedna-cart-table td:nth-child(2),
  .sedna-cart-table th:nth-child(4),
  .sedna-cart-table td:nth-child(4),
  .sedna-cart-table th:nth-child(7) {
    display: none;
  }

  .sedna-cart-summary td {
    font-size: 13px;
    padding: 6px 8px;
  }

  .checkout-button {
    padding: 2px 60px !important;
    font-size: 13px;
  }

  .sedna-cart-main-title {
    font-size: 13px;
  }

  .sedna-cart-totals h3 {
    font-size: 14px;
  }

  .sedna-cart-table th,
  .sedna-cart-table td {
    font-size: 13px;
    padding: 6px;
  }

  .sedna-cart-table .product-thumb img {
    max-width: 60px;
  }

  .sedna-cart-table td:nth-child(3),
  .sedna-cart-table th:nth-child(3) {
    white-space: normal !important;
    word-break: break-word;
    max-width: 180px;
  }
}

@media (max-width: 1024px) {
  .sedna-cart-wrapper {
    flex-direction: column;
  }

  .sedna-cart-main-col,
  .sedna-cart-side-col {
    width: 100%;
  }

  .sedna-cart-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .sedna-cart-table table {
    min-width: 700px;
  }
}
/* هم‌قد کردن تیتر "مجموع سبد خرید" با "اقلام سبد خرید" */
.sedna-cart-wrapper .sedna-cart-totals > h3{
  font-size:16px !important;   /* برابر با .sedna-cart-main-title */
  font-weight:700 !important;
  color:#222222 !important;
  line-height:1.6 !important;
  margin:0 0 1px !important;
  text-align:center !important;
}

/* موبایل هم هماهنگ بماند */
@media (max-width:768px){
  .sedna-cart-wrapper .sedna-cart-totals > h3{ font-size:13px !important; }
}
.sedna-cart-main-title,
.sedna-cart-totals > h3 {
    display: flex;
    align-items: center; /* تراز عمودی وسط */
    justify-content: center; /* وسط‌چین افقی */
    height: 40px; /* ارتفاع ثابت برای هر دو */
}
