/* Scoped Cart styles; shared storefront components retain their existing design. */
.tea-cart { background: #fffdf8; color: #253d31; font: 16px/1.65 Arial, Helvetica, sans-serif; }
.tea-cart .cart-container { width: min(1200px, calc(100% - 64px)); margin: auto; padding: 48px 0 72px; }
.tea-cart .cart-eyebrow { color: #5b705b; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 12px; }
.tea-cart h1, .tea-cart h2 { color: #253d31; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.025em; }
.tea-cart h1 { font-size: clamp(36px, 4vw, 50px); margin: 0 0 16px; }
.tea-cart .cart-intro { color: #59675b; margin-bottom: 32px; }
.tea-cart .cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 40px; align-items: start; }
.tea-cart .cart-item { display: grid; grid-template-columns: 112px minmax(0, 1fr) auto; gap: 24px; padding: 28px 0; border-top: 1px solid #dedfd3; }
.tea-cart .cart-image img { display: block; width: 100%; height: auto; border-radius: 4px; }
.tea-cart .cart-item h2 { font-size: 25px; line-height: 1.25; margin: 0 0 10px; overflow-wrap: anywhere; }
.tea-cart .cart-item h2 a { color: inherit; }
.tea-cart .cart-item h2 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.tea-cart .cart-image:hover { opacity: .85; }
.tea-cart .cart-unit-price { margin: 0 0 8px; color: #59675b; }
.tea-cart .cart-update { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 16px 0 4px; }
.tea-cart .cart-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; height: auto; padding: 12px 20px; margin: 0; border: 1px solid #294d38; border-radius: 3px; background: #294d38; color: #fffdf8; font: 600 16px/1.4 Arial, Helvetica, sans-serif; letter-spacing: 0; text-transform: none; white-space: normal; text-align: center; }
.tea-cart .cart-button:hover { background: #193a27; border-color: #193a27; color: #fffdf8; }
.tea-cart .cart-button-secondary { background: transparent; color: #294d38; font-size: 14px; }
.tea-cart .cart-button:disabled { background: #e0e3d9; border-color: #b9c1b4; color: #53614e; cursor: not-allowed; opacity: 1; }
.tea-cart .cart-remove { margin: 0; }
.tea-cart .cart-remove-button { background: none; border: 0; padding: 10px 0; margin: 0; min-height: 44px; height: auto; color: #59675b; font: 15px/1.5 Arial, Helvetica, sans-serif; text-transform: none; letter-spacing: 0; text-decoration: underline; text-underline-offset: 4px; }
.tea-cart .cart-remove-button:hover { color: #253d31; }
.tea-cart .cart-line-total { text-align: right; font-weight: 600; margin: 0; white-space: nowrap; }
.tea-cart .cart-line-total span { display: block; font-size: 12px; font-weight: 400; color: #59675b; margin-bottom: 6px; }
.tea-cart .cart-summary { background: #f2f1e8; border: 1px solid #dedfd3; border-radius: 4px; padding: 28px; }
.tea-cart .cart-summary h2 { font-size: 28px; margin: 0 0 24px; }
.tea-cart .cart-summary dl { margin: 0; }
.tea-cart .cart-summary dl > div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 20px; }
.tea-cart .cart-summary dd { margin: 0; }
.tea-cart .cart-total { padding-top: 20px; border-top: 1px solid #d4d9cc; font-weight: 700; font-size: 20px; }
.tea-cart .cart-summary p { font-size: 14px; color: #59675b; }
.tea-cart .cart-summary .cart-button { width: 100%; }
.tea-cart .cart-problem { background: #f5eddd; color: #705222; border-left: 3px solid #aa8040; padding: 12px 16px; margin: 12px 0; font-size: 15px; }
.tea-cart .cart-continue { display: inline-flex; align-items: center; min-height: 44px; color: #294d38; text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
.tea-cart a:focus-visible, .tea-cart button:focus-visible { outline: 3px solid #996d2c; outline-offset: 4px; }
.tea-cart .cart-empty { text-align: center; border: 1px solid #dedfd3; background: #f2f1e8; padding: 40px 24px; border-radius: 4px; }
.tea-cart .cart-empty img { border-radius: 50%; margin-bottom: 16px; }
.tea-cart .cart-empty h2 { font-size: 32px; margin-bottom: 16px; }
.tea-cart .cart-empty p { color: #59675b; }
@media (max-width: 1050px) {
    .tea-cart .cart-layout { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
    .tea-cart .cart-container { width: calc(100% - 40px); padding: 32px 0 48px; }
    .tea-cart .cart-item { grid-template-columns: 72px minmax(0, 1fr); gap: 16px; }
    .tea-cart .cart-line-total { grid-column: 2; text-align: left; }
    .tea-cart .cart-line-total span { display: inline; margin-right: 12px; }
    .tea-cart .cart-item h2 { font-size: 23px; }
    .tea-cart .cart-summary { padding: 24px; }
}
