/**
 * components.css
 * Requires: global.css
 * Used by: head.php
 */
/* Shared UI — scaled for 1440×1024 desktop */

/* Match index.php: main fills viewport; footer appears below the fold */
.page-body {
    min-height: 100vh;
    background: linear-gradient(107.79deg, #01272C 0.52%, #091413 99.48%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 40px 40px;
    position: relative;
    min-height: calc(100vh - 135px);
    box-sizing: border-box;
}

.site-footer {
    flex-shrink: 0;
}

/* Header menu — dropdown anchored to list icon (Uniqlo-style text links) */
.header-menu-wrap {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #0C383B;
    border: 1px solid #162B27;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 168px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown[hidden] {
    display: none;
}

.nav-dropdown a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    color: #fff;
    background: rgba(182, 39, 121, 0.2);
}

.user-icon-svg {
    width: 43px;
    height: 43px;
    display: block;
    border: none;
    border-radius: 0;
}

.user-avatar-img {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border-radius: 11px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
    opacity: 0.92;
}

.btn-primary {
    background: #B62779;
    color: #fff;
    border-color: #B62779;
    padding: 14px 28px;
}

.btn-outline-pink {
    background: #FEB0DC;
    color: #B62779;
    border-color: #B62779;
    padding: 14px 28px;
}

.btn-block {
    width: 100%;
}

/* Forms */
.auth-page,
.content-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.auth-logo {
    width: 485px;
    max-width: 90%;
    margin-bottom: 24px;
}

.auth-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 32px;
}

.auth-form {
    width: 100%;
    max-width: 338px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    width: 100%;
    height: 41px;
    padding: 0 20px;
    background: #091413;
    border: 1px solid #162B27;
    border-radius: 30px;
    color: #fff;
    font-family: var(--font-inter);
    font-size: 12px;
}

.form-input::placeholder {
    color: rgba(143, 169, 163, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: #B62779;
}

/* Keep dark theme when browser autofill is used (Chrome, Edge, Safari) */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #091413 inset !important;
    box-shadow: 0 0 0 1000px #091413 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    border: 1px solid #162B27 !important;
    transition: background-color 99999s ease-out, color 99999s ease-out;
}

.form-input:-webkit-autofill:focus {
    border-color: #B62779 !important;
}

.form-input:autofill,
.form-input:autofill:hover,
.form-input:autofill:focus {
    box-shadow: 0 0 0 1000px #091413 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    border: 1px solid #162B27 !important;
}

.form-textarea {
    width: 100%;
    min-height: 90px;
    padding: 12px 16px;
    background: #091413;
    border: 1px solid #162B27;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-inter);
    font-size: 14px;
    resize: vertical;
}

.form-error {
    color: #ff8ab5;
    font-size: 13px;
    text-align: center;
}

.auth-link {
    font-family: var(--font-inter);
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    margin-top: 8px;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-watermark {
    margin-top: 40px;
    font-size: 12px;
    color: rgba(143, 169, 163, 0.25);
}

/* Shop */
.shop-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 72px;
    text-align: center;
    margin: 40px 0 60px;
}

.shop-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.shop-card {
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 203px;
}

.shop-card img {
    width: 203px;
    height: 360px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.25s ease;
}

.shop-card:hover img {
    transform: scale(1.03);
}

.shop-card h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 15px;
    margin-top: 12px;
}

/* Product */
.product-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.product-visual img {
    width: 308px;
    height: auto;
    border-radius: 8px;
}

.product-details {
    flex: 1;
    max-width: 520px;
}

.product-details h1 {
    font-family: var(--font-inter);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 16px;
}

.product-price {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-description {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 24px;
}

.product-rating-block {
    margin-bottom: 20px;
}

.star-rating .star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
}

.star-rating .star.filled {
    color: #B62779;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.qty-label {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.8;
}

.qty-control {
    display: inline-grid;
    grid-template-columns: 40px 48px 40px;
    align-items: center;
    border: 1px solid #fff;
    background: #091413;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    min-height: 31px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.qty-control input {
    width: 100%;
    height: 31px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    line-height: 31px;
    background: transparent;
    border: none;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.personalize-toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
}

.personalize-field {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-bottom: 0;
}

.personalize-field.is-visible {
    max-height: 160px;
    opacity: 1;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.product-actions .btn {
    min-width: 209px;
    height: 50px;
}

.reviews-section {
    max-width: 720px;
    margin: 56px auto 0;
    padding: 40px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reviews-header {
    margin-bottom: 28px;
}

.reviews-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.reviews-summary .star-rating .star {
    font-size: 16px;
}

.reviews-empty {
    margin: 0 0 32px;
    padding: 20px 22px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(12, 56, 59, 0.45);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.review-card {
    background: rgba(12, 56, 59, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 22px;
}

.review-card-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.review-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-img {
    border: 2px solid rgba(182, 39, 121, 0.45);
}

.review-avatar-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    opacity: 0.9;
}

.review-card-body {
    flex: 1;
    min-width: 0;
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.review-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.review-author {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px;
}

.review-comment {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.review-photo-link {
    display: inline-block;
    margin-top: 14px;
    margin-left: 64px;
}

.review-photo {
    display: block;
    max-width: 140px;
    max-height: 140px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.review-form-panel {
    margin-top: 8px;
    padding: 28px 30px 32px;
    background: rgba(12, 56, 59, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.review-form-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.review-form-hint {
    margin: 0 0 24px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.review-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.review-form-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.7;
}

.review-star-input {
    display: flex;
    gap: 6px;
}

.review-star-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(9, 20, 19, 0.8);
    color: rgba(255, 255, 255, 0.28);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.review-star-btn:hover,
.review-star-btn.is-active {
    color: #B62779;
    border-color: rgba(182, 39, 121, 0.45);
    background: rgba(182, 39, 121, 0.12);
}

.review-star-btn:focus-visible {
    outline: 2px solid #B62779;
    outline-offset: 2px;
}

.review-comment-input {
    min-height: 120px;
    resize: vertical;
    border-radius: 12px;
}

.review-file-upload {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 16px;
    background: #091413;
    border: 1px solid #162B27;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.review-file-upload:hover {
    border-color: rgba(182, 39, 121, 0.5);
}

.review-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.review-file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(182, 39, 121, 0.35);
    border: 1px solid rgba(182, 39, 121, 0.5);
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.review-file-upload:hover .review-file-btn {
    background: rgba(182, 39, 121, 0.55);
}

.review-file-name {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-file-name.has-file {
    color: #fff;
}

.review-file-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.review-submit-btn {
    align-self: flex-start;
    min-width: 180px;
    height: 48px;
    margin-top: 4px;
}

/* Off-canvas cart — ref Figma ~416px wide @ 0.75 */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 300;
}

.cart-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.offcanvas-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 416px;
    max-width: 100%;
    height: 100%;
    background: #01272C;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 301;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
}

.offcanvas-cart.open {
    transform: translateX(0);
}

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

.cart-panel-header h2 {
    font-family: var(--font-inter);
    font-size: 22px;
}

.cart-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-empty {
    opacity: 0.7;
    text-align: center;
    margin-top: 40px;
}

.cart-lines {
    list-style: none;
}

.cart-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-line-thumb {
    width: 48px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.cart-line-info {
    flex: 1;
    min-width: 0;
}

.cart-line-name {
    font-weight: 700;
    font-size: 13px;
    display: block;
}

.cart-line-meta {
    font-size: 11px;
    color: #B62779;
}

.cart-line-price {
    display: block;
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
}

.cart-qty-control {
    display: inline-flex;
    align-items: stretch;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    background: #091413;
    overflow: hidden;
}

.cart-qty-form {
    margin: 0;
}

.cart-qty-btn {
    width: 32px;
    height: 28px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover:not(:disabled) {
    background: rgba(182, 39, 121, 0.25);
}

.cart-qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cart-qty-value {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
    border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
}

.cart-summary {
    margin-top: 16px;
    font-size: 13px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.cart-summary-row.total {
    font-weight: 700;
    font-size: 15px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-panel-footer {
    padding: 16px 20px 24px;
    border-top: 1px solid #162B27;
}

/* Content pages */
.content-hero-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 32px;
}

.content-prose {
    max-width: 720px;
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.content-prose p {
    margin-bottom: 16px;
}

.contact-block {
    max-width: 420px;
    font-family: var(--font-inter);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.65;
}

.contact-block h2 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.contact-block p {
    margin-bottom: 8px;
}

/* Checkout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.checkout-panel {
    background: #0C383B;
    border-radius: 19px;
    padding: 28px 32px;
}

.checkout-panel h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout-form .form-row {
    margin-bottom: 14px;
}

.checkout-form label {
    display: block;
    font-size: 11px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.order-summary-panel .summary-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
}

/* Account */
.account-section {
    background: rgba(12, 56, 59, 0.5);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    max-width: 800px;
}

.account-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.orders-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 20, 19, 0.4);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.orders-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.15);
}

.orders-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}

.orders-table tbody tr:hover {
    background: rgba(182, 39, 121, 0.06);
}

.orders-table .col-products {
    max-width: 280px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.orders-table .col-total {
    font-weight: 700;
    white-space: nowrap;
}

.orders-table .col-status,
.orders-table th.col-status {
    text-align: center;
    width: 140px;
}

.orders-table .col-date {
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.75);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 108px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.status-badge--placed {
    background: rgba(182, 39, 121, 0.35);
    color: #fff;
}

.status-badge--toship {
    background: rgba(248, 140, 41, 0.35);
    color: #fff;
}

.status-badge--shipped {
    background: rgba(76, 175, 255, 0.25);
    color: #fff;
}

.status-badge--received {
    background: rgba(100, 200, 120, 0.3);
    color: #fff;
}

/* Dashboard low stock panel */
.dashboard-panel {
    background: #0C383B;
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 520px;
}

.dashboard-panel h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dashboard-panel-note {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 20px;
}

.dashboard-ok-msg {
    font-size: 14px;
    opacity: 0.85;
    padding: 12px 0;
}

.low-stock-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.low-stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(9, 20, 19, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.low-stock-name {
    font-weight: 600;
    font-size: 14px;
}

.low-stock-qty {
    font-size: 13px;
    font-weight: 700;
    color: #F88C29;
    white-space: nowrap;
}

/* Purchases page filters */
.purchase-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.purchase-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    background: rgba(12, 56, 59, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.purchase-filter-btn:hover {
    border-color: rgba(182, 39, 121, 0.5);
    color: #fff;
}

.purchase-filter-btn.is-active {
    background: rgba(182, 39, 121, 0.45);
    border-color: #B62779;
    color: #fff;
}

.purchase-empty {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.75;
}

.purchase-address-cell {
    max-width: 200px;
    font-size: 11px;
}

.purchase-action-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.purchase-status-select {
    height: 32px;
    font-size: 11px;
}

.purchase-update-btn {
    padding: 6px 10px;
    font-size: 11px;
}

/* Admin tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 16px;
}

.admin-table th,
.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

.stat-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.stat-card {
    background: #0C383B;
    border-radius: 12px;
    padding: 20px 28px;
    min-width: 160px;
}

.stat-card strong {
    display: block;
    font-size: 28px;
    color: #B62779;
}
