/* ===== Mini Cart ===== */
.minicart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 10000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s;
}
.minicart-overlay.open { opacity: 1; pointer-events: auto; }

.minicart-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 380px; max-width: 90vw;
    background: #fff;
    z-index: 10001;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.minicart-panel.open { transform: translateX(0); }

.minicart-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #E5E7EB;
}
.minicart-header h3 { margin: 0; font-size: 16px; font-weight: 700; color: #101828; }
.minicart-close {
    background: none; border: none; cursor: pointer; color: #667085; padding: 4px;
    border-radius: 6px; transition: background 0.15s;
}
.minicart-close:hover { background: #F2F4F7; }

.minicart-body {
    flex: 1; overflow-y: auto; padding: 12px 20px;
}

.minicart-empty {
    text-align: center; padding: 40px 0;
    color: #667085; font-size: 14px;
}
.minicart-shop-btn {
    display: inline-block; margin-top: 16px;
    padding: 8px 20px; background: #7F56D9; color: #fff;
    border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600;
}

.minicart-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F2F4F7;
}
.minicart-item-img {
    width: 56px; height: 56px; border-radius: 8px; overflow: hidden;
    background: #F2F4F7; flex-shrink: 0;
}
.minicart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.minicart-item-info { flex: 1; min-width: 0; }
.minicart-item-name {
    display: block; font-size: 13px; font-weight: 600; color: #101828;
    text-decoration: none; line-height: 1.3;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.minicart-item-name:hover { color: #7F56D9; }
.minicart-item-var {
    display: block; font-size: 11px; color: #667085; margin-top: 2px;
}
.minicart-item-price { font-size: 13px; font-weight: 700; color: #101828; margin-top: 4px; }
.minicart-sub-tag {
    display: inline-block; font-size: 10px; font-weight: 600; color: #7F56D9;
    background: #F4F0FF; padding: 1px 6px; border-radius: 4px; margin-left: 4px;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.minicart-item-remove {
    background: none; border: none; font-size: 20px; color: #98A2B3;
    cursor: pointer; padding: 0 4px; line-height: 1; flex-shrink: 0;
}
.minicart-item-remove:hover { color: #F43F5E; }

.minicart-footer {
    padding: 16px 20px;
    border-top: 1px solid #E5E7EB;
    display: flex; flex-direction: column; gap: 8px;
}
.minicart-total-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
    font-size: 14px; font-weight: 600; color: #101828;
}
.minicart-total { font-size: 18px; font-weight: 800; }
.minicart-btn-primary {
    display: block; text-align: center;
    padding: 10px; background: #7F56D9; color: #fff;
    border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600;
    transition: background 0.15s;
}
.minicart-btn-primary:hover { background: #6941C6; color: #fff; }
.minicart-btn-outline {
    display: block; text-align: center;
    padding: 10px; background: #fff; color: #344054;
    border: 1px solid #D0D5DD; border-radius: 8px;
    text-decoration: none; font-size: 14px; font-weight: 600;
    transition: all 0.15s;
}
.minicart-btn-outline:hover { background: #F9FAFB; color: #344054; }

/* Cart badge */
.cart-badge {
    position: absolute; top: -6px; right: -8px;
    background: #F43F5E; color: #fff;
    min-width: 18px; height: 18px;
    border-radius: 9px; font-size: 10px; font-weight: 700;
    display: none; align-items: center; justify-content: center;
    line-height: 1;
}

/* ===== Cart Page ===== */
.cart-page {
    max-width: 1100px; margin: 0 auto;
    padding: 32px 20px 60px;
}
.cart-page-title { font-size: 28px; font-weight: 800; color: #101828; margin: 0 0 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }

.cart-row {
    display: grid;
    grid-template-columns: 72px 1fr 100px 100px 100px 32px;
    gap: 16px; align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}
.cart-row-img { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; background: #F2F4F7; }
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-info { min-width: 0; }
.cart-row-name { font-size: 14px; font-weight: 600; color: #101828; text-decoration: none; display: block; }
.cart-row-name:hover { color: #7F56D9; }
.cart-row-var { display: block; font-size: 12px; color: #667085; margin-top: 2px; }
.cart-row-price { font-size: 14px; color: #667085; text-align: center; }
.cart-row-qty {
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cart-row-qty button {
    width: 28px; height: 28px; border: 1px solid #D0D5DD; border-radius: 6px;
    background: #fff; cursor: pointer; font-size: 16px; color: #344054;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.cart-row-qty button:hover { border-color: #7F56D9; color: #7F56D9; }
.cart-row-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-row-total { font-size: 14px; font-weight: 700; color: #101828; text-align: right; }
.cart-row-remove {
    background: none; border: none; font-size: 20px; color: #98A2B3;
    cursor: pointer; padding: 0;
}
.cart-row-remove:hover { color: #F43F5E; }

.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h2 { font-size: 20px; color: #101828; margin: 0 0 8px; }
.cart-empty p { font-size: 14px; color: #667085; margin-bottom: 20px; }

/* Cart Summary */
.cart-summary {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 12px;
    padding: 24px; position: sticky; top: 100px;
}
.cart-summary-title { font-size: 16px; font-weight: 700; color: #101828; margin: 0 0 16px; }
.cart-summary-row {
    display: flex; justify-content: space-between; padding: 8px 0;
    font-size: 14px; color: #667085;
}
.cart-summary-row.total {
    font-size: 18px; font-weight: 800; color: #101828;
    border-top: 1px solid #E5E7EB; padding-top: 16px; margin-top: 8px;
}
.cart-checkout-btn {
    display: block; text-align: center; width: 100%; margin-top: 16px;
    padding: 12px; background: #7F56D9; color: #fff; border: none;
    border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: background 0.15s;
}
.cart-checkout-btn:hover { background: #6941C6; color: #fff; }
.cart-continue { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: #667085; text-decoration: none; }
.cart-continue:hover { color: #7F56D9; }

/* Add to cart button */
.shop-add-cart-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px;
    background: #7F56D9; color: #fff;
    border: none; border-radius: 10px;
    font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    width: 100%;
}
.shop-add-cart-btn:hover { background: #6941C6; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(127,86,217,0.3); }
.shop-add-cart-btn:active { transform: translateY(0); }
.shop-buy-now-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 32px;
    background: transparent; color: #344054;
    border: 1px solid #D0D5DD; border-radius: 10px;
    font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    width: 100%; text-decoration: none; text-align: center;
}
.shop-buy-now-btn:hover { border-color: #7F56D9; color: #7F56D9; }
.shop-detail-actions { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }

/* ===== Product Gallery ===== */
.shop-gallery { position: relative; }
.shop-gallery-main {
    border-radius: 14px; overflow: hidden; background: #F2F4F7;
    aspect-ratio: 1; cursor: zoom-in;
}
.shop-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-gallery-thumbs {
    display: flex; gap: 8px; margin-top: 10px; overflow-x: auto;
    padding: 4px 0;
}
.shop-gallery-thumb {
    width: 64px; height: 64px; border-radius: 8px; overflow: hidden;
    border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
    transition: border-color 0.15s; background: #F2F4F7;
}
.shop-gallery-thumb:hover, .shop-gallery-thumb.active { border-color: #7F56D9; }
.shop-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.shop-lightbox {
    position: fixed; inset: 0; z-index: 10002;
    background: rgba(0,0,0,0.9);
    display: none; align-items: center; justify-content: center;
}
.shop-lightbox.open { display: flex; }
.shop-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.shop-lightbox-close {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    font-size: 20px; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.shop-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.shop-lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none; color: #fff;
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    font-size: 24px; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.shop-lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.shop-lightbox-nav.prev { left: 20px; }
.shop-lightbox-nav.next { right: 20px; }

/* ===== Dashboard ===== */
.dash-page { max-width: 1100px; margin: 0 auto; padding: 32px 20px 60px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.dash-hello { font-size: 24px; font-weight: 800; color: #101828; margin: 0; }
.dash-subtitle { font-size: 14px; color: #667085; margin: 4px 0 0; }

.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.dash-stat {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 12px;
    padding: 20px;
}
.dash-stat-label { font-size: 12px; font-weight: 600; color: #667085; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-stat-value { font-size: 28px; font-weight: 800; color: #101828; margin-top: 4px; }
.dash-stat-value.purple { color: #7F56D9; }

.dash-section {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 12px;
    margin-bottom: 20px; overflow: hidden;
}
.dash-section-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; border-bottom: 1px solid #F2F4F7;
}
.dash-section-title { font-size: 15px; font-weight: 700; color: #101828; margin: 0; }
.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th {
    padding: 10px 20px; font-size: 12px; font-weight: 600; color: #667085;
    text-transform: uppercase; letter-spacing: 0.5px; text-align: left;
    background: #F9FAFB; border-bottom: 1px solid #E5E7EB;
}
.dash-table td { padding: 12px 20px; font-size: 14px; color: #344054; border-bottom: 1px solid #F2F4F7; }
.dash-table tr:last-child td { border-bottom: none; }
.dash-badge {
    display: inline-block; padding: 3px 10px; border-radius: 12px;
    font-size: 12px; font-weight: 600;
}
.dash-badge-green { background: #ECFDF3; color: #067647; }
.dash-badge-yellow { background: #FFFAEB; color: #B54708; }
.dash-badge-red { background: #FEF3F2; color: #B42318; }
.dash-badge-gray { background: #F2F4F7; color: #344054; }
.dash-empty { padding: 32px 20px; text-align: center; color: #667085; font-size: 14px; }
.dash-btn-sm {
    display: inline-block; padding: 6px 14px;
    background: #7F56D9; color: #fff; border: none;
    border-radius: 6px; font-size: 12px; font-weight: 600;
    text-decoration: none; cursor: pointer;
}
.dash-btn-sm:hover { background: #6941C6; color: #fff; }
.dash-btn-outline-sm {
    display: inline-block; padding: 6px 14px;
    background: #fff; color: #344054; border: 1px solid #D0D5DD;
    border-radius: 6px; font-size: 12px; font-weight: 600;
    text-decoration: none; cursor: pointer;
}
.dash-btn-outline-sm:hover { border-color: #7F56D9; color: #7F56D9; }

/* ===== Checkout Page ===== */
.co-page { max-width: 1100px; margin: 0 auto; padding: 32px 20px 60px; }
.co-title { font-size: 28px; font-weight: 800; color: #101828; margin: 0 0 24px; }
.co-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.co-error {
    padding: 12px 16px; background: #FEF3F2; color: #B42318;
    border-radius: 10px; font-size: 14px; font-weight: 600; margin-bottom: 16px;
}

/* Guest checkout */
.co-guest-bar { font-size: 14px; color: var(--color-text-light, #667085); margin-bottom: 16px; }
.co-login-link { color: var(--color-primary, #7F56D9); font-weight: 600; text-decoration: none; }
.co-login-link:hover { text-decoration: underline; }
.co-login-section { overflow: hidden; max-height: 0; opacity: 0; padding: 0 24px !important; margin-bottom: 0 !important; border-color: transparent !important; transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease, padding .4s ease, margin .4s ease, border-color .3s ease; }
.co-login-section.open { max-height: 400px; opacity: 1; padding: 24px !important; margin-bottom: 20px !important; border-color: #E5E7EB !important; }
.co-login-submit { padding: 10px 24px; border: none; border-radius: 10px; background: var(--color-primary, #7F56D9); color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 12px; transition: background .2s; }
.co-login-submit:hover { background: #6941C6; }
.co-login-submit:disabled { opacity: .6; cursor: not-allowed; }
.co-login-error { padding: 10px 14px; background: #FEF3F2; color: #B42318; border-radius: 8px; font-size: 13px; margin-top: 10px; }

.co-section { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.co-section-title { font-size: 16px; font-weight: 700; color: #101828; margin: 0 0 16px; }

/* Editable cart items in order summary */
.co-cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #F2F4F7; }
.co-cart-item:last-child { border-bottom: none; }
.co-cart-item-img { position: relative; width: 56px; height: 56px; border-radius: 10px; overflow: hidden; background: #F9FAFB; flex-shrink: 0; }
.co-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.co-cart-item-badge { position: absolute; top: -6px; right: -6px; background: var(--color-primary, #7F56D9); color: #fff; font-size: 10px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.co-cart-item-info { flex: 1; min-width: 0; }
.co-cart-item-name { font-size: 14px; font-weight: 600; color: #101828; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.co-cart-item-var { font-size: 12px; color: #667085; margin-top: 2px; }
.co-cart-item-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.co-cart-item-price { font-size: 14px; font-weight: 700; color: #101828; white-space: nowrap; }
.co-cart-item-remove { background: none; border: none; color: #98A2B3; font-size: 18px; cursor: pointer; padding: 0 2px; line-height: 1; transition: color .15s; }
.co-cart-item-remove:hover { color: #F04438; }
.co-qty-wrap { display: flex; align-items: center; gap: 0; border: 1px solid #E5E7EB; border-radius: 8px; overflow: hidden; }
.co-qty-btn { background: #F9FAFB; border: none; width: 28px; height: 28px; font-size: 14px; color: #344054; cursor: pointer; transition: background .15s; display: flex; align-items: center; justify-content: center; }
.co-qty-btn:hover { background: #F2F4F7; }
.co-qty-num { width: 28px; text-align: center; font-size: 13px; font-weight: 600; color: #101828; }

.co-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0; border-bottom: 1px solid #F2F4F7;
}
.co-item:last-child { border-bottom: none; }
.co-item-img { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; background: #F2F4F7; flex-shrink: 0; }
.co-item-img img { width: 100%; height: 100%; object-fit: cover; }
.co-item-info { flex: 1; min-width: 0; }
.co-item-name { font-size: 14px; font-weight: 600; color: #101828; }
.co-item-var { font-size: 12px; color: #667085; margin-top: 2px; }
.co-item-qty { font-size: 13px; color: #667085; }
.co-item-price { font-size: 14px; font-weight: 700; color: #101828; white-space: nowrap; }

/* Billing Form */
.co-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-form-group { display: flex; flex-direction: column; gap: 4px; }
.co-full { grid-column: 1 / -1; }
.co-label { font-size: 13px; font-weight: 600; color: #344054; }
.co-input {
    padding: 9px 12px; border: 1px solid #D0D5DD; border-radius: 8px;
    font-size: 14px; color: #101828; outline: none; transition: border-color 0.15s;
}
.co-input:focus { border-color: #7F56D9; }

/* Sidebar Summary */
.co-sidebar { position: sticky; top: 100px; }
.co-summary-card {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 24px;
}
.co-summary-title { font-size: 16px; font-weight: 700; color: #101828; margin: 0 0 16px; }
.co-summary-items { margin-bottom: 16px; border-bottom: 1px solid #F2F4F7; padding-bottom: 12px; }
.co-summary-item {
    display: flex; justify-content: space-between; padding: 6px 0;
    font-size: 13px; color: #344054;
}

/* Coupon */
.co-coupon-row { display: flex; gap: 8px; margin-bottom: 8px; }
.co-coupon-input { flex: 1; }
.co-coupon-btn {
    padding: 9px 16px; background: #F9FAFB; color: #344054;
    border: 1px solid #D0D5DD; border-radius: 8px; font-size: 13px; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: all 0.15s;
}
.co-coupon-btn:hover { border-color: #7F56D9; color: #7F56D9; }
.co-coupon-success { font-size: 12px; color: #067647; margin-bottom: 12px; }
.co-coupon-error { font-size: 12px; color: #B42318; margin-bottom: 12px; }

/* Totals */
.co-summary-totals { border-top: 1px solid #F2F4F7; padding-top: 12px; margin-bottom: 16px; }
.co-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: #667085; }
.co-total-row { font-size: 18px; font-weight: 800; color: #101828; border-top: 1px solid #E5E7EB; padding-top: 12px; margin-top: 4px; }

.co-pay-btn {
    display: block; text-align: center; width: 100%; padding: 14px;
    background: #7F56D9; color: #fff; border: none; border-radius: 10px;
    font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.15s;
}
.co-pay-btn:hover { background: #6941C6; color: #fff; }

/* Trust badges */
.co-trust { margin-top: 16px; }
.co-trust-item {
    padding: 6px 0; font-size: 12px; color: #667085; text-align: center;
    border-bottom: 1px solid #F9FAFB;
}
.co-trust-item:last-child { border-bottom: none; }

.co-back-link { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: #667085; text-decoration: none; }
.co-back-link:hover { color: #7F56D9; }

/* Offers */
.co-offer {
    display: flex; align-items: center; gap: 14px;
    padding: 14px; border: 1px solid #E5E7EB; border-radius: 10px;
    margin-bottom: 10px; transition: border-color 0.15s;
}
.co-offer:hover { border-color: #7F56D9; }
.co-offer-img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.co-offer-info { flex: 1; min-width: 0; }
.co-offer-title { font-size: 14px; font-weight: 600; color: #101828; }
.co-offer-badge {
    display: inline-block; font-size: 10px; font-weight: 700; color: #7F56D9;
    background: #F4F0FF; padding: 2px 8px; border-radius: 4px; margin-left: 6px;
    text-transform: uppercase;
}
.co-offer-desc { font-size: 12px; color: #667085; margin-top: 2px; }
.co-offer-price { margin-top: 4px; font-size: 14px; color: #101828; }
.co-offer-btn {
    padding: 8px 16px; background: #F4F0FF; color: #7F56D9;
    border: 1px solid #E9D5FF; border-radius: 8px; font-size: 13px; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: all 0.15s;
}
.co-offer-btn:hover { background: #7F56D9; color: #fff; }

/* ===== Success Page ===== */
.co-success-page { max-width: 680px; margin: 0 auto; padding: 40px 20px 60px; }
.co-success-card {
    background: #fff; border: 1px solid #E5E7EB; border-radius: 16px;
    padding: 40px; text-align: center;
}
.co-success-icon { margin-bottom: 16px; }
.co-success-title { font-size: 26px; font-weight: 800; color: #101828; margin: 0 0 8px; }
.co-success-subtitle { font-size: 15px; color: #667085; margin: 0 0 24px; }
.co-order-number {
    display: inline-block; padding: 8px 20px; background: #F4F0FF;
    color: #7F56D9; font-size: 14px; font-weight: 700;
    border-radius: 8px; margin-bottom: 24px;
}
.co-order-details { text-align: left; margin-bottom: 24px; }
.co-order-table { width: 100%; border-collapse: collapse; }
.co-order-table th {
    padding: 10px 0; font-size: 12px; font-weight: 600; color: #667085;
    text-transform: uppercase; letter-spacing: 0.5px; text-align: left;
    border-bottom: 1px solid #E5E7EB;
}
.co-order-table td { padding: 12px 0; font-size: 14px; color: #344054; border-bottom: 1px solid #F2F4F7; }
.co-order-totals { border-top: 1px solid #E5E7EB; padding-top: 12px; margin-top: 12px; }
.co-processing { font-size: 14px; color: #667085; font-style: italic; margin: 20px 0; }

/* Downloads */
.co-downloads { text-align: left; margin-bottom: 24px; background: #F9FAFB; border-radius: 10px; padding: 16px; }
.co-dl-title { font-size: 14px; font-weight: 700; color: #101828; margin: 0 0 12px; }
.co-dl-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid #E5E7EB;
    font-size: 14px; color: #344054;
}
.co-dl-item:last-child { border-bottom: none; }
.co-dl-btn {
    padding: 6px 14px; background: #7F56D9; color: #fff;
    border-radius: 6px; font-size: 12px; font-weight: 600;
    text-decoration: none;
}
.co-dl-btn:hover { background: #6941C6; color: #fff; }

.co-success-actions { margin-top: 24px; }

/* Responsive */
@media (max-width: 991px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-row { grid-template-columns: 56px 1fr auto auto; gap: 10px; }
    .cart-row-price { display: none; }
    .cart-row-qty button { width: 24px; height: 24px; }
    .co-layout { grid-template-columns: 1fr; }
    .co-sidebar { position: static; }
}
@media (max-width: 600px) {
    .minicart-panel { width: 100%; max-width: 100%; }
    .cart-row { grid-template-columns: 48px 1fr auto; }
    .cart-row-qty { display: none; }
    .dash-stats { grid-template-columns: 1fr 1fr; }
    .co-form-grid { grid-template-columns: 1fr; }
    .co-success-card { padding: 24px 16px; }
}
