/* ============================================================
   Product & Cart pages
   ============================================================ */

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: 'Roboto', sans-serif; font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #c5b4ff; }
.breadcrumb .sep { color: var(--text-muted); opacity: 0.5; }
.breadcrumb .current { color: var(--text); }

/* Product hero layout */
.product-hero { padding-top: 110px; padding-bottom: 40px; }
.product-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: start; }
@media (max-width: 960px) { .product-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Gallery */
.product-gallery { position: sticky; top: 96px; }
@media (max-width: 960px) { .product-gallery { position: static; } }
.pg-main { position: relative; aspect-ratio: 1 / 1; width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(circle at 30% 25%, rgba(138,96,255,0.22), transparent 55%), linear-gradient(135deg, rgba(61,32,251,0.16), rgba(109,0,231,0.08)); border: 1px solid rgba(255,255,255,0.09); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 60px rgba(2,4,12,0.4); }
.pg-main img { width: 100%; height: 100%; object-fit: contain; display: block; transition: opacity 0.3s var(--ease); }
.pg-main.loading img { opacity: 0.35; }
.pg-main--zoomable { cursor: zoom-in; }
.pg-main--zoomable img { pointer-events: none; }

/* Lightbox */
#tbLightbox { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.22s ease; }
#tbLightbox.active { opacity: 1; pointer-events: all; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(2,4,12,0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.lb-img-wrap { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
.lb-img { max-width: 90vw; max-height: 88vh; width: auto; height: auto; border-radius: 14px; box-shadow: 0 32px 80px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.07); opacity: 0; transition: opacity 0.22s ease; display: block; }
.lb-close { position: fixed; top: 18px; right: 22px; z-index: 10; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.18s; }
.lb-close:hover { background: rgba(255,255,255,0.18); }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); z-index: 10; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: #fff; font-size: 36px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.18s, border-color 0.18s; }
.lb-arrow:hover { background: rgba(138,96,255,0.28); border-color: rgba(138,96,255,0.55); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
@media (max-width: 600px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-arrow { width: 42px; height: 42px; font-size: 28px; } }
.pg-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 14px; }
.pg-thumb { aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); padding: 0; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-thumb:hover { border-color: rgba(138,96,255,0.5); transform: translateY(-2px); }
.pg-thumb.active { border-color: var(--border-bright); box-shadow: 0 0 0 1px rgba(138,96,255,0.4); }

/* Info column */
.product-info { padding-top: 6px; text-align: left; }
.product-info .mp-chip { margin-bottom: 18px; font-size: 10px; }

.product-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 16px; color: var(--text); text-align: left; }

.product-retail-price { font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--text-muted); font-weight: 400; text-decoration: line-through; display: block; margin-bottom: 4px; letter-spacing: 0.2px; }
.product-price { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 30px; letter-spacing: 0.2px; color: #fff; display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.product-price .pp-period { font-family: 'Roboto', sans-serif; font-size: 13px; color: var(--text-dim); font-weight: 400; letter-spacing: 0.3px; text-transform: lowercase; }
.product-price.free { color: #8affb0; }

.product-summary { color: var(--text-dim); font-size: 14.5px; line-height: 1.68; margin-bottom: 26px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: left; }
.product-summary ul { list-style: none; padding: 0; margin: 0 0 0 8px; display: flex; flex-direction: column; gap: 8px; }
.product-summary li { display: flex; align-items: center; gap: 10px; margin: 0; padding: 0; }
.product-summary li::before { content: ''; display: inline-block; flex-shrink: 0; width: 14px; height: 14px; background-image: url('https://tickblaze.com/wp-content/uploads/tickblaze-assets/logos/tickblaze-fire.png'); background-size: contain; background-repeat: no-repeat; background-position: center; border-radius: 0; box-shadow: none; }
/* Capital pricing rows: table layout so prices align right after the longest
   label ("VIP Live AMA + Strategy Training") instead of stretching to the
   far edge of the container. Each column is sized by its widest cell. */
.product-summary ul.capital-list { display: table; width: auto; border-spacing: 0; border-collapse: collapse; }
/* Specificity bump: .product-summary li (0,0,1,1) was overriding plain .capital-item (0,0,1,0)
   so display:flex on the li was winning, breaking the table-cell column alignment. The
   prefixed selector now wins, table-row reliably activates, and prices stack in a column. */
.product-summary li.capital-item { display: table-row; gap: 0; padding: 0; }
.product-summary li.capital-item::before { display: table-cell; padding: 5px 18px 5px 0; vertical-align: middle; width: 14px; height: 14px; background-size: 14px 14px; background-position: 0 center; }
.capital-item br { display: none; }
.capital-item-text { display: table-cell; padding: 5px 10px 5px 0; vertical-align: middle; white-space: nowrap; }
.separator { display: table-cell; color: var(--text-muted); padding: 5px 10px 5px 0; vertical-align: middle; white-space: nowrap; text-align: center; }
.capital-item-value { display: table-cell; color: var(--text); font-weight: 600; vertical-align: middle; white-space: nowrap; padding: 5px 0; text-align: left; }
.product-summary li strong, .product-summary li b { color: var(--text); font-weight: 600; }
.product-summary p { margin-bottom: 10px; }
.product-summary p:last-child { margin-bottom: 0; }
.product-summary u b, .product-summary b u { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; text-decoration: none; color: #c5b4ff; display: block; margin-bottom: 14px; }

/* Variations */
.product-variations { margin-bottom: 24px; }
.pv-label { font-family: 'Roboto', sans-serif; font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.pv-options { display: flex; flex-wrap: wrap; gap: 10px; }
.pv-opt { padding: 12px 20px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.02); color: var(--text); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.2px; cursor: pointer; transition: all 0.2s var(--ease); }
.pv-opt:hover { border-color: rgba(138,96,255,0.45); }
.pv-opt.active { background: linear-gradient(135deg, rgba(61,32,251,0.3), rgba(109,0,231,0.18)); border-color: var(--border-bright); color: #fff; box-shadow: 0 0 0 1px rgba(138,96,255,0.25); }

/* Quantity */
.product-qty { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; background: rgba(255,255,255,0.02); margin-right: 14px; margin-bottom: 16px; overflow: hidden; }
.product-qty button { width: 40px; height: 44px; background: transparent; color: var(--text); border: none; font-size: 20px; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.15s; }
.product-qty button:hover { background: rgba(138,96,255,0.14); }
.product-qty input { width: 50px; height: 44px; text-align: center; background: transparent; border: none; color: var(--text); font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 500; -moz-appearance: textfield; }
.product-qty input::-webkit-outer-spin-button,
.product-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-qty input:focus { outline: none; }

/* Actions */
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 28px; width: 100%; }
.product-actions .btn { min-height: 50px; padding: 0 26px; font-size: 14px; }
.add-to-cart-btn { width: 100%; flex: 1 1 100%; min-width: 0; }
/* Mobile: stretch Add to Cart full width of the product info column so it
   reads as the primary action instead of a small left-aligned pill. */
@media (max-width: 640px) {
  .product-actions { width: 100%; }
  .product-actions .btn,
  .add-to-cart-btn { width: 100%; min-width: 0; flex: 1 1 100%; padding: 0 20px; font-size: 15px; min-height: 54px; }
}

/* Trust pills */
.product-trust { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.pt-item { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid rgba(255,255,255,0.09); border-radius: 6px; background: rgba(255,255,255,0.02); font-family: 'Roboto', sans-serif; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-dim); }
.pt-item svg { width: 12px; height: 12px; stroke: #8affb0; }

/* Description wrap */
.product-desc-wrap { max-width: 960px; margin: 80px auto 0; padding: 0 20px; }
.product-desc-wrap h2 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); text-transform: uppercase; letter-spacing: -0.2px; margin-bottom: 24px; color: var(--text); }
.product-desc { color: var(--text-dim); font-size: 15px; line-height: 1.75; }
.product-desc h2, .product-desc h3, .product-desc h4 { font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--text); margin: 28px 0 12px; letter-spacing: 0.2px; }
.product-desc h2 { font-size: 22px; text-transform: uppercase; }
.product-desc h3 { font-size: 18px; }
.product-desc h4 { font-size: 15px; letter-spacing: 1.2px; text-transform: uppercase; color: #c5b4ff; }
.product-desc p { margin-bottom: 14px; }
.product-desc ul, .product-desc ol { padding-left: 22px; margin-bottom: 14px; }
.product-desc li { margin-bottom: 6px; }
.product-desc a { color: #c5b4ff; text-decoration: underline; text-underline-offset: 3px; }
.product-desc img { max-width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); margin: 16px 0; display: block; }
.product-desc table { width: 100%; border-collapse: collapse; margin: 16px 0; background: rgba(255,255,255,0.02); border-radius: 12px; overflow: hidden; }
.product-desc th, .product-desc td { padding: 12px 16px; border: 1px solid rgba(255,255,255,0.08); text-align: left; }
.product-desc th { background: rgba(138,96,255,0.1); color: var(--text); font-weight: 600; font-family: 'Roboto', sans-serif; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.product-desc strong, .product-desc b { color: var(--text); font-weight: 600; }
.product-desc iframe { max-width: 100%; border-radius: 12px; margin: 16px 0; border: 1px solid rgba(255,255,255,0.08); }

/* Related grid */
.related-wrap { max-width: 1200px; margin: 100px auto 120px; padding: 0 20px; }
.related-wrap h3 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(20px, 2.6vw, 28px); text-transform: uppercase; letter-spacing: -0.2px; margin-bottom: 32px; color: var(--text); }
@media (max-width: 860px) { .related-wrap { margin: 72px auto 80px; } }

/* Marketplace card styles (used in related grid + marketplace page) */
.mp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .mp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .mp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mp-grid { grid-template-columns: 1fr; } }

.mp-card { position: relative; display: flex; flex-direction: column; background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.015) 100%); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); backdrop-filter: blur(22px) saturate(135%); -webkit-backdrop-filter: blur(22px) saturate(135%); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease); overflow: hidden; color: inherit; text-decoration: none; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 1px 0 rgba(0,0,0,0.35), 0 18px 38px rgba(2,4,12,0.28); isolation: isolate; }
.mp-card:hover { border-color: rgba(138,96,255,0.55); transform: translateY(-6px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 1px 0 rgba(0,0,0,0.35), 0 30px 60px rgba(61,32,251,0.28), 0 0 0 1px rgba(138,96,255,0.25); background: linear-gradient(180deg, rgba(138,96,255,0.08) 0%, rgba(255,255,255,0.02) 100%); }
.mp-card.hidden { display: none; }
.mp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(138,96,255,0.75), rgba(46,99,254,0.6), transparent); opacity: 0.45; transition: opacity 0.35s; z-index: 3; }
.mp-card:hover::before { opacity: 1; }
.mp-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.08) 45%, transparent 60%); transform: translateX(-60%); transition: transform 0.9s var(--ease-soft); pointer-events: none; z-index: 2; }
.mp-card:hover::after { transform: translateX(60%); }

.mp-thumb { aspect-ratio: 1 / 1; width: 100%; background: radial-gradient(circle at 30% 25%, rgba(138,96,255,0.22), transparent 55%), linear-gradient(135deg, rgba(61,32,251,0.16), rgba(109,0,231,0.08)); border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; position: relative; }
.mp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-soft), filter 0.4s var(--ease); filter: saturate(0.96); }
.mp-card:hover .mp-thumb img { transform: scale(1.06); filter: saturate(1.08); }
.mp-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,11,5,0.0) 55%, rgba(2,11,5,0.65) 100%); pointer-events: none; }

.mp-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 2; }
.mp-chip { align-self: flex-start; font-family: 'Roboto', sans-serif; font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: #c5b4ff; padding: 4px 10px; border: 1px solid rgba(138,96,255,0.35); border-radius: 4px; background: rgba(138,96,255,0.10); backdrop-filter: blur(6px); margin-bottom: 12px; }
.mp-chip.free { color: #8affb0; border-color: rgba(138,255,176,0.32); background: rgba(138,255,176,0.08); }
.mp-chip.edu { color: #ffd58a; border-color: rgba(255,213,138,0.32); background: rgba(255,213,138,0.07); }

.mp-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 17px; letter-spacing: 0.2px; text-transform: uppercase; color: var(--text); margin-bottom: 8px; line-height: 1.22; }
.mp-desc { color: var(--text-dim); font-size: 13px; line-height: 1.55; margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.mp-cta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 14px; width: 100%; border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.2px; background: linear-gradient(135deg, #3655ff 0%, #4438e8 100%); border: 1px solid rgba(116,135,255,0.5); color: #fff; transition: all 0.2s var(--ease); text-decoration: none; box-shadow: 0 6px 18px rgba(54,85,255,0.3); }
.mp-card:hover .mp-cta { background: linear-gradient(135deg, rgba(61,32,251,0.35), rgba(109,0,231,0.25)); border-color: var(--border-bright); }
.mp-cta svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.2s; }
.mp-card:hover .mp-cta svg { transform: translate(2px, -2px); }

/* ============================================================
   Nav cart badge
   ============================================================ */
.nav-cart-btn { display: inline-flex; align-items: center; justify-content: center; position: relative; width: 42px; height: 42px; padding: 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09); color: var(--text); transition: all 0.2s var(--ease); }
.nav-cart-btn:hover { border-color: rgba(138,96,255,0.5); background: rgba(138,96,255,0.1); }
.nav-cart-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 6px; background: linear-gradient(135deg, #3d20fb, #8a60ff); color: #fff; font-family: 'Roboto', sans-serif; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 10px rgba(138,96,255,0.55); opacity: 0; transform: scale(0.6); transition: all 0.2s var(--ease); pointer-events: none; }
.nav-cart-count.has-items { opacity: 1; transform: scale(1); }

/* ============================================================
   Toast
   ============================================================ */
#tbToastWrap { position: fixed; bottom: 22px; right: 22px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; pointer-events: none; }
.tb-toast { pointer-events: auto; display: inline-flex; align-items: center; gap: 10px; padding: 13px 18px; background: rgba(18,14,32,0.92); border: 1px solid rgba(138,96,255,0.4); border-radius: 12px; backdrop-filter: blur(14px); color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.1px; box-shadow: 0 12px 28px rgba(2,4,12,0.45); opacity: 0; transform: translateY(10px); transition: all 0.26s var(--ease); }
.tb-toast.show { opacity: 1; transform: translateY(0); }
.tb-toast svg { stroke: #8affb0; flex-shrink: 0; }

/* ============================================================
   Cart page
   ============================================================ */
.cart-page { padding-top: 110px; padding-bottom: 80px; }
.cart-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: clamp(28px, 4.5vw, 48px); text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 34px; color: var(--text); }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 36px; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-items { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 100px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 22px 22px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cart-item:last-child { border-bottom: none; }
@media (max-width: 620px) { .cart-item { grid-template-columns: 68px minmax(0, 1fr); grid-template-rows: auto auto; gap: 12px 16px; padding: 16px; } .cart-item-right { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 12px; } }

.ci-thumb { aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.ci-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ci-meta { min-width: 0; }
.ci-chip { display: inline-block; font-family: 'Roboto', sans-serif; font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase; color: #c5b4ff; padding: 3px 8px; border: 1px solid rgba(138,96,255,0.35); border-radius: 4px; background: rgba(138,96,255,0.1); margin-bottom: 8px; }
.ci-chip.free { color: #8affb0; border-color: rgba(138,255,176,0.32); background: rgba(138,255,176,0.08); }
.ci-chip.edu { color: #ffd58a; border-color: rgba(255,213,138,0.32); background: rgba(255,213,138,0.07); }
.ci-title { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2px; color: var(--text); margin-bottom: 6px; line-height: 1.2; }
.ci-title a { color: inherit; text-decoration: none; }
.ci-title a:hover { color: #c5b4ff; }
.ci-variation { font-size: 12px; color: var(--text-muted); font-family: 'Roboto', sans-serif; }

.ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.ci-price { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: #fff; }
.ci-price.free { color: #8affb0; }
.ci-controls { display: flex; align-items: center; gap: 12px; }
.ci-qty { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; overflow: hidden; }
.ci-qty button { width: 30px; height: 32px; background: transparent; color: var(--text); border: none; cursor: pointer; font-size: 16px; }
.ci-qty button:hover { background: rgba(138,96,255,0.12); }
.ci-qty input { width: 40px; height: 32px; text-align: center; background: transparent; border: none; color: var(--text); font-size: 13px; font-family: 'Roboto', sans-serif; -moz-appearance: textfield; }
.ci-qty input::-webkit-outer-spin-button,
.ci-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ci-qty input:focus { outline: none; }
.ci-remove { background: transparent; border: none; color: var(--text-muted); cursor: pointer; padding: 6px; border-radius: 6px; transition: all 0.15s; }
.ci-remove:hover { color: #ff7c7c; background: rgba(255,124,124,0.08); }

.cart-empty { padding: 80px 30px; text-align: center; color: var(--text-dim); }
.cart-empty h3 { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2px; margin-bottom: 14px; color: var(--text); }
.cart-empty p { max-width: 420px; margin: 0 auto 24px; font-size: 14px; line-height: 1.6; }

.cart-summary { border-radius: var(--radius-lg); border: 1px solid rgba(138,96,255,0.25); background: linear-gradient(135deg, rgba(61,32,251,0.12), rgba(109,0,231,0.05)); padding: 28px; backdrop-filter: blur(14px); position: sticky; top: 96px; }
@media (max-width: 900px) { .cart-summary { position: static; } }
.cart-summary h4 { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text); margin-bottom: 18px; }
.cs-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; color: var(--text-dim); font-size: 14px; }
.cs-row.total { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px; padding-top: 16px; font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.2px; }
.cs-note { font-size: 11px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; font-family: 'Roboto', sans-serif; letter-spacing: 0.1px; }
.cs-checkout { width: 100%; margin-top: 18px; min-height: 52px; font-size: 14px; letter-spacing: 0.4px; }
.cs-continue { display: block; text-align: center; margin-top: 14px; font-size: 12px; color: var(--text-muted); font-family: 'Roboto', sans-serif; letter-spacing: 0.4px; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.cs-continue:hover { color: #c5b4ff; }

.cart-benefits { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.cb-item { display: flex; align-items: flex-start; gap: 10px; color: var(--text-dim); font-size: 12.5px; line-height: 1.5; }
.cb-item svg { flex-shrink: 0; margin-top: 2px; stroke: #8affb0; }
