.cart-container-inner {
    width: 100%
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0
}

.cart-header h1 {
    font-size: 28px;
    color: var(--color-text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px
}

.cart-header h1 i {
    font-size: 32px
}

.cart-count {
    background: var(--color-text-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600
}

.cart-empty {
    text-align: center;
    padding: 60px 20px
}

.cart-empty i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px
}

.cart-empty h2 {
    color: #333;
    margin-bottom: 12px;
    font-size: 24px
}

.cart-empty p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100vw - 100px);
    max-width: 1160px
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    align-items: center
}

.cart-item-history {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    align-items: center
}

.cart-item-history.cart-order-detail {
    grid-template-columns: 100px 1fr auto;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgb(0 0 0 / .08);
    border-color: #ddd
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0
}

.cart-item-subname {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0
}

.cart-item-subname a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease
}

.cart-item-subname a:hover {
    color: #265d31
}

.cart-item-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease
}

.cart-item-name a:hover {
    color: var(--color-text-secondary-dark);
}

.cart-item-price {
    font-size: 16px;
    color: #666;
    margin: 0
}

.cart-item-price .unit-price {
    color: #999;
    font-size: 14px
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px
}

.cart-item-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px
}

.cart-quantity-btn {
    width: 60px;
    height: 36px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease
}

.cart-quantity-btn:hover {
    border-color: #265d31;
    color: #265d31;
    background: #f0f8f0
}

.cart-quantity-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.cart-quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #fff
}

.cart-quantity-input:focus {
    outline: none;
    border-color: #265d31
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px
}

.cart-remove-btn:hover {
    background: #fee;
    color: #c33
}

.cart-summary {
    margin-top: 32px;
    padding-top: 24px
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0
}

.cart-summary-row.subtotal {
    border-bottom: 1px solid #eee
}

.cart-summary-row.delivery {
    border-bottom: 1px solid #eee
}

.cart-summary-label {
    font-size: 16px;
    color: #666
}

.cart-summary-value {
    font-size: 18px;
    font-weight: 600;
    color: #333
}

.cart-summary-row.total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--color-text-secondary);
}

.cart-summary-row.total .cart-summary-label {
    font-size: 20px;
    font-weight: 700;
    color: #333
}

.cart-summary-row.total .cart-summary-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.cart-summary-row.free-delivery {
    color: #28a745;
    font-size: 14px
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
    flex-wrap: wrap
}

.cart-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease
}

.cart-continue-shopping:hover {
    color: var(--color-text-secondary-dark);
    gap: 12px
}

.shipping-name,
.shipping-price {
    color: var(--color-text-secondary-dark);
}

.cart-checkout-btn {
    background: var(--color-text-secondary);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgb(192 188 127 / .3)
}

.cart-checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none
}

.cart-alert {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease
}

.cart-alert-info {
    background: #eef;
    color: #33c;
    border: 1px solid #ccf
}

#checkout-card {
    animation: slideDown 0.4s ease;
    max-width: 1240px
}

.checkout-item {
    grid-template-columns: 340px 1fr auto
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:768px) {
    .cart-card {
        padding: 16px
    }
    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
    .cart-header h1 {
        font-size: 24px
    }
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 16px
    }
    .cart-item-history {
        grid-template-columns: 200px 1fr auto;
        gap: 16px;
        padding: 16px
    }
    .cart-item-history.cart-order-detail {
        grid-template-columns: 80px 1fr auto;
    }
    .cart-item-image {
        width: 80px;
        height: 80px
    }
    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid #eee
    }
    .cart-item-history .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid #eee
    }
    .cart-summary-row.total .cart-summary-label,
    .cart-summary-row.total .cart-summary-value {
        font-size: 20px
    }
    .cart-actions {
        flex-direction: column
    }
    .cart-continue-shopping,
    .cart-checkout-btn {
        width: 100%;
        justify-content: center
    }
    .delivery-input-group {
        flex-direction: column;
        max-width: none
    }
}

@media (max-width:480px) {
    .cart-header h1 {
        font-size: 22px
    }
    .cart-header h1 i {
        font-size: 26px
    }
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 12px
    }
    .cart-item-history {
        grid-template-columns: 200px 1fr auto;
        gap: 12px;
        padding: 12px
    }
    .cart-item-history.cart-order-detail {
        grid-template-columns: 70px 1fr auto;
    }
    .cart-item-image {
        width: 70px;
        height: 70px
    }
    .cart-item-name {
        font-size: 16px
    }
    .cart-item-total {
        font-size: 18px
    }
    .cart-quantity-btn {
        width: 50px;
        height: 32px;
        font-size: 16px
    }
    .cart-quantity-input {
        width: 50px;
        height: 32px;
        font-size: 14px
    }
    .cart-item-history .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid #eee
    }
}

.cart-item {
    animation: fadeIn 0.3s ease
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.cart-item.removing {
    animation: fadeOut 0.3s ease forwards
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0)
    }
    to {
        opacity: 0;
        transform: translateY(-10px)
    }
}

.cart-quantity-input::-webkit-inner-spin-button,
.cart-quantity-input::-webkit-outer-spin-button {
    opacity: 1
}

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    margin-top: 80px;
    max-width: none
}

.auth-container-profile {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1
}

.svg-cart {
    height: 80px;
    width: 80px;
    margin-bottom: 20px
}

.order-title-hist {
    margin-right: 20px !important
}

.order-history-container {
    min-height: calc(100vh - 400px)
}

.cart-items-history {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(100vw - 100px);
    max-width: 900px
}

.checkout-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #71c3b5 0%, #71c3b5 100%);
    position: relative;
    margin-top: 80px;
    max-width: none
}

.checkout-card {
    background: rgb(255 255 255 / .95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgb(0 0 0 / .1);
    border: 1px solid rgb(255 255 255 / .2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 900px
}

.checkout-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgb(0 0 0 / .15)
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start
}

.checkout-form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.checkout-summary-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.checkout-section h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600
}

.status-processing {
    background-color: #fff3cd;
    color: #856404
}

.status-paid,
.status-delivered {
    background-color: #d4edda;
    color: #155724
}

.status-shipped {
    background-color: #cce5ff;
    color: #004085
}

.status-cancelled,
.status-refunded {
    background-color: #f8d7da;
    color: #721c24
}

.order-info-section {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgb(0 0 0 / .1)
}

.order-info-section h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #666;
    margin-bottom: 8px
}

.order-info-section p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px
}

.cart-view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--color-text-secondary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease
}

.cart-view-details-btn:hover {
    background-color: var(--color-text-secondary-dark);
    color: #fff;
    text-decoration: none
}

.order-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.order-status-detail {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.cart-continue-shopping-detail {
    font-size: 14px
}

.section-title-detail {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333
}

.alert-checkout {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #fff0;
    border-radius: 4px
}

.alert-danger-checkout {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.shipping-option {
    margin-bottom: 15px
}

.shipping-option-label {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s
}

.shipping-option-label:hover {
    border-color: #aaa
}

.shipping-option input[type="radio"] {
    margin-right: 10px
}

.shipping-logo {
    width: 70px;
    height: auto;
    margin-right: 15px
}

.shipping-details {
    flex-grow: 1
}

.shipping-name {
    font-weight: 700;
    display: block
}

.shipping-description {
    font-size: .9em;
    color: #666
}

.shipping-price {
    font-weight: 700
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20px auto
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.user-info {
    margin-bottom: 2rem
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem
}

.info-item i {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    width: 30px
}

.dashboard-actions h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid #fff0
}

.action-item:hover {
    background: var(--color-text-secondary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(102 126 234 / .3)
}

.action-item i {
    font-size: 2rem;
    margin-bottom: 1rem
}

.action-item span {
    font-weight: 500;
    text-align: center
}

.dashboard-welcome {
    max-width: 800px;
    margin: 0 auto;
    width: 100%
}

.card-header {
    background: var(--color-text-secondary);
    color: #fff;
    padding: 2rem;
    text-align: center
}

.card-header h2 {
    margin: 0;
    color: #f8f9fa;
    font-size: 1.8rem;
    font-weight: 600
}

.card-body {
    padding: 2rem
}

.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    overflow: hidden;
    animation: slideDown 0.4s ease
}

.logout-btn {
    background: #dc3545;
    color: #fff
}

.logout-btn:hover {
    background: #c82333;
    color: #fff
}

.alert-dash {
    margin: 0 0 12px 0
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .5)
}

.modal-content {
    z-index: 1;
    background: #fff;
    padding: 1.25rem;
    border-radius: 6px;
    width: min(90%, 460px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .25)
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 12px
}

.btn-danger-profile {
    margin-left: 8px;
    background: #dc3545;
    border: 0
}

.section-title-checkout {
	margin-bottom: 18px;
}

#deleteAccountBtn {
    width: 100%;
    max-width: 420px
}

.exclude-profile-text {
    margin-top: 12px;
    text-align: center
}

.btn-submit-profile {
    margin-top: 8px
}

.auth-header-profile {
    text-align: center
}

@media (max-width:768px) {
    .checkout-card {
        padding: 2rem 1.5rem
    }
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
}

@media (max-width:480px) {
    .checkout-card {
        padding: 1.5rem
    }
}

@media (max-width:768px) {
    .dashboard-welcome {
        margin: 0 1rem
    }
    .card-header,
    .card-body {
        padding: 1.5rem
    }
    .action-grid {
        grid-template-columns: 1fr
    }
}
.order-status-inline { display:flex; align-items:center; gap: 8px; }
.order-status-row, #order-status-select, .order-status-controls { display: none !important; }

/* Modal styling for admin status change (matches modern card UI) */
.status-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.status-panel {
  width: min(92%, 520px);
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}
.status-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid #eee;
}
.status-panel-body { padding-top: 8px; }
.status-options { display: flex; flex-direction: column; gap: 10px; }
.status-option { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; background: #f7f7f7; font-weight: 600; text-align: left; cursor: pointer; }
/* Colorful backgrounds for modal status options to match badge colors */
.status-option[data-status="pending"] { background: #e7f0ff; color: #0b4b8b; }
.status-option[data-status="paid"] { background: #e6ffea; color: #1a7f3f; }
.status-option[data-status="shipped"] { background: #fff3e0; color: #8a5b00; }
.status-option[data-status="delivered"] { background: #e8f7e8; color: #0b5a0a; }
.status-option[data-status="cancelled"] { background: #ffe2e2; color: #a30f0f; }
.status-option[data-status="refunded"] { background: #f1e5ff; color: #6a2a9a; }
.status-option:hover { background: #f0f0f0; }
.status-panel-close { background: none; border: none; font-size: 20px; cursor: pointer; }

.btn-status-toggle {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #c5c5c5;
  background: #f3f3f3;
  cursor: pointer;
  font-size: 14px;
  margin-left: 12px;
}

/* Badge styling for order status, with color by status */
.order-status-detail {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  background: #e0e0e0;
  color: #333;
}
.status-processing { background: #e7f0ff; color: #0b4b8b; }
.status-paid { background: #e6ffea; color: #1a7f3f; }
.status-shipped { background: #fff3e0; color: #8a5b00; }
.status-delivered { background: #e8f7e8; color: #0b5a0a; }
.status-cancelled { background: #ffe2e2; color: #a30f0f; }
.status-refunded { background: #f1e5ff; color: #6a2a9a; }
.btn-status-toggle {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #d0d0d0;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

/* Modal-like status panel for admin order status */
.status-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.status-panel {
  width: min(92%, 520px);
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.status-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 8px; border-bottom: 1px solid #eee;
}
.status-panel-body { padding-top: 12px; }
.status-options { display: flex; flex-direction: column; gap: 10px; }
.status-option { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; background: #f7f7f7; font-weight: 600; text-align: left; cursor: pointer; }

.tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    margin: 8px 0 12px;
    padding: 0 4px;
}

.tabs .tab-btn {
    background: transparent;
    border: none;
    padding: 10px 14px;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    color: #333;
    cursor: pointer
}

.tabs .tab-btn.active {
    background: #fff;
    color: var(--color-text, #333);
    border-bottom: 2px solid var(--color-primary, #265d31);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.checkout-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.trust-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.trust-separator {
  width: 1px;
  height: 30px;
  background: #ddd;
}

@media (max-width: 600px) {
  .checkout-trust-badges {
    gap: 10px;
    padding: 12px 16px;
  }
  
  .trust-badge {
    font-size: 0.75rem;
  }
  
  .trust-badge-icon {
    width: 20px;
    height: 20px;
  }
  
  .trust-logo {
    height: 22px;
  }
  
  .trust-separator {
    display: none;
  }
}