* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Jost', sans-serif;
    list-style: none;
    text-decoration: none;
}/* Add styles here */

:root {
    --main-color: #660070;
    --text-color: #000;
    --bg-color: #FFF;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10%;
}

.logo img{
    max-width: 100px;
    height: auto;
}

.navmenu {
    display: flex;
}

.navmenu a {
    color: var(--text-color);
    font-size: 16px;
    text-transform: capitalize;
    padding: 10px 20px;
    font-weight: 400;
    transition: all .42s ease;
}

.navmenu a:hover {
    color: var(--main-color);
}

.nav-icon {
    display: flex;
    align-items: center;
}

.nav-icon i {
    margin-right: 20px;
    color: var(--text-color);
    font-size: 25px;
    font-weight: 400;
    transition: all .42s ease;
}

.nav-icon i:hover {
    transform: scale(1.1);
    color: var(--main-color);
}

#menu-icon {
    font-size: 30px;
    color: var(--text-color);
    z-index: 10001;
    cursor: pointer;
}

section {
    padding: 5% 10%;
}

.main-home {
    width: 100%;
    height: 100vh;
    background-image: url(../assets/banner-3.png);
    background-position: center;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
}

.main-text h5 {
    color: var(--main-color);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
}

.main-text h1 {
    color: var(--text-color);
    font-size: 65px;
    text-transform: capitalize;
    line-height: 1.1;
    font-weight: 600;
    margin: 6px 0 10px;
}

.main-text p {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.main-btn {
    display: inline-block;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border: 2px solid var(--text-color);
    padding: 12px 25px;
    transition: all .42s ease;
}

.main-btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.main-btn i {
    vertical-align: middle;
}

.down-arrow {
    position: absolute;
    top: 85%;
    right: 11%;
}

.down i {
    font-size: 30px;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 12px 12px;
}

.down i:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    transition: all .42s ease;
}

header.sticky {
    background: var(--bg-color);
    padding: 20px 10%;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.center-text h2 {
    color: var(--text-color);
    font-size: 28px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}

.center-text span {
    color: var(--main-color);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    gap: 2rem;
}

.row {
    position: relative;
    transition: all .40s;
}

.row img {
    width: 100%;
    height: auto;
    transition: all .40s;
}

.row img:hover {
    transform: scale(0.9);
}

.product-text h5 {
    position: absolute;
    top: 13px;
    left: 13px;
    color: var(--bg-color);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #BAA300;
    padding: 3px 10px;
    border-radius: 2px;
}

.heart-icon {
    position: absolute;
    right: 0;
    font-size: 20px;
}

.heart-icon:hover {
    color: var(--main-color);
}

.ratting i {
    color: #FF8C00;
    font-size: 18px;
}

.price h4 {
    color: var(--text-color);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
}

.price p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
}

.client-reviews {
    background-color: #F3F4F6;
}

.reviews {
    text-align: center;
}

.reviews h3 {
    color: var(--text-color);
    font-size: 25px;
    text-transform: capitalize;
    text-align: center;
    font-weight: 700;
}

.reviews img {
    width: 100px;
    height: auto;
    border-radius: 50px;
    margin: 10px 0;
}

.reviews p {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}

.reviews h2 {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.up-center-text h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}

.cart img {
    width: 380px;
    height: auto;
    border-radius: 5px;
}

.update-cart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, auto));
    gap: 1rem;
}

.cart h5 {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 12px;
    margin-top: 12px;
}

.cart h4 {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cart p {
    color: #707070;
    font-size: 15px;
    max-width: 380px;
    line-height: 25px;
    margin-bottom: 12px;
}

.cart h6 {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.cart h6:hover {
    color: var(--main-color);
}

.contact {
    background-color: #f3f4f6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, auto));
    gap: 3rem;
}

.contact-info img {
    width: 120px;
    height: auto;
    padding-bottom: 10px;
}

.contact-info h4 {
    color: #212529;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-info p {
    color: #565656;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.5;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .42s;
}

.contact-info p:hover {
    color: var(--main-color);
}

.social-icon i {
    color: #565656;
    margin-right: 10px;
    font-size: 20px;
    transition: all .42s;
}

.social-icon i:hover {
    transform: scale(1.3);
    color: var(--main-color);
}

.end-text {
    background-color: var(--bg-color);
    text-align: center;
    padding: 20px;
}

.end-text p {
    color: var(--text-color);
    text-transform: capitalize;
}

.five-info input {
    width: 60%;
    padding: 10px;
    border: none;
    outline: none;
}

.five-info button {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 10px 50px;
    border: none;
    outline: none;
    margin-top: 6px;
    cursor: pointer;
}

@media(max-width: 890px) {
    header {
        padding: 20px 3%;
        transition: .4s;
    }
}

@media(max-width:630px){
    .main-text h1 {
        font-size: 50px;
        transition: .4s;
    }
    .main-text p {
        font-size: 18px;
        transition: .4s;
    }
    .main-btn {
        padding: 10px 20px;
        transition: .4s;
    }
}

@media(max-width:750px) {
    .navmenu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 300px;
        height: 130vh;
        background: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 120px 30px;
        transition: all .42s ease;
    }
    .navmenu a {
        display: block;
        margin: 18px 0;
    }
    .navmenu.open {
        right: 0;
    }
}




/* AUTH MODAL */
.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.auth-box {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    position: relative;
}

.auth-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    outline: none;
}

.auth-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
}

.auth-tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-weight: 500;
}

.auth-tabs button.active {
    background: #000;
    color: #fff;
}

.main-btn.full {
    width: 100%;
    text-align: center;
}


.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.auth-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.auth-container input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.auth-container .main-btn.full {
    width: 100%;
    margin-top: 10px;
}

.auth-container .remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.auth-container .remember-me input {
    margin-right: 8px;
}

.auth-container .forgot-password,
.auth-container .already-registered {
    text-align: center;
    margin-top: 15px;
}

.auth-container .forgot-password a,
.auth-container .already-registered a {
    color: #333;
    text-decoration: underline;
    font-size: 14px;
}



/* Product Links */
.row a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.row a:hover {
    text-decoration: none;
}

/* Alert Messages */
.alert-success {
    padding: 15px;
    background: #BAA300;
    color: white;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    animation: slideDown 0.3s ease;
}

.alert-error {
    padding: 15px;
    background: #660070;
    color: white;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Improvements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(238, 28, 71, 0.1);
}

/* Button Disabled State */
.main-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ccc;
    border-color: #ccc;
}

.main-btn:disabled:hover {
    background-color: #ccc;
    color: var(--text-color);
}

/* Cart Item Cards */
.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Product Image Zoom */
.product-image-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.product-image-wrapper img {
    transition: transform 0.4s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Quantity Input Styling */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Checkout Summary Sticky */
@media(max-width: 1024px) {
    .checkout-summary {
        position: static !important;
    }
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--main-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Improvements */
@media(max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr !important;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Auth Error Messages */
.auth-error {
    color: #660070;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.auth-error.show {
    display: block;
}

/* Empty State Styling */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.empty-state i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

/* Dashboard Cards */
.dashboard-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Product Grid Responsive */
@media(max-width: 630px) {
    .products {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}


.auth-error {
    color: #660070;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.auth-error.show {
    display: block;
}


/* ===== Footer Wrapper ===== */
.contact {
    background: #ffffff;
    padding: 50px 20px 20px;
    color: #4d4d4d;
}

/* ===== Main Columns ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Hide logo section from grid layout */
.first-info {
    display: none;
}

/* Column Styling */
.contact-info h4 {
    margin-bottom: 15px;
    font-size: 17px;
}

.contact-info p,
.contact-info a,
.contact-info button {
    font-size: 14px;
    color: #4d4d4d;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.contact-info a:hover,
.contact-info button:hover {
    color: #4d4d4d;
}

/* ===== Bottom Bar ===== */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

/* Small logo */
.footer-bottom img {
    width: 80px;
}

/* Email */
.footer-email {
    font-size: 14px;
    color: #4d4d4d;
}

/* Social Icons */
.social-icon a {
    font-size: 18px;
    margin-left: 10px;
    color: #4d4d4d;
}

.social-icon a:hover {
    color: #4d4d4d;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }

    .social-icon a {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr); /* KEEP 3 columns */
        gap: 20px;
        text-align: center;
    }

    .contact-info h4 {
        font-size: 15px;
    }

    .contact-info p,
    .contact-info a,
    .contact-info button {
        font-size: 13px;
    }
}


/* ============================================================
   ROYALE FASHIONS — CSS ADDITIONS
   Paste these at the bottom of your existing style.css
   ============================================================ */

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.header-spacer { height: 70px; }

.site-header .logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.navmenu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
}

.navmenu li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: .3px;
    transition: color .2s, background .2s;
}

.navmenu li a:hover,
.navmenu li a.nav-active {
    color: #660070;
    background: rgba(102,0,112,.07);
}

/* Admin link */
.nav-admin {
    color: #660070 !important;
    font-weight: 600 !important;
}

/* Logout button — styled to fit in nav */
.nav-logout { display: flex; align-items: center; }

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 500;
    font-family: inherit;
    color: #660070;
    background: rgba(102,0,112,.08);
    border: 1.5px solid rgba(102,0,112,.25);
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}

.logout-btn:hover {
    background: #660070;
    color: #fff;
    border-color: #660070;
}

.logout-btn i { font-size: 16px; }

/* Nav icons */
.nav-icon {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-icon a,
.nav-icon .bx-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 8px;
    font-size: 20px;
    color: #222;
    transition: background .2s, color .2s;
    cursor: pointer;
}

.nav-icon a:hover,
.nav-icon .bx-menu:hover {
    background: rgba(102,0,112,.08);
    color: #660070;
}

.nav-icon a.nav-active { color: #660070; }

/* ── PRODUCT IMAGE — CONSISTENT SIZE ─────────────────────── */
/*
   Wrapping the <img> in .product-img-wrap forces every card's
   image to the same height. The image is scaled to cover the
   space (object-fit: cover) but you can change to 'contain'
   if you never want cropping at all — 'contain' will letterbox
   instead and is the non-crop option.
*/

.product-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;          /* portrait ratio — adjust to taste */
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #f5f5f5;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;           /* no cropping — image fully visible */
    object-position: center;
    display: block;
    transition: transform .4s ease;
}

.row:hover .product-img-wrap img {
    transform: scale(1.04);
}

/* If your .row already has overflow:hidden, add this too: */
.row { overflow: visible; }


/* ── DASHBOARD ───────────────────────────────────────────── */
.dashboard-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Greeting */
.dash-greeting {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0 36px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.dash-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #660070;
    margin-bottom: 8px;
}

.dash-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.2;
}

.dash-title em {
    font-style: normal;
    color: #660070;
}

.dash-subtitle {
    color: #888;
    font-size: 15px;
    margin: 0;
}

.dash-edit-profile {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: transparent;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s;
    margin-top: 6px;
}

.dash-edit-profile:hover {
    border-color: #660070;
    color: #660070;
    background: rgba(102,0,112,.04);
}

/* Stats */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .dash-stats { grid-template-columns: 1fr; }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 22px;
    border-radius: 14px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: -18px; top: -18px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    pointer-events: none;
}

.stat-purple { background: linear-gradient(135deg, #660070, #c4336e); }
.stat-orange { background: linear-gradient(135deg, #c45c00, #f5a623); }
.stat-green  { background: linear-gradient(135deg, #1a7a3a, #43b06a); }
.stat-dark   { background: linear-gradient(135deg, #1a1a1a, #444); }

.stat-icon {
    font-size: 28px;
    opacity: .9;
    flex-shrink: 0;
}

.stat-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .8;
}

.stat-value {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

/* Column layout */
.dash-columns {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 860px) {
    .dash-columns { grid-template-columns: 1fr; }
}

.dash-panel {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
}

.dash-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f4f4f4;
}

.dash-panel-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
    letter-spacing: .2px;
}

.dash-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #660070;
    text-decoration: none;
    transition: gap .2s;
}
.dash-view-all:hover { gap: 7px; }

/* Quick Actions */
.dash-actions { padding: 8px 0; }

.dash-action-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    text-decoration: none;
    transition: background .18s;
}

.dash-action-item:hover { background: #fafafa; }

.action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.action-pink  { background: rgba(102,0,112,.1);  color: #660070; }
.action-blue  { background: rgba(33,150,243,.1); color: #2196F3; }
.action-gold  { background: rgba(186,163,0,.12); color: #9a8700; }
.action-grey  { background: rgba(100,100,100,.1);color: #555; }

.action-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.action-text strong {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.action-text small {
    font-size: 12px;
    color: #999;
}

.action-arrow {
    font-size: 18px;
    color: #ccc;
    transition: transform .2s, color .2s;
}

.dash-action-item:hover .action-arrow {
    transform: translateX(3px);
    color: #660070;
}

/* Order rows */
.order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #f7f7f7;
    flex-wrap: wrap;
    transition: background .15s;
}

.order-row:last-child { border-bottom: none; }
.order-row:hover { background: #fdfafa; }

.order-row-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-number {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.order-date, .order-items {
    font-size: 12px;
    color: #aaa;
}

.order-row-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.order-total {
    font-size: 16px;
    font-weight: 700;
    color: #660070;
}

.order-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.status-completed  { background: rgba(67,176,106,.15); color: #237a3e; }
.status-pending    { background: rgba(245,166,35,.15);  color: #a06000; }
.status-processing { background: rgba(33,150,243,.15);  color: #0d73c9; }
.status-cancelled  { background: rgba(238,28,71,.12);   color: #c01040; }

.order-details-btn {
    display: inline-block;
    padding: 6px 14px;
    background: #660070;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

.order-details-btn:hover {
    background: #4d0054;
    transform: translateY(-1px);
}

/* Empty state */
.empty-orders {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    color: #bbb;
}

.empty-orders i {
    font-size: 56px;
    margin-bottom: 14px;
    opacity: .4;
}

.empty-orders p {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.empty-orders small {
    font-size: 13px;
    color: #aaa;
}



/* ============================================================
   CURRENCY SWITCHER + CART BADGE + ENHANCEMENTS
   Add these to additions.css (after the existing rules)
   ============================================================ */

/* ── CURRENCY SWITCHER ───────────────────────────────────── */
.currency-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.currency-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: transparent;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    white-space: nowrap;
    user-select: none;
}

.currency-trigger:hover,
.currency-trigger.is-open {
    border-color: #660070;
    color: #660070;
    background: rgba(102,0,112,.05);
}

.currency-flag { font-size: 15px; line-height: 1; }
.currency-code { font-size: 12px; letter-spacing: .5px; }

.currency-chevron {
    font-size: 16px;
    transition: transform .25s;
    color: #aaa;
}

.currency-trigger.is-open .currency-chevron {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}

.currency-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.currency-option-form { margin: 0; padding: 0; }

.currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13.5px;
    color: #333;
    transition: background .15s;
    text-align: left;
}

.currency-option:hover {
    background: #fafafa;
}

.currency-option--active {
    background: rgba(102,0,112,.06);
    color: #660070;
    font-weight: 700;
}

.currency-option-flag  { font-size: 16px; }
.currency-option-code  { font-weight: 600; flex: 1; }
.currency-option-symbol {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.currency-option--active .currency-option-symbol { color: #aa55bb; }

/* ZWL note in dropdown footer */
.currency-dropdown-note {
    padding: 8px 14px;
    font-size: 11px;
    color: #aaa;
    border-top: 1px solid #f5f5f5;
    background: #fafafa;
    line-height: 1.4;
}

/* ── CART BADGE ──────────────────────────────────────────── */
.cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    background: #660070;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
    animation: badgePop .25s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes badgePop {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}

/* ── ZWL CHECKOUT WARNING BANNER ────────────────────────── */
.zwl-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(245,166,35,.1);
    border: 1px solid rgba(245,166,35,.3);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #7a5200;
}

.zwl-notice i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.zwl-notice strong { display: block; margin-bottom: 2px; }


#currencyForm {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.currency-select {
    appearance: none;
    -webkit-appearance: none;
    padding: 6px 28px 6px 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: #333;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    outline: none;
    line-height: 1;
}

.currency-select:hover,
.currency-select:focus {
    border-color: #660070;
    color: #660070;
}

.currency-select option {
    font-weight: 600;
    color: #333;
    background: #fff;
}

