@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900|Rubik:300,400,500,700,900');
body {
 font-family: 'Roboto','Arial',sans-serif;
 font-size: 14px;
 font-weight: 400;
 background: #FFFFFF;
 color: #000000;
}
.breadcrumb {
    background: #fff;
}
a {
    color: #505762;
    text-decoration: none;
}
a:hover {
    color: #505762;
    text-decoration: none;
}


   /* When the radio button is checked, add a green background */
    input[type=radio] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 50%;
        width: 1rem;
        height: 1rem;
        transition: 0.2s all linear;
        position: relative;
        top: 4px;
    }

    input[type=radio]:checked {
       background: #008053;
   }

   input[type="radio"]:focus {
    outline: 0px;
}

[type=radio]:checked::after {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
[type=radio]::after {
    content: "";
    color: transparent;
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    border: 0;
    background-color: transparent;
    background-size: contain;
    box-shadow: inset 0 0 0 1px #ccd3d8;
}

/* Basic styling */

[type=checkbox] {
  width: 1rem;
  height: 1rem;
  color: #008053;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: background 300ms;
  cursor: pointer;
}


/* Pseudo element for check styling */

[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}


/* Checked */

[type=checkbox]:checked {
  background-color: currentcolor;
}

[type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}


/* Disabled */

[type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}


/* IE */

[type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

[type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
label.cart-label {
    font-size: 12px;
    color: #3c3c3c;
}
.cart-tite {
    color: #342d2d;
    font-size: 17px;
}
.cart-p {
    color: #4f5058;
}
.side{
    padding: 20px;
}
.left-header .breadcrumb {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #6c6868;
    border-bottom: 1px solid #ddd;
}
.breadcrumb .active
{
    color: #000;
}
.success-box
{
    padding: 10px;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    margin-top: 30px;
    margin-bottom: 20px;
}

.left-side
{
 border-right: 0.2px solid #e5e7eb;
}
.right-side{
    background-color: #f3f4f6;
}
.row.cart-split {
    min-height: 100vh;
}
.cart-input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px;
}
input.cart-input:focus{
    border:1px solid #0065b5;
}
textarea.cart-input:focus {
    border:1px solid #0065b5;
}

.cart-input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #c9cdd1;
    outline: 0;
    box-shadow: none;
}
.hidden
{
    display: none;
}
.bill_business.show
{
    display: flex;
}


@media screen and (min-width: 800px) {
.cart-product {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px;
  }
}
@media screen and (max-width: 800px) {
  .cart-product {
    display: grid;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px;
  }
}

.product-info{
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.product-info .product-img
{
    width: 80px;
}

ul#pills-tab {
    background: #f3f4f6;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #000000;
    border-radius: 33px;
}
a.nav-link:hover {
    border-radius: 0.25rem;
    border-radius: 33px;
    color: #fff;
    background-color: #000000;
}
li.nav-item:hover {
    border-radius: 33px;
}

.btn-cart {
    background: #008053;
    color: #fff;
    font-size: large;
    border-radius: 4px;
}
.cart-fixed {
    position: fixed;
    z-index: 1030;
}
.variant-yes {
    font-size: 12px;
    font-weight: 600;
    color: #0a0101;
}
a.cart-delete {
    color: #fff;
    background: #222;
    padding: 3px;
    border-radius: 33px;
}
img.cart-img {
    border-radius: 33px;
    height: 50px;
    width: 50px;
    border: 2px solid #d9d9d9;
}
.cart-product-lft {
    float: right!important;
    display: flex;
    gap: 16px;
}


.cart-products-white {
    top: 20px;
    z-index: inherit;
    position: sticky;
}
input.cart-coupon {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 6px;
    outline: none;
}
input.cart-coupon:focus{
    border:1px solid #000000;
}
button.btn.btn-coupon {
    background: #000;
    color: #fff;
    padding: 4px;
    border-radius: 0px;
}
button.adjust-quantity {
    background: #fff;
    border: none;
    outline: none;
    color: #748194;
    margin: 0;
    border-radius: 3px;
}
select.adjust-specific-quantity {
    border: none;
    margin: 0;
    outline: none;
    color: #505762;
}
.product-actions {
    border: 1px solid #ddd;
    border-radius: 3px;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.cart-footer {
    font-size: 0.75rem;
    color: var(--cart-muted, #585858);
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0 4px;
}
.cart-footer::before {
    content: "";
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-color: var(--cart-accent, #0f766e);
    opacity: 0.75;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}
input.btn.btn-cart:hover {
    background: #000;
    color: #fff;
}
.cart-tite-two {
    color: #342d2d;
    font-size: 17px;
    font-weight: 600;
}
label.cart-select-pay {
    background: #f9f9f9;
    border: 1px solid #ddd;
    display: flex;
    border-radius: 8px;
}
h3.cart-select-title {
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}
.select-ibans {
    background: #f3f4f6;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.cart-suct {
    padding: 40px;
    border: 1px solid #ddd;
    text-align: center;
}
button.remove-coupon-code {
    float: right;
    background: #df1d1d;
    color: #fff;
    border-radius: 30px;
    height: 30px;
    width: 30px;
    border: none;
    outline: none;
}
.cart-modal {
    border-radius: 0px;
    border: 1px solid #ddd;
}
.cart-modal-title {
    background: #f3f4f6;
}
.cart-modal-footer {
    background: #f3f4f6;
}
button.btn-footer-modal {
    background: #fff;
    outline: none;
    border: 1px solid #ddd;
}
button.close {
    border: none;
    outline: none;
}

.accordion__item__header {
    background-color: #ffffff;
    padding: 15px;
    cursor: pointer;
    position: relative;
    color: #0e0e0e;
    font-family: Arial;
    font-weight: 400;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
}
.accordion__item__header::before {
    height: 15px;
    width: 15px;
    content: "";
    position: absolute;
    right: 15px;
    top: 15px;
    transition: 0.5s all;
    transform: rotate(45deg);
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}
.accordion__item__header.active {
    background-color: #ffffff;
    color: #000;
    transition: 0.4s;
}
.accordion__item__header.active::before {
    transform: rotate(-135deg);
    top: 23px;
}
.accordion__item__content {
    overflow-y: hidden;
    padding: 0;
    display: none;
    background: #f3f4f6;
    padding: 10px;
    border-radius: 6px;
    margin: 10px;
}
.price-mobile {
    float: right;
    margin-right: 10%;
}

/* ===== Cart chrome: brand, steps, empty / status ===== */
.cart-brand {
    margin-bottom: 18px;
}
.cart-brand__link {
    display: inline-flex;
    align-items: center;
}
.cart-brand__logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.cart-steps {
    margin: 8px 0 24px;
}
.cart-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 420px;
}
.cart-steps__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cart-muted, #6b7280);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
.cart-steps__marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--cart-border, #e5e7eb);
    background: #fff;
    color: var(--cart-muted, #6b7280);
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.cart-steps__item.is-active .cart-steps__marker {
    background: var(--cart-accent, #0f766e);
    border-color: var(--cart-accent, #0f766e);
    color: var(--cart-accent-text, #fff);
}
.cart-steps__item.is-active .cart-steps__label {
    color: var(--cart-text, #111827);
    font-weight: 600;
}
.cart-steps__item.is-done .cart-steps__marker {
    background: var(--cart-accent-soft, #ecfdf5);
    border-color: var(--cart-accent, #0f766e);
    color: var(--cart-accent, #0f766e);
}
.cart-steps__item.is-done .cart-steps__label {
    color: var(--cart-text, #111827);
}
.cart-steps__connector {
    flex: 1;
    height: 2px;
    min-width: 24px;
    margin: 0 10px;
    background: var(--cart-border, #e5e7eb);
    border-radius: 2px;
}
.cart-steps__connector.is-done {
    background: var(--cart-accent, #0f766e);
}

.cart-status-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, var(--cart-accent-soft, #ecfdf5), transparent 60%),
        linear-gradient(180deg, #fafbfc 0%, #f3f4f6 100%);
    display: flex;
    justify-content: center;
    padding: 28px 16px 40px;
}
.cart-status-page__inner {
    width: 100%;
    max-width: 560px;
}
.cart-status-page__top {
    background: #fff;
    border: 1px solid var(--cart-border, #e5e7eb);
    border-radius: 16px;
    padding: 20px 22px 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.cart-empty {
    background: #fff;
    border: 1px solid var(--cart-border, #e5e7eb);
    border-radius: 16px;
    padding: 48px 28px 40px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
    animation: cart-empty-in .45s ease both;
}
@keyframes cart-empty-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.cart-empty__visual {
    margin-bottom: 20px;
}
.cart-empty__icon {
    width: 112px;
    height: 112px;
    display: inline-block;
}
.cart-empty__title {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cart-text, #111827);
    letter-spacing: -0.02em;
}
.cart-empty__text {
    margin: 0 auto 28px;
    max-width: 360px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--cart-muted, #6b7280);
}
.cart-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.cart-empty__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    background: var(--cart-accent, #0f766e);
    color: var(--cart-accent-text, #fff) !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1.5px solid var(--cart-accent, #0f766e);
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.cart-empty__cta:hover {
    background: var(--cart-accent-hover, #0d9488);
    border-color: var(--cart-accent-hover, #0d9488);
    color: var(--cart-accent-text, #fff) !important;
    transform: translateY(-1px);
}
.cart-empty__cta--ghost {
    background: #fff;
    color: var(--cart-text, #111827) !important;
    border-color: var(--cart-border, #e5e7eb);
}
.cart-empty__order-code {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--cart-muted, #6b7280);
}
.cart-empty__order-code strong {
    color: var(--cart-text, #111827);
}
.completed-iban {
    text-align: left;
    margin: 8px auto 24px;
    max-width: 440px;
    background: #f8fafc;
    border: 1px solid var(--cart-border, #e5e7eb);
    border-radius: 14px;
    padding: 16px;
}
.completed-iban__head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}
.completed-iban__badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cart-accent, #0f766e);
    background: var(--cart-accent-soft, #ecfdf5);
    padding: 3px 8px;
    border-radius: 999px;
}
.completed-iban__bank {
    font-size: 1.05rem;
    color: var(--cart-text, #111827);
}
.completed-iban__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.completed-iban__row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eef2f7;
}
.completed-iban__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}
.completed-iban__value {
    font-size: 13.5px;
    color: #111827;
    word-break: break-word;
}
.completed-iban__value--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 700;
}
.completed-iban__actions {
    margin-top: 14px;
    text-align: center;
}
.completed-iban__actions .cart-empty__cta {
    width: 100%;
}
.completed-iban__hint {
    margin: 10px 0 0;
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.4;
}
.completed-iban__hint.is-success {
    color: #059669;
    font-weight: 600;
}
.completed-iban__hint.is-error {
    color: #dc2626;
    font-weight: 600;
}

.cart-ssl {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    padding: 12px 14px;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--cart-muted, #6b7280);
    text-align: left;
}
.cart-ssl svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--cart-accent, #0f766e);
    opacity: 0.85;
}

/* Align primary cart buttons with theme accent */
.btn-cart {
    background: var(--cart-accent, #008053);
    color: var(--cart-accent-text, #fff);
}
input.btn.btn-cart:hover,
a.btn.btn-cart:hover {
    background: var(--cart-accent-hover, #000);
    color: var(--cart-accent-text, #fff);
}

@media (max-width: 576px) {
    .cart-steps__label {
        font-size: 12px;
    }
    .cart-steps__marker {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .cart-steps__connector {
        margin: 0 6px;
        min-width: 12px;
    }
    .cart-empty {
        padding: 36px 20px 32px;
    }
    .cart-empty__title {
        font-size: 1.3rem;
    }
    .cart-empty__actions {
        flex-direction: column;
    }
    .cart-empty__cta {
        width: 100%;
    }
}

/* ===== Checkout form + summary (desktop & mobile) ===== */
.cart-checkout .left-side {
    background: #fff;
    border-right: 1px solid var(--cart-border, #e5e7eb);
    padding: 24px 20px 100px;
}
.cart-checkout .right-side {
    background: var(--cart-surface, #f7f8fa);
    padding: 24px 20px 40px;
}
.cart-section-head {
    margin: 8px 0 20px;
}
.cart-section-head .cart-tite {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cart-text, #111827);
    letter-spacing: -0.02em;
}
.cart-section-head .cart-p {
    margin: 0;
    font-size: 0.9rem;
}
.cart-summary-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cart-text, #111827);
    margin: 0 0 12px;
}
.cart-summary-panel {
    background: #fff;
    border: 1px solid var(--cart-border, #e5e7eb);
    border-radius: 16px;
    padding: 20px !important;
    box-shadow: 0 4px 20px rgba(17, 24, 39, 0.04);
}

label.cart-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.cart-input {
    width: 100%;
    margin-top: 0;
    margin-bottom: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
    min-height: 46px;
}
textarea.cart-input {
    min-height: 96px;
    resize: vertical;
}
.cart-input:focus,
input.cart-input:focus,
textarea.cart-input:focus,
select.cart-input:focus {
    border-color: var(--cart-accent, #0f766e) !important;
    box-shadow: 0 0 0 3px var(--cart-accent-soft, rgba(15,118,110,.15));
    outline: 0;
}
.form-row > [class*="col-"] {
    margin-bottom: 2px;
}

.success-box {
    padding: 12px 14px;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    margin: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.cart-auth-tabs {
    background: var(--cart-surface, #f3f4f6);
    border-radius: 12px;
    padding: 4px;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
}
.cart-auth-tabs .nav-item {
    flex: 1;
    text-align: center;
}
.cart-auth-tabs .nav-link {
    border-radius: 9px !important;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563 !important;
    padding: 10px 8px;
    white-space: nowrap;
    background: transparent !important;
}
.cart-auth-tabs .nav-link.active,
.cart-auth-tabs .nav-link:hover {
    background: #fff !important;
    color: var(--cart-text, #111827) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.cart-bill-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}
.cart-bill-option {
    margin: 0;
    cursor: pointer;
}
.cart-bill-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.cart-bill-option span {
    display: block;
    text-align: center;
    padding: 11px 12px;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    background: #fff;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.cart-bill-option input:checked + span {
    border-color: var(--cart-accent, #0f766e);
    background: var(--cart-accent-soft, #ecfdf5);
    color: var(--cart-accent, #0f766e);
}
.cart-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
    cursor: pointer;
}
.cart-check input {
    margin-top: 2px;
    flex-shrink: 0;
}
.cart-check-block {
    margin: 14px 0;
}
.cart-policy-link {
    color: var(--cart-text, #111827);
    text-decoration: underline;
}
.cart-corporate-fields {
    padding: 14px;
    background: var(--cart-surface, #f7f8fa);
    border-radius: 12px;
    border: 1px solid var(--cart-border, #e5e7eb);
}

.cart-product {
    display: grid !important;
    grid-template-columns: 64px 1fr;
    grid-template-areas:
        "img title"
        "img actions";
    gap: 8px 12px;
    align-items: start;
    border: 1px solid var(--cart-border, #e5e7eb);
    border-radius: 12px;
    padding: 12px !important;
    margin-bottom: 10px;
    background: #fff;
    border-bottom: 1px solid var(--cart-border, #e5e7eb) !important;
}
.cart-product .product-img {
    grid-area: img;
    width: 64px;
    padding: 0;
}
.cart-product .product-title-cart {
    grid-area: title;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--cart-text, #111827);
}
.cart-product .product-title-cart a {
    color: inherit;
}
.cart-product .cart-product-lft {
    grid-area: actions;
    float: none !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}
img.cart-img {
    border-radius: 10px;
    height: 64px;
    width: 64px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
}
.product-actions {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
button.adjust-quantity {
    width: 32px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
}
select.adjust-specific-quantity {
    min-width: 40px;
    height: 34px;
    font-weight: 600;
}
.product-price {
    font-size: 14px;
    margin-left: auto;
}
.product-price strong {
    color: var(--cart-text, #111827);
}
a.cart-delete {
    color: #6b7280;
    background: #f3f4f6;
    padding: 6px;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
a.cart-delete:hover {
    background: #fee2e2;
    color: #b91c1c;
}

.cart-coupon-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 16px 0;
    padding: 0 !important;
}
input.cart-coupon {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 10px 0 0 10px;
    padding: 11px 14px;
    outline: none;
    min-width: 0;
}
input.cart-coupon:focus {
    border-color: var(--cart-accent, #0f766e);
}
button.btn.btn-coupon {
    background: var(--cart-text, #111827);
    color: #fff;
    padding: 0 16px;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    white-space: nowrap;
}
.cart-coupons-applied {
    margin-bottom: 16px;
}
.cart-coupons-applied__title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}
.cart-coupons-applied__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cart-coupons-applied__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--cart-surface, #f7f8fa);
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 13px;
}

.cart-order-summary {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--cart-border, #e5e7eb);
}
.cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4b5563;
}
.cart-summary-row small {
    font-weight: 500;
    color: #9ca3af;
}
.cart-summary-row--total {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed #e5e7eb;
    color: var(--cart-text, #111827);
    font-weight: 600;
}
.cart-summary-total {
    text-align: right;
}
.cart-summary-total del {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
}
.cart-summary-total strong {
    font-size: 1.25rem;
    color: var(--cart-text, #111827);
}
.cart-summary-free {
    color: #059669;
    font-weight: 700;
    font-size: 13px;
}
.cart-role-note {
    margin-top: 10px;
    font-size: 13px;
    color: #059669;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.cart-actions__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4b5563 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
}
.cart-actions__back:hover {
    color: var(--cart-text, #111827) !important;
}
.cart-actions__submit,
.btn.btn-cart.cart-actions__submit {
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    min-height: 48px;
    cursor: pointer;
}

.cart-select-pay {
    background: #fff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 12px !important;
    transition: border-color .15s ease, box-shadow .15s ease;
    cursor: pointer;
    width: 100%;
}
.cart-select-pay:hover,
.cart-select-box input:checked + .cart-select-pay,
label.cart-select-pay:has(input:checked) {
    border-color: var(--cart-accent, #0f766e) !important;
    box-shadow: 0 0 0 3px var(--cart-accent-soft, rgba(15,118,110,.12));
}
h3.cart-select-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
label.cart-select-pay {
    justify-content: space-between;
    align-items: center;
}

/* ===== Payment method cards ===== */
.pay-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 4px 0 8px;
}
.pay-method {
    display: block;
    margin: 0;
    cursor: pointer;
}
.pay-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pay-method__body {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .15s ease;
    min-height: 76px;
}
.pay-method:hover .pay-method__body {
    border-color: #cbd5e1;
    background: #fafafa;
}
.pay-method input:focus-visible + .pay-method__body {
    outline: 2px solid var(--cart-accent, #0f766e);
    outline-offset: 2px;
}
.pay-method input:checked + .pay-method__body {
    border-color: var(--cart-accent, #0f766e);
    background: linear-gradient(135deg, #fff 0%, var(--cart-accent-soft, #ecfdf5) 160%);
    box-shadow: 0 0 0 3px var(--cart-accent-soft, rgba(15,118,110,.16)), 0 6px 16px rgba(17,24,39,.05);
}
.pay-method__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #eff6ff;
    color: #2563eb;
}
.pay-method__icon--bank {
    background: #ecfdf5;
    color: #059669;
}
.pay-method__icon--door {
    background: #fff7ed;
    color: #ea580c;
}
.pay-method input:checked + .pay-method__body .pay-method__icon {
    background: var(--cart-accent, #0f766e);
    color: var(--cart-accent-text, #fff);
}
.pay-method__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.pay-method__title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 650;
    color: var(--cart-text, #111827);
    line-height: 1.3;
}
.pay-method__desc {
    font-size: 12.5px;
    color: var(--cart-muted, #6b7280);
    line-height: 1.35;
}
.pay-method__badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: #d1fae5;
    color: #047857;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.pay-method__badge--muted {
    background: #f3f4f6;
    color: #4b5563;
}
.pay-method__check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    position: relative;
    transition: border-color .15s ease, background .15s ease;
}
.pay-method input:checked + .pay-method__body .pay-method__check {
    border-color: var(--cart-accent, #0f766e);
    background: var(--cart-accent, #0f766e);
}
.pay-method input:checked + .pay-method__body .pay-method__check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 575.98px) {
    .pay-method__body {
        padding: 13px 12px;
        gap: 12px;
        min-height: 72px;
    }
    .pay-method__icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
    }
    .pay-method__title {
        font-size: 14px;
    }
    .pay-method__desc {
        font-size: 12px;
    }
}

.cart-mobile-summary {
    margin: 0 0 18px;
    position: sticky;
    top: 0;
    z-index: 20;
}
.cart-mobile-summary .accordion__item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--cart-border, #e5e7eb);
    border-radius: 12px;
    padding: 14px 40px 14px 16px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(17,24,39,.06);
}
.cart-mobile-summary .accordion__item__header::before {
    right: 16px;
    top: 50%;
    margin-top: -6px;
    height: 10px;
    width: 10px;
}
.cart-mobile-summary .accordion__item__header.active {
    border-radius: 12px 12px 0 0;
}
.cart-mobile-summary .accordion__item__header.active::before {
    top: 50%;
    margin-top: -2px;
}
.cart-mobile-summary .price-mobile {
    float: none;
    margin: 0;
    color: var(--cart-accent, #0f766e);
    font-weight: 700;
    font-size: 15px;
}
.cart-mobile-summary .accordion__item__content {
    background: #fff;
    border: 1px solid var(--cart-border, #e5e7eb);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    margin: 0;
    padding: 14px;
}

.iti {
    width: 100%;
    margin-bottom: 14px;
}
.iti .cart-input {
    margin-bottom: 0;
    padding-left: 90px !important;
}

@media (max-width: 575.98px) {
    .cart-checkout .left-side {
        padding: 16px 14px 110px;
        border-right: 0;
    }
    .cart-steps__list {
        max-width: 100%;
    }
    .cart-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        margin: 0;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--cart-border, #e5e7eb);
        box-shadow: 0 -8px 24px rgba(17,24,39,.08);
        flex-wrap: nowrap;
    }
    .cart-actions__back {
        display: none;
    }
    .cart-actions__submit,
    .btn.btn-cart.cart-actions__submit {
        width: 100%;
        flex: 1;
    }
    .cart-auth-tabs .nav-link {
        font-size: 11px;
        padding: 9px 4px;
    }
    .cart-footer {
        margin-bottom: 24px;
    }
    .left-header {
        margin-bottom: 4px;
    }
    .cart-brand__logo {
        height: 40px;
    }
}

@media (min-width: 1200px) {
    .cart-product {
        grid-template-columns: 64px minmax(0, 1fr) auto;
        grid-template-areas: "img title actions";
        align-items: center;
    }
    .cart-product .cart-product-lft {
        justify-content: flex-end;
        width: auto;
    }
}

/* ===== IBAN / Havale account list ===== */
.iban-discount {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.iban-discount__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #059669;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.iban-discount p {
    margin: 4px 0 0;
    font-size: 13.5px;
    line-height: 1.45;
}
.iban-order-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin: 4px 0 8px;
    border-radius: 12px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}
.iban-order-notice__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f59e0b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.iban-order-notice__body {
    min-width: 0;
    flex: 1;
}
.iban-order-notice__body strong {
    display: block;
    font-size: 14px;
    color: #78350f;
    margin-bottom: 4px;
}
.iban-order-notice__optional {
    font-weight: 500;
    color: #b45309;
    font-size: 12.5px;
}
.iban-order-notice__body p {
    margin: 0 0 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #92400e;
}
.iban-order-notice__code-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.iban-order-notice__code {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px dashed #f59e0b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #111827;
    word-break: break-all;
}
.iban-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}
.iban-card {
    display: block;
    margin: 0;
    cursor: pointer;
}
.iban-card > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.iban-card__body {
    display: block;
    padding: 16px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.iban-card:hover .iban-card__body {
    border-color: #cbd5e1;
}
.iban-card > input:checked + .iban-card__body {
    border-color: var(--cart-accent, #0f766e);
    background: linear-gradient(180deg, #fff 0%, var(--cart-accent-soft, #ecfdf5) 220%);
    box-shadow: 0 0 0 3px var(--cart-accent-soft, rgba(15,118,110,.14));
}
.iban-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.iban-card__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    position: relative;
}
.iban-card > input:checked + .iban-card__body .iban-card__radio {
    border-color: var(--cart-accent, #0f766e);
    background: var(--cart-accent, #0f766e);
}
.iban-card > input:checked + .iban-card__body .iban-card__radio::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.iban-card__bank {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.iban-card__logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    padding: 4px;
}
.iban-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.iban-card__logo.is-hidden {
    display: none !important;
}
.iban-card__logo-fallback {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--cart-accent-soft, #ecfdf5);
    color: var(--cart-accent, #0f766e);
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
.iban-card__logo-fallback.is-visible {
    display: inline-flex;
}
.iban-card__bank-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--cart-text, #111827);
    line-height: 1.3;
}
.iban-card__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 8px;
}
.iban-card__row--iban {
    margin-bottom: 0;
    background: #f1f5f9;
}
.iban-card__meta {
    min-width: 0;
    flex: 1;
}
.iban-card__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 3px;
}
.iban-card__value,
.iban-card__iban {
    display: block;
    font-size: 13.5px;
    color: var(--cart-text, #111827);
    line-height: 1.4;
    word-break: break-word;
}
.iban-card__iban {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}
.iban-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 0 0 8px;
    padding: 0 2px;
    font-size: 12.5px;
    color: #64748b;
}
.iban-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
}
.iban-copy-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}
.iban-copy-btn--primary {
    border-color: var(--cart-accent, #0f766e);
    color: var(--cart-accent, #0f766e);
    background: #fff;
}
.iban-copy-btn--primary:hover {
    background: var(--cart-accent-soft, #ecfdf5);
}
.iban-copy-btn.is-copied,
.iban-copy-btn--primary.is-copied {
    background: #059669;
    border-color: #059669;
    color: #fff;
}
.iban-copy-toast {
    position: fixed;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%) translateY(8px);
    background: #111827;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.iban-copy-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 575.98px) {
    .iban-card__row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .iban-copy-btn {
        justify-content: center;
        width: 100%;
        min-height: 40px;
    }
    .iban-card__iban {
        font-size: 13px;
    }
}