/* Store — Flipkart-style product cards, cart & wishlist */

.store-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Product Card */
.store-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}

.store-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.store-card--popular {
    border-color: rgba(201, 169, 98, 0.45);
}

.store-card__badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: #2874f0;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.store-card__media {
    position: relative;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.store-card__slider {
    position: relative;
    height: 220px;
    overflow: hidden;
    touch-action: pan-y;
}

.store-card__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.store-card__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.store-card__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.store-card__slide img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.store-card__slide-img--full {
    object-fit: contain;
    transform: scale(1);
}

.store-card__slide-img--top {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 180px;
    max-height: 180px;
    transform: scale(1.15);
}

.store-card__slide-img--center {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 180px;
    max-height: 180px;
    transform: scale(1.35);
}

.store-card__slide-img--bottom {
    object-fit: cover;
    object-position: center bottom;
    width: 100%;
    height: 180px;
    max-height: 180px;
    transform: scale(1.2);
}

.store-card__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.store-card:hover .store-card__nav,
.store-card__slider:focus-within .store-card__nav {
    opacity: 1;
}

.store-card__nav svg {
    width: 16px;
    height: 16px;
}

.store-card__nav--prev { left: 8px; }
.store-card__nav--next { right: 8px; }

.store-card__wish {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    margin: 0;
}

.store-card__wish-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}

.store-card__wish-btn svg {
    width: 18px;
    height: 18px;
}

.store-card__wish-btn:hover,
.store-card__wish-btn.is-active {
    color: #e53935;
    transform: scale(1.08);
}

.store-card__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 12px;
}

.store-card__dot {
    width: 7px;
    height: 7px;
    border: none;
    border-radius: 50%;
    background: #d4d4d4;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.store-card__dot.is-active {
    background: #2874f0;
    transform: scale(1.2);
}

.store-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.store-card__title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.store-card__rating-badge {
    background: #388e3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.3;
}

.store-card__stars {
    font-size: 10px;
    color: #ffc107;
    letter-spacing: -1px;
}

.store-card__reviews {
    font-size: 11px;
    color: #878787;
}

.store-card__price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.store-card__price {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
}

.store-card__mrp {
    font-size: 13px;
    color: #878787;
    text-decoration: line-through;
}

.store-card__off {
    font-size: 12px;
    font-weight: 600;
    color: #388e3c;
}

.store-card__features {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.store-card__features li {
    font-size: 11px;
    color: #666;
    padding: 2px 0;
    line-height: 1.4;
}

.store-card__features li::before {
    content: "• ";
    color: #2874f0;
}

.store-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 10px;
}

.store-card__form {
    display: flex;
    margin: 0;
}

.store-card__btn {
    width: 100%;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 42px;
    height: 42px;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    line-height: 1;
}

.store-card__btn svg {
    width: 15px;
    height: 15px;
}

.store-card__btn--cart {
    background: #ff9f00;
    color: #fff;
    border-color: #ff9f00;
}

.store-card__btn--cart:hover {
    background: #fb8c00;
}

.store-card__btn--buy {
    background: #fb641b;
    color: #fff;
    border-color: #fb641b;
}

.store-card__btn--buy:hover {
    background: #f4511e;
}

.store-card__share {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #2874f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s, background 0.2s;
}

.store-card__share svg {
    width: 18px;
    height: 18px;
}

.store-card__share:hover {
    color: #1565c0;
    transform: scale(1.08);
    background: #fff;
}

/* Store pages */
.store-page {
    padding: 120px 0 80px;
    background: #f1f3f6;
    min-height: 70vh;
}

.store-page__head {
    margin-bottom: 28px;
}

.store-page__head h1 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    color: var(--green-dark);
    margin: 0 0 6px;
}

.store-page__head p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.store-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.store-alert--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.store-alert--error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.store-card__btn.is-loading {
    opacity: 0.75;
    pointer-events: none;
}

.store-card__btn--cart span {
    white-space: nowrap;
}

/* Reusable image gallery (products + cart) */
.store-gallery {
    position: relative;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.store-gallery__track {
    position: relative;
    height: 200px;
}

.store-gallery--cart .store-gallery__track {
    height: 220px;
}

.store-gallery__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.store-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.store-gallery__img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.store-gallery--cart .store-gallery__img {
    max-height: 190px;
}

.store-gallery--cart .store-gallery__img.store-card__slide-img--top,
.store-gallery--cart .store-gallery__img.store-card__slide-img--center,
.store-gallery--cart .store-gallery__img.store-card__slide-img--bottom {
    width: 100%;
    height: 190px;
    max-height: 190px;
}

.store-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.store-gallery:hover .store-gallery__nav,
.store-gallery:focus-within .store-gallery__nav {
    opacity: 1;
}

.store-gallery__nav svg {
    width: 14px;
    height: 14px;
}

.store-gallery__nav--prev { left: 8px; }
.store-gallery__nav--next { right: 8px; }

.store-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 12px;
    background: #fff;
}

.store-gallery__dot {
    width: 7px;
    height: 7px;
    border: none;
    border-radius: 50%;
    background: #d4d4d4;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.store-gallery__dot.is-active {
    background: var(--gold, #c9a962);
    transform: scale(1.2);
}

/* Cart page */
.store-cart-page {
    background: linear-gradient(180deg, #f8f6f2 0%, #f1f3f6 100%);
}

.store-cart-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.store-cart-hero__text h1 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 38px);
    color: var(--green-dark);
    margin: 0 0 6px;
}

.store-cart-hero__text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.store-cart-steps {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-cart-steps__item {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    padding: 6px 12px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.store-cart-steps__item.is-done {
    background: var(--green-dark, #1a3d2e);
    color: #fff;
    border-color: var(--green-dark, #1a3d2e);
}

.store-cart-steps__line {
    width: 24px;
    height: 2px;
    background: #ddd;
    border-radius: 1px;
}

.store-cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.store-cart-items__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.store-cart-items__head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #212121;
}

.store-cart-items__head span {
    font-size: 13px;
    color: #878787;
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
}

.store-cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-cart-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s;
}

.store-cart-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.store-cart-item__media {
    min-width: 0;
}

.store-cart-item__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.store-cart-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.store-cart-item__title {
    font-size: 17px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 8px;
    line-height: 1.35;
}

.store-cart-item__rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.store-cart-item__rating-badge {
    background: #388e3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.store-cart-item__stars {
    font-size: 10px;
    color: #ffc107;
    letter-spacing: -1px;
}

.store-cart-item__reviews {
    font-size: 11px;
    color: #878787;
}

.store-cart-item__remove {
    margin: 0;
    flex-shrink: 0;
}

.store-cart-item__remove-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #eee;
    border-radius: 50%;
    background: #fff;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.store-cart-item__remove-btn svg {
    width: 16px;
    height: 16px;
}

.store-cart-item__remove-btn:hover {
    color: #e53935;
    border-color: #ffcdd2;
    background: #fff5f5;
}

.store-cart-item__price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.store-cart-item__price {
    font-size: 20px;
    font-weight: 700;
    color: #212121;
}

.store-cart-item__mrp {
    font-size: 14px;
    color: #878787;
    text-decoration: line-through;
}

.store-cart-item__off {
    font-size: 12px;
    font-weight: 700;
    color: #388e3c;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 4px;
}

.store-cart-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.store-cart-item__qty-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-cart-item__qty-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.store-qty--cart {
    border-radius: 8px;
    border-color: #d0d0d0;
}

.store-qty--cart .store-qty__btn {
    width: 36px;
    height: 36px;
}

.store-qty--cart .store-qty__input {
    width: 48px;
    height: 36px;
}

.store-cart-item__update-btn {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #2874f0;
    background: #e3f2fd;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background 0.2s;
}

.store-cart-item__update-btn:hover {
    background: #bbdefb;
}

.store-cart-item__line-total {
    text-align: right;
}

.store-cart-item__line-total span {
    display: block;
    font-size: 11px;
    color: #878787;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.store-cart-item__line-total strong {
    font-size: 20px;
    color: var(--green-dark, #1a3d2e);
}

.store-qty-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.store-qty-form label {
    font-size: 12px;
    color: #666;
}

.store-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.store-qty__btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

.store-qty__input {
    width: 44px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    -moz-appearance: textfield;
}

.store-qty__input::-webkit-outer-spin-button,
.store-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.store-link-btn {
    border: none;
    background: none;
    color: #2874f0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-sans);
}

.store-link-btn--danger {
    color: #e53935;
}

.store-cart-summary {
    position: sticky;
    top: 100px;
}

.store-cart-summary--pro .store-cart-summary__card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.store-cart-summary__savings {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #2e7d32;
    margin-bottom: 18px;
}

.store-cart-summary__savings svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.store-cart-summary__savings strong {
    font-weight: 700;
}

.store-cart-summary h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #212121;
    text-transform: none;
    letter-spacing: 0;
}

.store-cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #212121;
    border-bottom: 1px dashed #e0e0e0;
}

.store-cart-summary__free {
    color: #388e3c;
    font-weight: 600;
}

.store-cart-summary__total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 16px;
}

.store-cart-summary__total strong {
    font-size: 18px;
    color: #212121;
}

.store-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: #fb641b;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.store-checkout-btn:hover {
    background: #f4511e;
}

.store-checkout-btn--outline {
    background: #fff;
    color: #fb641b !important;
    border: 1px solid #fb641b;
}

.store-continue-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #2874f0;
    text-decoration: none;
}

.store-empty {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 60px 24px;
    border: 1px solid #e8e8e8;
}

.store-empty__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.store-empty h2 {
    font-size: 22px;
    margin: 0 0 8px;
    color: #212121;
}

.store-empty p {
    color: #666;
    margin: 0 0 24px;
}

.store-cart-summary__row--discount span:last-child {
    color: #388e3c;
    font-weight: 600;
}

.store-cart-trust {
    list-style: none;
    margin: 20px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid #f0f0f0;
}

.store-cart-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #666;
    padding: 6px 0;
}

.store-cart-trust svg {
    width: 18px;
    height: 18px;
    color: var(--gold, #c9a962);
    flex-shrink: 0;
}

.store-empty--cart .store-empty__icon svg {
    width: 56px;
    height: 56px;
    color: #ccc;
}

/* Header store icons */
.header-store-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-store-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    transition: color 0.2s;
    border-radius: 6px;
}

.header-store-link:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.header-store-link svg {
    width: 22px;
    height: 22px;
}

.header-store-badge {
    position: absolute;
    top: 0;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #fb641b;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Checkout */
.store-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.store-checkout-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.store-checkout-card h2 {
    margin: 0 0 20px;
    font-size: 20px;
    color: #212121;
}

.store-checkout-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #444;
}

.store-checkout-field {
    margin-bottom: 18px;
}

.store-checkout-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.store-checkout-field label span {
    color: #e53935;
}

.store-checkout-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-sans);
    background: #fff;
    transition: border-color 0.2s;
}

.store-checkout-input:focus {
    outline: none;
    border-color: var(--gold, #c9a962);
}

.store-checkout-input:disabled {
    background: #f5f5f5;
    color: #666;
}

.store-checkout-textarea {
    resize: vertical;
    min-height: 88px;
}

.store-checkout-payment {
    margin: 24px 0 20px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.store-checkout-btn--place {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    background: #fb641b;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.store-checkout-btn--place:hover {
    background: #f4511e;
}

.store-checkout-items {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    border-bottom: 1px dashed #e8e8e8;
}

.store-checkout-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.store-checkout-item:last-child {
    border-bottom: none;
}

.store-checkout-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #fafafa;
    border-radius: 8px;
    padding: 4px;
}

.store-checkout-item strong {
    display: block;
    font-size: 13px;
    color: #212121;
    margin-bottom: 4px;
}

.store-checkout-item span {
    font-size: 12px;
    color: #878787;
}

.store-checkout-item__total {
    font-weight: 700;
    font-size: 14px;
    color: #212121;
}

.store-checkout-errors {
    margin: 0;
    padding-left: 18px;
}

.store-checkout-summary .store-cart-summary__card {
    position: sticky;
    top: 100px;
}

/* Products page flash */
.store-flash {
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Responsive */
@media (max-width: 1100px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .store-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .store-cart-layout {
        grid-template-columns: 1fr;
    }

    .store-cart-item {
        grid-template-columns: 1fr;
    }

    .store-gallery--cart .store-gallery__track {
        height: 240px;
    }

    .store-cart-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-cart-item__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .store-cart-item__line-total {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .store-checkout-layout {
        grid-template-columns: 1fr;
    }

    .store-gallery__nav,
    .store-card__nav {
        opacity: 1;
    }

    .header-store-link span:not(.header-store-badge) {
        display: none;
    }
}

@media (max-width: 480px) {
    .store-card__actions {
        grid-template-columns: 1fr;
    }
}
