/* ── Shared page utilities ────────────────────────────── */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.page-wrap-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.page-head {
    margin-bottom: 36px;
}
.page-head h1 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
}
.page-head p { font-size: 15px; color: var(--color-text-secondary); margin: 0; }
.page-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.2s;
}
.page-back:hover { color: var(--color-text); }

/* card */
.pg-card {
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
}
.pg-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

/* ── Alert box ──────────────────────────────────────────── */
.pg-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
}
.pg-alert.success { background: rgba(16,185,129,0.1); color: var(--color-success); border: 1px solid rgba(16,185,129,0.25); }
.pg-alert.error   { background: rgba(239,68,68,0.1);  color: var(--color-error);   border: 1px solid rgba(239,68,68,0.25);  }

/* ── Filter sidebar ─────────────────────────────────────── */
.filter-sidebar {
    position: sticky;
    top: 80px;
    width: 240px;
    flex-shrink: 0;
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
}
.filter-sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}
.filter-sidebar-head h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}
.filter-sidebar-head a {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}
.filter-group { margin-bottom: 24px; }
.filter-group-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.15s;
}
.filter-option:hover { color: var(--color-text); }
.filter-option input[type="radio"] { accent-color: var(--color-primary); }
.filter-option.active { color: var(--color-primary); font-weight: 700; }
.filter-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.filter-price-row input {
    flex: 1;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1.5px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 13px;
    outline: none;
}
.filter-price-row input:focus { border-color: var(--color-primary); }
.filter-price-sep { color: var(--color-text-secondary); font-size: 13px; }

/* ── Sort bar ───────────────────────────────────────────── */
.sort-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    width: fit-content;
}
.sort-bar label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-secondary);
    white-space: nowrap;
}
.sort-bar select {
    background: transparent;
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

/* ── Shop/Search layout ─────────────────────────────────── */
.shop-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.shop-grid-area { flex: 1; min-width: 0; }
.shop-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}
.shop-head h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin: 0 0 4px;
}
.shop-head p { font-size: 14px; color: var(--color-text-secondary); margin: 0; }

/* ── Product grid (shop/search) ─────────────────────────── */
.pg-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pg-product-card {
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.pg-product-card:hover {
    border-color: var(--color-card-border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--color-card-shadow-hover);
}
.pg-product-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--color-surface-alt, var(--color-surface));
}
.pg-product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.pg-product-card:hover .pg-product-img img { transform: scale(1.04); }
.pg-wl-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-secondary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 2;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pg-wl-btn:hover, .pg-wl-btn.active {
    background: rgba(239,68,68,0.1);
    border-color: #ef4444; color: #ef4444;
}
.pg-wl-btn.active svg { fill: #ef4444; }
.pg-feat-badge {
    position: absolute; top: 10px; left: 10px;
    font-family: var(--font-heading); font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 9px; border-radius: 999px;
    background: var(--color-primary); color: #fff; z-index: 2;
}
.pg-product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pg-product-meta { display: flex; justify-content: space-between; align-items: center; }
.pg-product-brand {
    font-family: var(--font-heading); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px; color: var(--color-primary);
}
.pg-product-rating {
    display: flex; align-items: center; gap: 3px;
    font-family: var(--font-heading); font-size: 12px; font-weight: 600;
    color: var(--color-text);
}
.pg-product-rating svg { color: #facc15; }
.pg-product-name {
    font-family: var(--font-heading); font-size: 15px; font-weight: 700;
    color: var(--color-text); line-height: 1.35; text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pg-product-name:hover { color: var(--color-primary); }
.pg-product-desc {
    font-size: 13px; color: var(--color-text-secondary); line-height: 1.5; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pg-product-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--color-border); gap: 8px;
}
.pg-product-price {
    font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--color-text);
}
.pg-cart-btn {
    font-family: var(--font-heading); font-size: 13px; font-weight: 600;
    padding: 7px 14px; border-radius: 8px; border: none;
    background: var(--color-primary); color: #fff; cursor: pointer;
    transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.pg-cart-btn:hover { background: var(--color-primary-hover, var(--color-primary)); transform: translateY(-1px); }
.pg-cart-btn:disabled { background: var(--color-border); color: var(--color-text-muted); cursor: not-allowed; transform: none; }

/* ── Pagination ─────────────────────────────────────────── */
.pg-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.pg-page-btn {
    font-family: var(--font-heading); font-size: 13px; font-weight: 700;
    width: 38px; height: 38px; border-radius: 8px;
    border: 1.5px solid var(--color-border); background: var(--color-surface);
    color: var(--color-text-secondary); cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.pg-page-btn:hover, .pg-page-btn.active {
    background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}

/* ── PDP ────────────────────────────────────────────────── */
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.pdp-gallery-main {
    width: 100%; height: 420px; border-radius: 14px; overflow: hidden;
    background: var(--color-surface-alt, var(--color-surface));
    border: 1.5px solid var(--color-border);
}
.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp-thumb {
    width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
    border: 2px solid transparent; cursor: pointer; opacity: 0.6;
    transition: border-color 0.2s, opacity 0.2s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--color-primary); opacity: 1; }
.pdp-brand {
    font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: var(--color-primary);
    margin-bottom: 8px;
}
.pdp-title {
    font-family: var(--font-heading); font-size: 30px; font-weight: 800;
    letter-spacing: -0.5px; line-height: 1.2; margin: 0 0 12px;
}
.pdp-rating-row {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
    color: #facc15; font-size: 15px;
}
.pdp-rating-row span { font-family: var(--font-heading); font-size: 13px; color: var(--color-text-secondary); }
.pdp-price {
    font-family: var(--font-heading); font-size: 30px; font-weight: 900;
    color: var(--color-primary); margin-bottom: 16px;
}
.pdp-desc { font-size: 15px; color: var(--color-text-secondary); line-height: 1.65; margin-bottom: 24px; }
.pdp-buy-box { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 14px; padding: 20px; }
.pdp-variant-label {
    font-family: var(--font-heading); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px; color: var(--color-text-secondary);
    margin-bottom: 10px;
}
.pdp-variants { display: flex; gap: 10px; margin-bottom: 20px; }
.pdp-variant-btn {
    font-family: var(--font-heading); font-size: 13px; font-weight: 500;
    padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--color-border);
    background: transparent; color: var(--color-text); cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pdp-variant-btn.active {
    border-color: var(--color-primary); background: var(--color-hover-bg);
    color: var(--color-primary); font-weight: 700;
}
.pdp-stock { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pdp-stock-badge {
    font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    padding: 4px 10px; border-radius: 6px;
}
.pdp-stock-badge.in  { background: rgba(16,185,129,0.08); color: var(--color-success); border: 1px solid rgba(16,185,129,0.2); }
.pdp-stock-badge.out { background: rgba(239,68,68,0.08);  color: var(--color-error);   border: 1px solid rgba(239,68,68,0.2);  }
.pdp-qty-row { display: flex; gap: 14px; align-items: center; }
.pdp-qty {
    display: flex; align-items: center;
    border: 1.5px solid var(--color-border); border-radius: 8px; overflow: hidden;
}
.pdp-qty button {
    width: 36px; height: 36px; border: none; background: transparent;
    color: var(--color-text); cursor: pointer; font-size: 18px; font-weight: 300;
    transition: background 0.15s;
}
.pdp-qty button:hover { background: var(--color-hover-bg); }
.pdp-qty input {
    width: 48px; border: none; background: transparent;
    color: var(--color-text); text-align: center; font-family: var(--font-heading);
    font-weight: 700; font-size: 14px; outline: none;
    -moz-appearance: textfield;
}
.pdp-add-btn {
    flex: 1; font-family: var(--font-heading); font-size: 14px; font-weight: 700;
    padding: 0 20px; height: 38px; border-radius: 8px; border: none;
    background: var(--color-primary); color: #fff; cursor: pointer;
    transition: background 0.2s;
}
.pdp-add-btn:hover { background: var(--color-primary-hover, var(--color-primary)); }
.pdp-accordion { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.pdp-acc-item { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 10px; overflow: hidden; }
.pdp-acc-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; cursor: pointer;
    font-family: var(--font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.pdp-acc-head span { font-size: 18px; font-weight: 300; color: var(--color-text-secondary); }
.pdp-acc-body { display: none; padding: 0 18px 16px; border-top: 1px solid var(--color-border); }
.pdp-spec-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 14px; }
.pdp-spec-table td { padding: 8px 0; border-bottom: 1px solid var(--color-border); }
.pdp-spec-table td:first-child { color: var(--color-text-secondary); font-weight: 600; width: 40%; }

/* Reviews */
.pdp-reviews { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 16px; padding: 32px; margin-bottom: 40px; }
.pdp-reviews-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; margin-top: 24px; }
.pdp-rating-summary { background: var(--color-surface-alt, var(--color-surface)); border: 1.5px solid var(--color-border); border-radius: 12px; padding: 24px; text-align: center; margin-bottom: 20px; }
.pdp-rating-big { font-family: var(--font-heading); font-size: 48px; font-weight: 900; color: var(--color-primary); line-height: 1; }
.pdp-rating-stars { color: #facc15; font-size: 20px; margin: 8px 0; }
.review-item { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 12px; padding: 18px; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.review-author { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.review-date { font-size: 12px; color: var(--color-text-secondary); }
.review-stars { color: #facc15; font-size: 13px; }
.review-text { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; margin: 0; }
.review-form label { display: block; font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--color-text-secondary); margin-bottom: 6px; }
.review-star-row { display: flex; gap: 6px; font-size: 24px; color: #facc15; cursor: pointer; margin-bottom: 14px; }

/* ── Auth ────────────────────────────────────────────────── */
.auth-wrap { max-width: 480px; margin: 60px auto; padding: 0 20px 80px; }
.auth-card { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 20px; padding: 40px; }
.auth-tabs { display: flex; border-bottom: 1.5px solid var(--color-border); margin-bottom: 28px; }
.auth-tab-btn {
    flex: 1; padding: 12px; border: none; background: transparent;
    font-family: var(--font-heading); font-size: 15px; font-weight: 600;
    color: var(--color-text-secondary); cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -1.5px;
    transition: color 0.2s, border-color 0.2s;
}
.auth-tab-btn.active { color: var(--color-primary); border-bottom-color: var(--color-primary); font-weight: 800; }
.auth-divider {
    display: flex; align-items: center; gap: 12px;
    color: var(--color-text-secondary); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin: 24px 0;
}
.auth-divider::before, .auth-divider::after { content:''; flex:1; height:1px; background: var(--color-border); }
.auth-social-row { display: flex; gap: 12px; }
.auth-social-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 11px; border-radius: 8px; border: 1.5px solid var(--color-border);
    background: transparent; color: var(--color-text); font-family: var(--font-heading);
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.auth-social-btn:hover { background: var(--color-hover-bg); border-color: var(--color-primary); }
.form-label { display: block; font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--color-text-secondary); margin-bottom: 7px; }
.form-field { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text); font-family: var(--font-heading); font-size: 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-field:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-row { margin-bottom: 18px; }
.form-submit { width: 100%; padding: 12px; border-radius: 8px; border: none; background: var(--color-primary); color: #fff; font-family: var(--font-heading); font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 6px; }
.form-submit:hover { background: var(--color-primary-hover, var(--color-primary)); }

/* ── Cart ────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: flex-start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-family: var(--font-heading); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-secondary); padding: 10px 12px; border-bottom: 1.5px solid var(--color-border); text-align: left; }
.cart-table td { padding: 16px 12px; border-bottom: 1px solid var(--color-border); font-family: var(--font-heading); font-size: 14px; vertical-align: middle; }
.cart-item-name { display: flex; align-items: center; gap: 14px; }
.cart-item-name img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; border: 1px solid var(--color-border); }
.cart-item-name span { font-weight: 700; color: var(--color-text); }
.cart-qty { width: 64px; padding: 7px; text-align: center; border-radius: 6px; border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text); font-family: var(--font-heading); font-size: 13px; }
.cart-remove-btn { background: transparent; border: none; color: var(--color-error); font-family: var(--font-heading); font-weight: 700; font-size: 13px; cursor: pointer; }
.cart-summary-card { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 16px; padding: 24px; position: sticky; top: 80px; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); font-size: 14px; padding: 8px 0; }
.cart-summary-row.total { font-size: 18px; font-weight: 800; border-top: 1.5px solid var(--color-border); padding-top: 14px; margin-top: 6px; }
.cart-summary-row.total span:last-child { color: var(--color-primary); }
.cart-summary-row.discount { color: var(--color-success); }
.cart-summary-label { color: var(--color-text-secondary); }
.cart-coupon-row { display: flex; gap: 10px; }
.cart-coupon-input { flex: 1; padding: 9px 12px; border-radius: 8px; border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text); font-family: var(--font-heading); font-size: 14px; outline: none; }
.cart-coupon-input:focus { border-color: var(--color-primary); }

/* ── Checkout ────────────────────────────────────────────── */
.checkout-layout-2col { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: flex-start; }
.checkout-steps { display: flex; flex-direction: column; gap: 12px; }
.checkout-step { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 14px; overflow: hidden; }
.checkout-step-head {
    display: flex; align-items: center; gap: 14px; padding: 18px 20px;
    cursor: pointer; transition: background 0.15s;
}
.checkout-step-head:hover { background: var(--color-hover-bg); }
.step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.step-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; }
.checkout-step-body { display: none; padding: 20px; border-top: 1px solid var(--color-border); }
.checkout-step-body.open { display: block; }
.shipping-option, .payment-option {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 18px; border-radius: 10px; cursor: pointer;
    border: 1.5px solid var(--color-border);
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 10px;
}
.shipping-option:hover, .payment-option:hover { border-color: var(--color-primary); background: var(--color-hover-bg); }
.shipping-option input, .payment-option input { accent-color: var(--color-primary); }
.shipping-option strong, .payment-option strong { display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.shipping-option span, .payment-option span { font-size: 13px; color: var(--color-text-secondary); }
.stripe-mock { background: var(--color-surface-alt, var(--color-surface)); border: 1.5px solid var(--color-border); border-radius: 10px; padding: 16px; margin: 14px 0; }
.cc-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }

/* ── Order success ───────────────────────────────────────── */
.success-wrap { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(16,185,129,0.1); border: 2px solid var(--color-success); color: var(--color-success); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.timeline-bar { position: relative; display: flex; justify-content: space-between; margin: 20px 0 0; }
.timeline-bar::before { content:''; position: absolute; top: 15px; left: 8%; right: 8%; height: 3px; background: var(--color-border); z-index: 1; }
.timeline-fill { position: absolute; top: 15px; left: 8%; height: 3px; background: var(--color-primary); z-index: 2; transition: width 0.6s; }
.timeline-step { text-align: center; width: 25%; z-index: 3; }
.timeline-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-weight: 800; font-size: 13px; border: 2px solid var(--color-border); }
.timeline-dot.done { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.timeline-dot.current { background: transparent; border-color: var(--color-primary); color: var(--color-primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.timeline-label { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--color-text-secondary); }
.timeline-label.done { color: var(--color-text); }

/* ── Dashboard ───────────────────────────────────────────── */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: flex-start; }
.dash-sidebar { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 16px; padding: 24px; position: sticky; top: 80px; }
.dash-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary, var(--color-primary))); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: #fff; flex-shrink: 0; }
.dash-user-info { min-width: 0; }
.dash-user-name { font-family: var(--font-heading); font-size: 15px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-user-email { font-size: 12px; color: var(--color-text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; }
.dash-nav-btn {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 10px 14px; border-radius: 8px;
    border: none; background: transparent;
    font-family: var(--font-heading); font-size: 14px; font-weight: 500;
    color: var(--color-text-secondary); cursor: pointer; text-align: left;
    text-decoration: none; transition: background 0.15s, color 0.15s;
}
.dash-nav-btn:hover { background: var(--color-hover-bg); color: var(--color-text); }
.dash-nav-btn.active { background: var(--color-hover-bg); color: var(--color-primary); font-weight: 700; }
.dash-nav-btn.signout { color: var(--color-error); margin-top: 8px; }
.dash-nav-btn.signout:hover { background: rgba(239,68,68,0.08); }
.dash-panel { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 16px; padding: 28px; }
.order-card { background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 12px; padding: 20px; }
.order-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--color-border); }
.order-meta-item label { font-family: var(--font-heading); font-size: 11px; color: var(--color-text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 3px; }
.order-meta-item span { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.order-status { font-family: var(--font-heading); font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
.order-status.pending  { background: rgba(245,158,11,0.1); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.order-status.complete { background: rgba(16,185,129,0.1); color: var(--color-success); border: 1px solid rgba(16,185,129,0.2); }
.tracking-step { text-align: center; width: 22%; z-index: 2; }

/* ── Empty state ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 40px; background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 16px; }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 18px; }
.empty-state h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.empty-state p { color: var(--color-text-secondary); font-size: 15px; max-width: 440px; margin: 0 auto 24px; line-height: 1.6; }

/* ── FAQ accordion (about page) ─────────────────────────── */
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }

/* ── About page ──────────────────────────────────────────── */

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pdp-layout { grid-template-columns: 1fr; }
    .dash-layout { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-layout-2col { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .pdp-reviews-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .shop-layout { flex-direction: column; }
    .filter-sidebar { width: 100%; position: static; }
    .pg-product-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 28px; }
    .page-head h1 { font-size: 26px; }
}

@media print {
    .site-header, .site-footer, .wpec-btn, .timeline-bar { display: none !important; }
    body { background: #fff !important; color: #000 !important; }
    #printable-receipt { border: none !important; background: transparent !important; box-shadow: none !important; padding: 0 !important; }
}
