/* ─── Account page ─── */
.rr-account-header { margin-bottom: 30px; }
.rr-account-header h1 { font-size: 32px; }
.rr-account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}
.rr-account-card {
    display: block;
    background: #fff;
    border: 1px solid var(--rr-border-l);
    border-radius: var(--rr-radius);
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--rr-text);
    transition: all .2s;
}
.rr-account-card:hover {
    border-color: var(--rr-gold);
    box-shadow: 0 6px 18px rgba(187,127,77,.15);
    transform: translateY(-2px);
}
.rr-account-card iconify-icon { font-size: 40px; color: var(--rr-gold); margin-bottom: 10px; }
.rr-account-card h3 { font-size: 16px; margin: 6px 0 4px; }
.rr-account-card p { font-size: 12px; color: var(--rr-muted); margin: 0; }
.rr-account-actions { text-align: center; }

/* ─── Cart ─── */
.rr-cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; }
.rr-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 90px 100px 30px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--rr-border-l);
    border-radius: var(--rr-radius);
    margin-bottom: 10px;
}
.rr-cart-item img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--rr-radius); }
.rr-cart-item-info h4 { margin: 0 0 4px; font-size: 15px; }
.rr-cart-item-qty input { width: 60px; padding: 6px; border: 1px solid var(--rr-border); border-radius: var(--rr-radius); }
.rr-cart-item-price { font-weight: 700; color: var(--rr-gold); }
.rr-cart-remove { color: var(--rr-red); }
.rr-cart-summary {
    background: var(--rr-cream);
    padding: 22px;
    border-radius: var(--rr-radius);
    height: fit-content;
    position: sticky;
    top: 20px;
}
.rr-cart-summary h3 { margin-bottom: 18px; }
.rr-cart-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--rr-border); font-size: 14px; }
.rr-cart-total { display: flex; justify-content: space-between; padding: 14px 0; font-size: 20px; font-weight: 700; color: var(--rr-charcoal); margin: 6px 0 14px; border-bottom: 2px solid var(--rr-gold); }

/* ─── Checkout steps ─── */
.rr-steps {
    display: flex;
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    gap: 4px;
}
.rr-steps li {
    flex: 1;
    text-align: center;
    padding: 14px;
    background: var(--rr-cream);
    color: var(--rr-muted);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--rr-radius);
    position: relative;
}
.rr-steps li span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px;
    background: rgba(0,0,0,.1);
    color: var(--rr-text);
    border-radius: 50%;
    font-size: 12px;
    margin-right: 6px;
}
.rr-steps li.active { background: var(--rr-gold); color: #fff; }
.rr-steps li.active span { background: rgba(255,255,255,.3); color: #fff; }
.rr-checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; }
.rr-checkout-main { background: #fff; padding: 28px; border-radius: var(--rr-radius); }
.rr-checkout-summary { background: var(--rr-cream); padding: 22px; border-radius: var(--rr-radius); height: fit-content; }

/* ─── Contact ─── */
.rr-contact-section { padding: 50px 0; }
.rr-contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; }
.rr-contact-list { list-style: none; padding: 0; }
.rr-contact-list li { padding: 12px 0; border-bottom: 1px solid var(--rr-border-l); display: flex; align-items: center; gap: 12px; }
.rr-contact-list iconify-icon { color: var(--rr-gold); font-size: 20px; }
.rr-contact-social { display: flex; gap: 8px; margin-top: 18px; }
.rr-contact-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--rr-cream); color: var(--rr-teal); border-radius: 50%; font-size: 20px; text-decoration: none; }
.rr-contact-social a:hover { background: var(--rr-gold); color: #fff; }

/* ─── CMS ─── */
.rr-cms { padding: 40px 0; }
.rr-cms-header { text-align: center; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--rr-border-l); }
.rr-cms-subtitle { color: var(--rr-muted); font-style: italic; }
.rr-cms-content { max-width: 760px; margin: 0 auto; }

/* ─── Error ─── */
.rr-error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: linear-gradient(180deg, var(--rr-cream), #fff); }
.rr-error-inner { text-align: center; max-width: 460px; }
.rr-error-code { font-family: var(--rr-font-heading); font-size: 120px; color: var(--rr-gold); line-height: 1; margin-bottom: 12px; }
.rr-error-title { font-size: 28px; margin-bottom: 12px; }
.rr-error-desc { color: var(--rr-muted); margin-bottom: 24px; }
.rr-error-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─── Account page generic ─── */
.rr-account-page { padding: 30px 0; }
.rr-addresses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.rr-address-card { background: #fff; border: 1px solid var(--rr-border-l); padding: 20px; border-radius: var(--rr-radius); }
.rr-address-card h3 { color: var(--rr-teal); margin-bottom: 8px; font-size: 16px; }
.rr-address-card p { margin: 4px 0; font-size: 14px; color: var(--rr-text); }
