/* ============================================
   account.css — HappyBud
   My Account dashboard (woocommerce/myaccount/dashboard.php override).
   Ported from the design package's account.html/.css "LOGGED-IN VIEW"
   section. Header/nav/footer chrome is already covered sitewide by
   header-footer.css — this file is dashboard content only.
============================================ */

.account-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 32px 80px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Sidebar ── */
.account-sidebar {
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 24px;
    padding: 24px;
    position: sticky;
    top: 100px;
}
.sidebar-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dashed #e0d8c8;
}
.sidebar-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f5d3f, #ff6b35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    border: 3px solid #1a1a1a;
    flex-shrink: 0;
}
.sidebar-user h3 {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}
.sidebar-user .email {
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 500;
}
.sidebar-points {
    margin-bottom: 10px;
    padding: 14px 16px;
    background: #1a1a1a;
    color: #fcfaf4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-tier {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    padding: 9px 14px;
    background: #f0f5e8;
    border: 1.5px solid #1f5d3f;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: #1f5d3f;
}
.sidebar-tier strong { font-weight: 900; }
.sidebar-tier iconify-icon { font-size: 16px; color: #1f5d3f; flex-shrink: 0; }
.sidebar-points .label {
    font-size: 11px;
    color: rgba(255, 248, 240, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 2px;
}
.sidebar-points .amount {
    font-size: 22px;
    font-weight: 900;
    color: #ff6b35;
    letter-spacing: -0.02em;
}
.sidebar-points iconify-icon {
    color: #ff6b35;
    font-size: 28px;
}
.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}
.sidebar-nav a iconify-icon { font-size: 18px; color: #6b6b6b; }
.sidebar-nav a:hover { background: rgba(255, 107, 53, 0.08); }
.sidebar-nav a:hover iconify-icon { color: #ff6b35; }
.sidebar-nav a.active { background: #1a1a1a; color: #ff6b35; }
.sidebar-nav a.active iconify-icon { color: #ff6b35; }
.sidebar-nav .divider { margin: 10px 0; height: 1px; background: #e0d8c8; }
.sidebar-nav a.signout { color: #c93838; }
.sidebar-nav a.signout iconify-icon { color: #c93838; }
.sidebar-nav a.signout:hover { background: rgba(201, 56, 56, 0.08); }

/* ── Main content ── */
.account-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.welcome-banner {
    background: #1a1a1a;
    color: #fcfaf4;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 8px 8px 0 #ff6b35;
    flex-wrap: wrap;
}
.welcome-text { flex: 1; min-width: 240px; }
.welcome-text .eyebrow {
    font-size: 12px;
    color: #ff6b35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.welcome-text h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    color: #fcfaf4;
}
.welcome-text h1 .accent {
    background: linear-gradient(135deg, #1f5d3f 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.welcome-text p {
    font-size: 14px;
    color: rgba(255, 248, 240, 0.7);
    line-height: 1.55;
}
.welcome-cta {
    padding: 14px 24px;
    background: #ff6b35;
    color: #1a1a1a;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none !important;
}
.welcome-cta:hover { background: #fcfaf4; }

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}
.quick-stat {
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.quick-stat:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 #1a1a1a; }
.quick-stat .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.quick-stat .label {
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.quick-stat .value {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.section-card {
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 24px;
    padding: 32px;
}
.section-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-card-head h2 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.section-card-head a {
    font-size: 13px;
    font-weight: 700;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
}
.section-card-head a:hover { text-decoration: underline !important; }
.section-card-empty {
    font-size: 14px;
    color: #6b6b6b;
    padding: 8px 0;
}

/* ── Order rows ── */
/* Order summary + "leave a review" prompts render as ONE card — the
   border/radius/hover live here on the wrapper, .order-row and
   .order-review-list are just internal bands separated by a divider. */
.order-card {
    margin-bottom: 10px;
    background: #fcfaf4;
    border: 1.5px solid #e0d8c8;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.order-card:has(.order-row:hover) { border-color: #ff6b35; }
.order-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
    padding: 16px;
    align-items: center;
    transition: background 0.2s;
    text-decoration: none !important;
    color: inherit;
}
.order-row:hover { background: rgba(255, 107, 53, 0.03); }

/* "Write a review" prompts — completed orders only (see
   happybud_user_has_earned_review_points() in includes/wployalty-
   account.php for the "already done" check). */
.order-review-list {
    padding: 14px 16px 16px;
    border-top: 1.5px dashed #e0d8c8;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* Order detail page (view-order.php) — its own .section-card already
   provides the border/background/padding, and .section-card-head is the
   "Leave a review" label, so the attached-strip treatment above is unused
   here. */
.order-review-list.standalone {
    padding: 0;
    border-top: none;
    background: transparent;
}
.order-review-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
}
.order-review-label iconify-icon { font-size: 13px; color: #ff6b35; }
.order-review-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.order-review-thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid #1a1a1a;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.order-review-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.order-review-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.order-review-name:hover { color: #ff6b35; }
.order-review-incentive {
    font-size: 11.5px;
    font-weight: 600;
    color: #1f5d3f;
}
.order-review-incentive-photo {
    color: #ff6b35;
}
.order-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #1a1a1a;
    color: #fcfaf4;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.order-review-btn:hover { background: #ff6b35; color: #1a1a1a; transform: translateY(-1px); }
.order-review-done {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: rgba(31, 93, 63, 0.1);
    border-radius: 980px;
    font-size: 12px;
    font-weight: 700;
    color: #1f5d3f;
    flex-shrink: 0;
    white-space: nowrap;
}
.order-thumbs { display: flex; align-items: center; }
.order-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
    background-size: cover;
    background-position: center;
    margin-left: -10px;
    flex-shrink: 0;
}
.order-thumb:first-child { margin-left: 0; }
.order-info { min-width: 0; }
.order-num { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.order-meta {
    font-size: 12px;
    color: #6b6b6b;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.order-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #999; }
.order-status {
    padding: 5px 12px;
    border-radius: 980px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.order-status.completed,
.order-status.delivered { background: rgba(31, 93, 63, 0.15); color: #1f5d3f; }
.order-status.shipped { background: rgba(255, 107, 53, 0.15); color: #ff6b35; }
.order-status.processing,
.order-status.on-hold,
.order-status.pending { background: rgba(74, 74, 74, 0.15); color: #4a4a4a; }
.order-status.cancelled,
.order-status.refunded,
.order-status.failed { background: rgba(201, 56, 56, 0.15); color: #c93838; }
.order-total { font-size: 16px; font-weight: 900; letter-spacing: -0.01em; text-align: right; white-space: nowrap; }

/* ── Addresses ── */
.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.address-card {
    padding: 20px;
    background: #fcfaf4;
    border: 1.5px solid #e0d8c8;
    border-radius: 14px;
    position: relative;
}
.address-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.address-card p { font-size: 13px; line-height: 1.55; color: #555; margin-bottom: 12px; }
.address-card .actions { display: flex; gap: 12px; font-size: 12px; font-weight: 700; }
.address-card .actions a { color: #6b6b6b; text-decoration: underline !important; }
.address-card .actions a:hover { color: #ff6b35; }

/* ── Refer a friend ── */
.raf-card .raf-lede { font-size: 15px; line-height: 1.55; color: #3a3a3a; margin: 2px 0 18px; max-width: 60ch; }
.raf-card .raf-lede strong { color: #1a1a1a; }
.raf-link-label { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #8a8a8a; margin-bottom: 8px; }
.raf-link-row { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.raf-link { flex: 1; min-width: 200px; display: flex; align-items: center; padding: 11px 14px; background: #fcfaf4; border: 2px dashed #1a1a1a; border-radius: 10px; font-weight: 700; font-size: 14px; color: #1a1a1a; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.raf-copy { padding: 11px 18px; background: #1a1a1a; color: #fcfaf4; border: none; border-radius: 10px; font-family: inherit; font-weight: 800; font-size: 13px; cursor: pointer; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.raf-copy:hover { background: #ff6b35; color: #1a1a1a; }
.raf-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.raf-soc { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; background: #fff; border: 2px solid #1a1a1a; border-radius: 980px; font-weight: 700; font-size: 13px; color: #1a1a1a; text-decoration: none !important; }
.raf-soc:hover { background: #ede4d3; }
.raf-soc iconify-icon { font-size: 16px; }

/* ── Earn-campaign promo banner (one per active WPLoyalty "way to earn"
   campaign not already surfaced in the sidebar tier line or the refer-a-
   friend card — e.g. product review, birthday, signup, social share,
   achievement, or any future campaign type). Visual treatment ported from
   the design mockup's on-site review prompt, generalized to N campaigns
   and given our own brand colors instead of the mockup's Trustpilot green. ── */
.earn-promo-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1f5d3f 0%, #17452f 100%);
    color: #fcfaf4;
    border: 2px solid #1a1a1a;
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 14px;
}
.earn-promo-icon {
    width: 48px;
    height: 48px;
    background: #fcfaf4;
    color: #1f5d3f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 26px;
}
.earn-promo-text { flex: 1; }
.earn-promo-text strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.earn-promo-text small { font-size: 13px; color: rgba(255, 248, 240, 0.85); }
@media (max-width: 600px) {
    .earn-promo-banner { flex-wrap: wrap; }
}

.hb-account-notice {
    padding: 14px 18px;
    background: #fff3da;
    border: 2px solid #e8b95e;
    border-radius: 14px;
    font-size: 13px;
    color: #6b4a13;
    font-weight: 600;
}

/* ── My points (Available / Redeemed / Used rewards) ── */
.my-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.my-points-box {
    padding: 20px;
    background: #fcfaf4;
    border: 1.5px solid #e0d8c8;
    border-radius: 14px;
    text-align: center;
}
.my-points-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.my-points-label {
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.my-points-value {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    line-height: 1;
}
.my-points-sub {
    margin-top: 6px;
    font-size: 12px;
    color: #8a8a8a;
    font-weight: 600;
}

/* ── Redeem points → coupon ── */
.redeem-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fcfaf4;
    border: 1.5px solid #e0d8c8;
    border-radius: 14px;
    margin-bottom: 12px;
}
.redeem-card:last-child { margin-bottom: 0; }
.redeem-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(31, 93, 63, 0.1);
    color: #1f5d3f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.redeem-card-body { flex: 1; min-width: 0; }
.redeem-card-body h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.redeem-card-desc { font-size: 13px; color: #6b6b6b; margin-bottom: 12px; }
.redeem-card-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.redeem-points-input {
    width: 90px;
    height: 42px;
    padding: 0 12px;
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.redeem-points-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.redeem-points-equals { font-size: 16px; font-weight: 800; color: #8a8a8a; }
.redeem-points-value { font-size: 18px; font-weight: 900; color: #1f5d3f; }
.redeem-points-btn {
    margin-left: auto;
    padding: 10px 20px;
    background: #1a1a1a;
    color: #fcfaf4;
    border: none;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.redeem-points-btn:hover { background: #ff6b35; color: #1a1a1a; }
.redeem-points-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.redeem-card-note { font-size: 12px; color: #8a8a8a; }

/* ── Active coupons ── */
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.coupon-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fcfaf4;
    border: 1.5px solid #e0d8c8;
    border-radius: 14px;
}
.coupon-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.coupon-card-body { flex: 1; min-width: 0; }
.coupon-card-body h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.coupon-card-type { font-size: 12.5px; color: #1f5d3f; font-weight: 700; margin-bottom: 10px; }
.coupon-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.coupon-code {
    padding: 6px 12px;
    background: #fff;
    border: 2px dashed #1a1a1a;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}
.coupon-copy-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #fcfaf4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
}
.coupon-copy-btn:hover { background: #ff6b35; color: #1a1a1a; }
.coupon-expiry { font-size: 11.5px; color: #9a9a9a; margin-bottom: 10px; }
.coupon-apply-btn {
    width: 100%;
    padding: 10px;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.coupon-apply-btn:hover { background: #1a1a1a; color: #ff6b35; }
.coupon-apply-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Used & expired coupons ── */
.coupon-history-list { display: flex; flex-direction: column; gap: 8px; }
.coupon-history-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fcfaf4;
    border: 1.5px solid #e0d8c8;
    border-radius: 12px;
    font-size: 13px;
}
.coupon-history-name { font-weight: 700; flex: 1; min-width: 0; }
.coupon-history-code {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: #8a8a8a;
    font-weight: 600;
}
.coupon-history-status {
    padding: 4px 10px;
    border-radius: 980px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}
.coupon-history-status.status-used { background: rgba(31, 93, 63, 0.15); color: #1f5d3f; }
.coupon-history-status.status-expired { background: rgba(201, 56, 56, 0.15); color: #c93838; }

/* ── Inline success/error feedback for redeem/apply actions ── */
.hb-reward-message {
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 700;
}
.hb-reward-message-success { color: #1f5d3f; }
.hb-reward-message-error { color: #c93838; }

/* ============================================
   Native WooCommerce My Account templates
   (Orders list, Addresses list, Edit account) — these render inside
   .account-main via our my-account.php wrapper but are WooCommerce's own
   default markup/classes, not something we've templated ourselves. Storefront
   / WooCommerce's own stylesheet styles these first, so selectors below use
   !important to win — same convention as checkout-classic.css.
============================================ */

/* ── Notices (account details/address saved, login errors, etc.) ── */
.account-main .woocommerce-notices-wrapper:empty { display: none !important; }
.account-main .woocommerce-message,
.account-main .woocommerce-error,
.account-main .woocommerce-info {
    display: block !important;
    list-style: none !important;
    margin: 0 0 20px !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}
.account-main .woocommerce-message {
    background: #eef5e9 !important;
    border: 2px solid #1f5d3f !important;
    color: #1f5d3f !important;
}
.account-main .woocommerce-error,
.account-main .woocommerce-error li {
    background: #fbeaea !important;
    border: 2px solid #c93838 !important;
    color: #a12b2b !important;
}
.account-main .woocommerce-info {
    background: #fff3da !important;
    border: 2px solid #e8b95e !important;
    color: #6b4a13 !important;
}
.account-main .woocommerce-message a.button,
.account-main .woocommerce-message .button {
    margin-left: 10px !important;
    color: inherit !important;
    text-decoration: underline !important;
    font-weight: 800 !important;
}

/* ── Orders list (woocommerce/myaccount/orders.php) ── */

.account-main table.woocommerce-orders-table.shop_table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #fff !important;
    border: 3px solid #1a1a1a !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    margin: 0 0 20px !important;
}
.account-main .woocommerce-orders-table thead th {
    background: #1a1a1a !important;
    color: #fcfaf4 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    text-align: left !important;
    padding: 16px 20px !important;
    border: none !important;
}
.account-main .woocommerce-orders-table tbody tr { border-bottom: 1.5px solid #e0d8c8 !important; }
.account-main .woocommerce-orders-table tbody tr:last-child { border-bottom: none !important; }
.account-main .woocommerce-orders-table tbody td,
.account-main .woocommerce-orders-table tbody th {
    padding: 16px 20px !important;
    font-size: 14px !important;
    color: #1a1a1a !important;
    vertical-align: middle !important;
    border: none !important;
    text-align: left !important;
    font-weight: 500 !important;
}
.account-main .woocommerce-orders-table__cell-order-number a {
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
}
.account-main .woocommerce-orders-table__cell-order-number a:hover { color: #ff6b35 !important; }
.account-main .woocommerce-orders-table__cell-order-status { font-weight: 700 !important; }
.account-main .woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status,
.account-main .woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status { color: #1f5d3f !important; }
.account-main .woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status,
.account-main .woocommerce-orders-table__row--status-pending .woocommerce-orders-table__cell-order-status { color: #4a4a4a !important; }
.account-main .woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status,
.account-main .woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status,
.account-main .woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status { color: #c93838 !important; }
.account-main .woocommerce-orders-table__cell-order-actions .woocommerce-button,
.account-main .woocommerce-orders-table__cell-order-actions .button {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 16px !important;
    background: #1a1a1a !important;
    color: #fcfaf4 !important;
    border-radius: 980px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    text-decoration: none !important;
}
.account-main .woocommerce-orders-table__cell-order-actions .woocommerce-button:hover,
.account-main .woocommerce-orders-table__cell-order-actions .button:hover { background: #ff6b35 !important; color: #1a1a1a !important; }

.account-main .woocommerce-pagination { display: flex !important; justify-content: center !important; margin: 0 !important; }
.account-main .woocommerce-pagination .woocommerce-button {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 22px !important;
    background: #fff !important;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 980px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}
.account-main .woocommerce-pagination .woocommerce-button:hover { background: #1a1a1a !important; color: #ff6b35 !important; }

@media (max-width: 767px) {
    .account-main .woocommerce-orders-table.shop_table_responsive tbody tr {
        display: block !important;
        padding: 16px 20px !important;
    }
    /* Order number: header row of the card, no label/divider needed. Kill
       any default table th background — only visible cell on mobile since
       thead is hidden, and a stray background looks out of place here. */
    .account-main .woocommerce-orders-table.shop_table_responsive tbody th.woocommerce-orders-table__cell-order-number {
        display: block !important;
        padding: 0 0 12px !important;
        text-align: left !important;
        font-size: 15px !important;
        background: transparent !important;
    }
    /* Date / Status / Actions / Total: label on the left, value on the
       right, each on its own row with a divider between them. Total's
       value is actually two pieces (price span + " for 1 item" text) —
       using margin-right:auto on the label (instead of space-between,
       which would spread label/price/"for 1 item" into 3 separate
       columns) pushes everything after the label into one right-aligned
       group regardless of how many pieces the value is made of. */
    .account-main .woocommerce-orders-table.shop_table_responsive tbody td {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
        gap: 4px !important;
        padding: 12px 0 !important;
        border-top: 1.5px dashed #e0d8c8 !important;
        text-align: right !important;
        background: transparent !important;
    }
    .account-main .woocommerce-orders-table.shop_table_responsive tbody td::before {
        font-weight: 700 !important;
        color: #6b6b6b !important;
        text-transform: uppercase !important;
        font-size: 11px !important;
        letter-spacing: 0.04em !important;
        text-align: left !important;
        flex-shrink: 0 !important;
        margin-right: auto !important;
    }
    /* Storefront's woocommerce.css adds an empty clearfix ::after on every
       responsive table cell (content:""; display:table;) to contain the
       core float-based label layout. With our td set to flex, that empty
       box becomes a real third flex item and breaks space-between across
       label/value — kill it so only the label and value remain. */
    .account-main .woocommerce-orders-table.shop_table_responsive tbody td::after {
        content: none !important;
        display: none !important;
    }
    .account-main .woocommerce-orders-table thead { display: none !important; }

    /* Action button reads as a small text link on mobile instead of a pill button. */
    .account-main .woocommerce-orders-table__cell-order-actions .woocommerce-button,
    .account-main .woocommerce-orders-table__cell-order-actions .button {
        padding: 0 !important;
        background: transparent !important;
        color: #ff6b35 !important;
        border-radius: 0 !important;
        font-size: 13px !important;
        text-decoration: underline !important;
    }
    .account-main .woocommerce-orders-table__cell-order-actions .woocommerce-button:hover,
    .account-main .woocommerce-orders-table__cell-order-actions .button:hover {
        background: transparent !important;
        color: #1a1a1a !important;
    }
}

/* ── Addresses list (woocommerce/myaccount/my-address.php) ── */
.account-main > p { font-size: 14px !important; color: #6b6b6b !important; margin: 0 0 16px !important; }
.account-main .woocommerce-Addresses.col2-set {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin: 0 !important;
}
.account-main .woocommerce-Addresses .woocommerce-Address {
    width: 100% !important;
    padding: 20px !important;
    background: #fcfaf4 !important;
    border: 1.5px solid #e0d8c8 !important;
    border-radius: 14px !important;
    float: none !important;
}
.account-main .woocommerce-Address-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 8px !important;
}
.account-main .woocommerce-Address-title h2 { font-size: 15px !important; font-weight: 800 !important; margin: 0 !important; }
.account-main .woocommerce-Address-title .edit {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #6b6b6b !important;
    text-decoration: underline !important;
    white-space: nowrap !important;
}
.account-main .woocommerce-Address-title .edit:hover { color: #ff6b35 !important; }
.account-main .woocommerce-Address address {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-style: normal !important;
}

/* ── Edit account form (woocommerce/myaccount/form-edit-account.php) ── */
.account-main .woocommerce-EditAccountForm {
    max-width: 700px !important;
}
.account-main .woocommerce-EditAccountForm .form-row {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 0 16px !important;
    flex: 1 1 100% !important;
}
.account-main .woocommerce-EditAccountForm .form-row-first,
.account-main .woocommerce-EditAccountForm .form-row-last {
    flex: 1 1 calc(50% - 6px) !important;
    display: inline-flex !important;
}
.account-main .woocommerce-EditAccountForm { display: flex !important; flex-wrap: wrap !important; gap: 0 12px !important; }
.account-main .woocommerce-EditAccountForm .form-row label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 6px !important;
    display: block !important;
}
.account-main .woocommerce-EditAccountForm .form-row label .required { color: #ff6b35 !important; text-decoration: none !important; }
.account-main .woocommerce-EditAccountForm .form-row input.input-text {
    height: 50px !important;
    width: 100% !important;
    padding: 0 18px !important;
    background: #fff !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: #1a1a1a !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.account-main .woocommerce-EditAccountForm .form-row input.input-text:focus {
    border-color: #ff6b35 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15) !important;
}
.account-main .woocommerce-EditAccountForm .form-row span#account_display_name_description {
    display: block !important;
    font-size: 12px !important;
    color: #8a8a8a !important;
    margin-top: 6px !important;
}
.account-main .woocommerce-EditAccountForm .clear { flex-basis: 100% !important; height: 0 !important; }
.account-main .woocommerce-EditAccountForm fieldset {
    flex-basis: 100% !important;
    border: none !important;
    border-top: 2px dashed #e0d8c8 !important;
    margin: 8px 0 16px !important;
    padding: 20px 0 0 !important;
}
.account-main .woocommerce-EditAccountForm fieldset legend {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
}
.account-main .woocommerce-EditAccountForm .password-input { position: relative !important; display: block !important; }
.account-main .woocommerce-EditAccountForm .show-password-input {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #8a8a8a !important;
}
.account-main .woocommerce-EditAccountForm p:last-of-type { flex-basis: 100% !important; margin: 8px 0 0 !important; }
.account-main .woocommerce-EditAccountForm button.woocommerce-Button {
    padding: 14px 28px !important;
    background: #1a1a1a !important;
    color: #fcfaf4 !important;
    border: none !important;
    border-radius: 980px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
}
.account-main .woocommerce-EditAccountForm button.woocommerce-Button:hover { background: #ff6b35 !important; color: #1a1a1a !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .account-layout { grid-template-columns: 1fr; gap: 20px; padding: 24px 22px 60px; }
    .account-sidebar { position: static; }
    .address-grid { grid-template-columns: 1fr; }
    .coupon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .my-points-grid { grid-template-columns: 1fr; gap: 12px; }
    .redeem-card { flex-direction: column; }
    .redeem-points-btn { margin-left: 0; width: 100%; }
}
@media (max-width: 767px) {
    .account-main .woocommerce-Addresses.col2-set { grid-template-columns: 1fr !important; }
    .account-main .woocommerce-EditAccountForm .form-row-first,
    .account-main .woocommerce-EditAccountForm .form-row-last { flex: 1 1 100% !important; }
}
@media (max-width: 768px) {
    .account-layout { grid-template-columns: 1fr !important; gap: 16px !important; padding: 18px 14px !important; }
    .account-sidebar { position: static !important; }
    /* Tablet: keep quick-stats in one row (auto-fit from the base rule
       already does this), just tighten gap/padding so 2-3 stats fit
       comfortably at narrower tablet widths. */
    .quick-stats { gap: 10px !important; }
    .quick-stat { padding: 16px 14px !important; }
    .quick-stat .value { font-size: 22px !important; }
    .welcome-banner { flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
}
@media (max-width: 640px) {
    .order-row { grid-template-columns: auto 1fr; gap: 12px; }
    .order-status, .order-total { grid-column: 1 / -1; text-align: left; }
    .welcome-banner { padding: 24px; }
    /* Mobile: stack quick-stats vertically, one per row, with roomier
       padding on all sides instead of the tablet's tighter side-by-side fit. */
    .quick-stats { grid-template-columns: 1fr !important; gap: 12px !important; }
    .quick-stat { padding: 20px !important; }
    .quick-stat .value { font-size: 24px !important; }
    .section-card { padding: 20px !important; }
}

/* ============================================
   Logged-out auth view (woocommerce/myaccount/form-login.php)
============================================ */
.auth-layout {
    max-width: 500px;
    margin: 64px auto;
    padding: 0 32px;
}
.auth-card {
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 10px 10px 0 #ff6b35;
}
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 10px;
    background: #fcfaf4;
    border-radius: 14px;
    padding: 4px;
}
.auth-tab {
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: #6b6b6b;
}
.auth-tab.active { background: #1a1a1a; color: #ff6b35; }
.auth-card h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px; }
.auth-card h2 .accent {
    background: linear-gradient(135deg, #1f5d3f 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; font-size: 12px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.auth-field input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-field input:focus { border-color: #ff6b35; box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15); }
/* Show/hide password — this is WooCommerce's own JS-injected button
   (woocommerce.js wraps any password input in .password-input and appends
   .show-password-input), same mechanism already handled on checkout/
   edit-account (see checkout-classic.css / .woocommerce-EditAccountForm
   above) — centered inside the field's right edge, background stripped. */
.auth-card .password-input { position: relative !important; display: block !important; }
.auth-card .password-input input[type="password"] { padding-right: 46px !important; }
.auth-card .show-password-input {
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    color: #8a8a8a !important;
}
.auth-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0 22px;
    font-size: 12px;
}
.auth-actions-row label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 600; color: #444; }
.auth-actions-row label input { accent-color: #ff6b35; }
.auth-actions-row a { color: #ff6b35; font-weight: 700; text-decoration: underline; }
.auth-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #ff6b35;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    font-family: inherit;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 5px 5px 0 #ff6b35;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 20px;
}
.auth-submit:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 #ff6b35; }
.auth-perk {
    margin-top: 14px;
    padding: 16px;
    background: rgba(255, 107, 53, 0.06);
    border: 1px dashed #ff6b35;
    border-radius: 12px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #1a1a1a;
}
.auth-perk strong { color: #ff6b35; font-weight: 900; }
@media (max-width: 640px) {
    .auth-layout { margin: 32px auto; padding: 0 22px; }
    .auth-card { padding: 32px 24px; }
}

/* ============================================
   On-site photo review promo banner (dashboard.php)
============================================ */
.acc-tp-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #00b67a 0%, #007353 100%);
    color: #fcfaf4;
    border: 2px solid #1a1a1a;
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 20px;
}
.acc-tp-icon {
    width: 48px;
    height: 48px;
    background: #fcfaf4;
    color: #00b67a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.acc-tp-icon iconify-icon { font-size: 26px; }
.acc-tp-text { flex: 1; }
.acc-tp-text strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.acc-tp-text small { font-size: 13px; color: rgba(255, 248, 240, 0.85); }
.acc-tp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff6b35;
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.15s;
}
.acc-tp-btn:hover { transform: translateX(2px); }
.acc-tp-btn iconify-icon { font-size: 14px; }
@media (max-width: 600px) {
    .acc-tp-banner { flex-wrap: wrap; }
    .acc-tp-btn { width: 100%; justify-content: center; }
}

/* ── Single order view (My Account → Orders → View) ──
   woocommerce/myaccount/view-order.php override — replaces WC's default
   unstyled table/notice markup. Reuses .section-card / .address-card /
   .address-grid / .order-status from above for visual consistency. */
.vo-page { display: flex; flex-direction: column; gap: 20px; }

.vo-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 24px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 16px;
}
.vo-status-line {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.vo-status-line strong { color: #1a1a1a; font-weight: 800; }
.vo-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b6b6b;
    text-decoration: none !important;
    white-space: nowrap;
}
.vo-back:hover { color: #ff6b35; }
.vo-back iconify-icon { font-size: 15px; }

.vo-note-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vo-note-list li { padding: 14px 16px; background: #fcfaf4; border: 1.5px solid #e0d8c8; border-radius: 12px; }
.vo-note-date {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8a8a8a;
    margin-bottom: 4px;
}
.vo-note-text { font-size: 13.5px; color: #3a3a3a; line-height: 1.55; }
.vo-note-text p { margin: 0; }

.vo-items { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fcfaf4;
    border: 1.5px solid #e0d8c8;
    border-radius: 14px;
}
.vo-thumb { width: 56px; height: 56px; border-radius: 10px; border: 2px solid #1a1a1a; object-fit: cover; flex-shrink: 0; }
.vo-item-info { flex: 1; min-width: 0; }
.vo-item-name { font-size: 14.5px; font-weight: 700; color: #1a1a1a; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vo-item-name a { color: #1a1a1a; text-decoration: none !important; }
.vo-item-name a:hover { color: #ff6b35; }
.vo-item-qty { font-weight: 800; color: #6b6b6b; font-size: 13px; }
.vo-item-meta, .vo-item-note { font-size: 12.5px; color: #6b6b6b; margin-top: 4px; }
.vo-item-note p { margin: 4px 0 0; }
.vo-item-total { font-size: 15px; font-weight: 900; letter-spacing: -0.01em; white-space: nowrap; }

.vo-totals { border-top: 2px dashed #e0d8c8; padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.vo-total-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.vo-total-row span:first-child { font-weight: 600; color: #6b6b6b; }
.vo-total-row span:last-child { font-weight: 700; color: #1a1a1a; text-align: right; }
.vo-total-row.is-grand { border-top: 2px solid #1a1a1a; margin-top: 4px; padding-top: 12px; }
.vo-total-row.is-grand span { font-size: 18px; font-weight: 900; color: #1a1a1a; }

.vo-customer-note {
    margin-top: 16px;
    padding: 14px 16px;
    background: #fff3da;
    border: 2px solid #e8b95e;
    border-radius: 12px;
    font-size: 13px;
    color: #6b4a13;
}

.vo-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.vo-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    border: 2px solid #1a1a1a;
    transition: transform 0.12s, box-shadow 0.12s;
}
.vo-action-btn.pay { background: #1f5d3f; color: #fcfaf4; box-shadow: 3px 3px 0 #1a1a1a; }
.vo-action-btn.pay:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #1a1a1a; }
.vo-action-btn.cancel { background: #fff; color: #c93838; border-color: #c93838; }
.vo-action-btn.cancel:hover { background: #fdecec; }

/* "Order again" button is WC core's own markup (order/order-again.php,
   fired via woocommerce_order_details_after_order_table) — styled
   generically here since we don't control its HTML. */
.order-again { margin: -6px 0 0; }
.order-again .button {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    background: #ff6b35;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    box-shadow: 3px 3px 0 #1a1a1a;
    transition: transform 0.12s, box-shadow 0.12s;
}
.order-again .button:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #1a1a1a; }

@media (max-width: 700px) {
    .vo-topbar { flex-direction: column; align-items: flex-start; }
    .vo-item { flex-wrap: wrap; }
    .vo-item-total { margin-left: auto; }
    .vo-actions { width: 100%; }
    .vo-action-btn { flex: 1; justify-content: center; }
}
