/* ═══════════════════════════════════════════════
   EastCliff Product Cards v2.1.3
   Font: Inter — Monochrome — Flat cards — Left aligned
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.epc-wrapper, .epc-wrapper *, .epc-wrapper *::before, .epc-wrapper *::after {
    box-sizing: border-box; margin: 0; padding: 0;
}
.epc-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── Grid ─── */
.epc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ─── Section Heading ─── */
.epc-section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    text-align: left;
}

/* ═══════════════════════════════════════════════
   CARD
   ═══════════════════════════════════════════════ */
.epc-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ─── Image ─── */
.epc-card__img {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.epc-card__img-link {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.epc-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

/* Hover: Zoom */
.epc-hover--zoom .epc-card__image--primary { transition: transform 0.5s ease; }
.epc-hover--zoom:hover .epc-card__image--primary { transform: scale(1.06); }

/* Hover: Swap */
.epc-hover--swap .epc-card__image--secondary {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0;
    transition: opacity 0.5s ease;
}
.epc-hover--swap .epc-card__image--primary { transition: opacity 0.5s ease; }
.epc-hover--swap:hover .epc-card__image--primary { opacity: 0; }
.epc-hover--swap:hover .epc-card__image--secondary { opacity: 1; }

/* ═══════════════════════════════════════════════
   BADGES
   ═══════════════════════════════════════════════ */
.epc-badges {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.epc-badge-pos--top-left .epc-badges    { top: 8px; left: 8px; }
.epc-badge-pos--top-right .epc-badges   { top: 8px; right: 8px; align-items: flex-end; }
.epc-badge-pos--bottom-left .epc-badges { bottom: 8px; left: 8px; }
.epc-badge-pos--bottom-right .epc-badges{ bottom: 8px; right: 8px; align-items: flex-end; }

.epc-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 100px;
    white-space: nowrap;
}

/* Variants */
.epc-badge--discount     { background: #0a0a0a; color: #fff; }
.epc-badge--discount-text{ background: #0a0a0a; color: #fff; }
.epc-badge--new          { background: #fff; color: #0a0a0a; border: 1px solid #d4d4d4; }
.epc-badge--bestseller   { background: #0a0a0a; color: #fff; }
.epc-badge--flash        { background: #0a0a0a; color: #fff; gap: 5px; }
.epc-badge--preorder     { background: #404040; color: #fff; }
.epc-badge--sold         { background: #525252; color: #fff; }

/* Flash Sale red dot */
.epc-flash-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #ef4444;
    animation: epc-pulse 1.2s infinite;
    flex-shrink: 0;
}
@keyframes epc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.epc-countdown {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    margin-left: 3px;
    font-size: 10px;
}

/* ═══════════════════════════════════════════════
   SOLD OUT STATE
   ═══════════════════════════════════════════════ */
.epc-card--sold .epc-card__img::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.5);
    z-index: 1; pointer-events: none;
}
.epc-card--sold .epc-card__image {
    filter: grayscale(0.7) opacity(0.7);
}

/* ═══════════════════════════════════════════════
   CARD CONTENT — all left aligned
   ═══════════════════════════════════════════════ */
.epc-card__body {
    padding: 10px 10px 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.epc-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 4px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: left;
    flex: 1;
}
.epc-card__title a {
    color: inherit;
    text-decoration: none;
}

/* Rating */
.epc-card__rating { margin-bottom: 4px; text-align: left; }
.epc-card__rating .star-rating { font-size: 12px; color: #0a0a0a; }

/* Price — stacked vertical, left aligned */
.epc-card__price {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.4;
    text-align: left;
}
.epc-card__price del {
    color: #a3a3a3;
    font-weight: 400;
    font-size: 11px;
    text-decoration: line-through;
    display: block;
    line-height: 1.2;
}
.epc-card__price ins {
    text-decoration: none;
    font-weight: 700;
    color: #0a0a0a;
    display: block;
    line-height: 1.3;
}

/* Sold out price */
.epc-card--sold .epc-card__price,
.epc-card--sold .epc-card__price ins { color: #a3a3a3; }

/* ─── Add to Cart ─── */
.epc-btn--atc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.epc-btn--atc:hover { background: #404040; }
.epc-btn--atc:active { transform: scale(0.97); }
.epc-btn--atc.epc-loading { pointer-events: none; opacity: 0.6; }
.epc-btn--atc.epc-added { background: #262626; }
.epc-btn--atc svg { flex-shrink: 0; }

/* ─── Toast ─── */
.epc-toast {
    position: fixed; bottom: 28px; right: 28px;
    background: #0a0a0a; color: #fff;
    padding: 14px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 600;
    border-radius: 10px; z-index: 999999;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; max-width: 320px;
}
.epc-toast.epc-active { opacity: 1; transform: translateY(0); pointer-events: all; }
.epc-toast a { color: #d4d4d4; text-decoration: underline; font-weight: 400; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — scale up for larger screens
   ═══════════════════════════════════════════════ */
@media (min-width: 769px) {
    .epc-card__body { padding: 14px 16px 16px; }
    .epc-card__title { font-size: 14px; margin-bottom: 6px; }
    .epc-card__price { font-size: 14px; }
    .epc-card__price del { font-size: 12px; }
    .epc-badge { font-size: 11px; padding: 4px 12px; }
    .epc-badge-pos--top-left .epc-badges { top: 10px; left: 10px; }
    .epc-badge-pos--top-right .epc-badges { top: 10px; right: 10px; }
    .epc-badges { gap: 5px; }
    .epc-btn--atc { font-size: 11px; padding: 10px; margin-top: 12px; }
}

@media (max-width: 480px) {
    .epc-card { border-radius: 10px; }
    .epc-card__body { padding: 8px 8px 10px; }
    .epc-card__title { font-size: 11px; margin-bottom: 2px; }
    .epc-card__price { font-size: 11px; }
    .epc-card__price del { font-size: 9px; }
    .epc-badge { font-size: 8px; padding: 2px 6px; }
    .epc-badge-pos--top-left .epc-badges { top: 5px; left: 5px; }
    .epc-badge-pos--top-right .epc-badges { top: 5px; right: 5px; }
    .epc-badges { gap: 3px; }
    .epc-flash-dot { width: 3px; height: 3px; }
    .epc-countdown { font-size: 8px; margin-left: 2px; }
    .epc-btn--atc { font-size: 9px; padding: 7px; margin-top: 6px; }
    .epc-section-heading { font-size: 20px; margin-bottom: 16px; }
    .epc-toast { left: 12px; right: 12px; bottom: 12px; border-radius: 8px; font-size: 12px; padding: 12px 16px; }
}


/* ═══════════════════════════════════════════════
   WIDGET: ADD TO CART (standalone)
   ═══════════════════════════════════════════════ */

/* Wrapper */
.epc-atc-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Variation groups */
.epc-atc__variations { display: flex; flex-direction: column; gap: 14px; }
.epc-atc__var-group  { display: flex; flex-direction: column; gap: 8px; }

.epc-atc__var-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a0a0a;
}
.epc-atc__var-chosen {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    color: #737373;
    margin-left: 4px;
}

/* Dropdown select */
.epc-atc__select {
    width: 100%;
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.epc-atc__select:focus { outline: none; border-color: #0a0a0a; }

/* Button swatches */
.epc-atc__swatches { display: flex; flex-wrap: wrap; gap: 6px; }

.epc-atc__swatch {
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    line-height: 1;
}
.epc-atc__swatch:hover          { border-color: #0a0a0a; }
.epc-atc__swatch.is-active      { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.epc-atc__swatch.is-unavailable { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* Variation price */
.epc-atc__var-price {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
}
.epc-atc__var-price del {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #a3a3a3;
    text-decoration: line-through;
    line-height: 1.2;
}
.epc-atc__var-price ins { text-decoration: none; display: block; }

/* ── Inline row: qty + button ── */
.epc-atc__row {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-top: 4px;
}

/* ── Quantity widget (shared by ATC + Cart) ── */
.epc-atc__qty-wrap,
.epc-cart__qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
    width: 110px;
}

.epc-atc__qty-btn,
.epc-cart__qty-btn {
    width: 32px;
    height: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #0a0a0a;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
    line-height: 1;
}
.epc-atc__qty-btn:hover,
.epc-cart__qty-btn:hover { background: #f5f5f5; }
.epc-atc__qty-btn:disabled,
.epc-cart__qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.epc-atc__qty-input,
.epc-cart__qty-input {
    flex: 1;
    width: 0;
    min-width: 0;
    text-align: center;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    background: transparent;
    -moz-appearance: textfield;
    padding: 0;
}
.epc-atc__qty-input::-webkit-outer-spin-button,
.epc-atc__qty-input::-webkit-inner-spin-button,
.epc-cart__qty-input::-webkit-outer-spin-button,
.epc-cart__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ── ATC button ── */
.epc-atc__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 18px;
    min-height: 40px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}
.epc-atc__btn:hover:not(:disabled) { background: #404040; }
.epc-atc__btn:active  { transform: scale(0.97); }
.epc-atc__btn.epc-loading  { pointer-events: none; opacity: 0.6; }
.epc-atc__btn.epc-added    { background: #262626; }
.epc-atc__btn.is-disabled,
.epc-atc__btn:disabled     {
    background: #d4d4d4;
    color: #a3a3a3;
    cursor: not-allowed;
    pointer-events: none;
}
.epc-atc__btn svg { flex-shrink: 0; }


/* ═══════════════════════════════════════════════
   WIDGET: CART PAGE
   ═══════════════════════════════════════════════ */

.epc-cart-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Layout ── */
.epc-cart__layout { display: flex; flex-direction: column; gap: 32px; }
.epc-cart__layout--sidebar { flex-direction: row; align-items: flex-start; }
.epc-cart__layout--sidebar .epc-cart__left  { flex: 1 1 0; min-width: 0; }
.epc-cart__layout--sidebar .epc-cart__right { flex: 0 0 320px; width: 320px; }

/* ── Empty ── */
.epc-cart__empty {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #a3a3a3;
}
.epc-cart__empty p {
    font-size: 15px;
    font-weight: 500;
    color: #737373;
    margin: 0;
}
.epc-cart__empty svg { color: #d4d4d4; }

/* ── Table wrap ── */
.epc-cart__table-wrap {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.epc-cart__table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

.epc-cart__table th {
    padding: 12px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #737373;
    text-align: left;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    white-space: nowrap;
}
.epc-cart__table td {
    padding: 14px;
    font-size: 13px;
    color: #0a0a0a;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}
.epc-cart__table tbody tr:last-child td { border-bottom: none; }
.epc-cart__table .epc-cart__col-remove { width: 28px; padding-right: 0; }
.epc-cart__table .epc-cart__col-img    { width: 80px; }
.epc-cart__table .epc-cart__col-price,
.epc-cart__table .epc-cart__col-total  { white-space: nowrap; }
.epc-cart__table .epc-cart__col-qty    { white-space: nowrap; }

/* Remove button */
.epc-cart__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    color: #a3a3a3;
    cursor: pointer;
    border-radius: 50%;
    transition: color 0.15s, background 0.15s;
    padding: 0;
}
.epc-cart__remove:hover        { color: #ef4444; background: #fff0f0; }
.epc-cart__remove:disabled     { opacity: 0.4; cursor: not-allowed; }

/* Product cell */
.epc-cart__prod-img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.epc-cart__img-placeholder {
    width: 64px;
    height: 64px;
    background: #f0f0f0;
    border-radius: 8px;
}
.epc-cart__prod-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}
.epc-cart__prod-name a {
    color: #0a0a0a;
    text-decoration: none;
}
.epc-cart__prod-name a:hover { text-decoration: underline; }

.epc-cart__prod-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-top: 5px;
}
.epc-cart__prod-variation {
    font-size: 11px;
    color: #737373;
}
.epc-cart__prod-variation strong { color: #0a0a0a; font-weight: 600; }

/* Price cells */
.epc-cart__price, .epc-cart__line-total {
    font-size: 13px;
    font-weight: 600;
}
.epc-cart__line-total { font-weight: 700; }

/* ── Table footer ── */
.epc-cart__table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

/* Coupon */
.epc-cart__coupon {
    display: flex;
    align-items: center;
    gap: 8px;
}
.epc-cart__coupon-input {
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    width: 180px;
}
.epc-cart__coupon-input:focus { border-color: #0a0a0a; }

/* Secondary buttons (Update, Apply Coupon, Continue) */
.epc-cart__btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.epc-cart__btn--secondary:hover  { background: #f5f5f5; border-color: #d4d4d4; }
.epc-cart__btn--secondary:active { transform: scale(0.97); }
.epc-cart__btn--secondary.is-loading { opacity: 0.6; pointer-events: none; }

/* Continue shopping */
.epc-cart__continue { margin-top: 10px; }
.epc-cart__continue-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #737373;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}
.epc-cart__continue-link:hover { color: #0a0a0a; }

/* ── Summary box ── */
.epc-cart__summary {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.epc-cart__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}
.epc-cart__summary-row:last-of-type { border-bottom: none; }

.epc-cart__summary-label { color: #737373; font-weight: 500; }
.epc-cart__summary-value { color: #0a0a0a; font-weight: 600; text-align: right; }

.epc-cart__summary-total {
    padding: 14px 0 16px;
    margin-top: 4px;
}
.epc-cart__summary-total .epc-cart__summary-label,
.epc-cart__summary-total .epc-cart__summary-value {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
}

/* Checkout button */
.epc-cart__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    margin-top: 6px;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
}
.epc-cart__checkout-btn:hover { background: #404040; }
.epc-cart__checkout-btn:active { transform: scale(0.98); }

/* Payment icons */
.epc-cart__payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}
.epc-cart__payment-icons img {
    height: 22px;
    width: auto;
    opacity: 0.6;
}

/* ── Cart notice / message ── */
.epc-cart__notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
}
.epc-cart__notice--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.epc-cart__notice--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.epc-cart__notice--info    { background: #f0f9ff; color: #075985; border: 1px solid #bae6fd; }


/* ══════════════════════════════════════════════
   RESPONSIVE — Cart Page
══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .epc-cart__layout--sidebar {
        flex-direction: column;
    }
    .epc-cart__layout--sidebar .epc-cart__right {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 640px) {
    .epc-cart__table .epc-cart__col-price  { display: none; }
    .epc-cart__table th.epc-cart__col-price { display: none; }
    .epc-cart__table-footer { flex-direction: column; align-items: flex-start; }
    .epc-cart__coupon { width: 100%; }
    .epc-cart__coupon-input { flex: 1; width: auto; }
    .epc-cart__update { width: 100%; }
}

@media (max-width: 480px) {
    .epc-cart__table th { font-size: 9px; padding: 10px 10px; }
    .epc-cart__table td { padding: 10px; font-size: 12px; }
    .epc-cart__prod-img img { width: 48px; height: 48px; }
    .epc-cart__summary { padding: 16px; }
    .epc-cart__checkout-btn { font-size: 11px; padding: 11px 16px; }
    .epc-atc__btn { font-size: 10px; padding: 0 14px; }
}
