/* ============================================================
   VAIRONCROWN — Component Styles
   ============================================================ */

/* ----------------------------------------------------------
   1. CART PAGE
   ---------------------------------------------------------- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-card);
    align-items: center;
}

.cart-item__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.cart-item__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item__name a {
    color: inherit;
    transition: color var(--transition);
}

.cart-item__name a:hover {
    color: var(--gold);
}

.cart-item__variant {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.cart-item__sku {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item__remove {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color var(--transition);
    background: none;
    border: none;
    font-family: var(--font-body);
}

.cart-item__remove:hover {
    color: var(--danger);
}

.cart-item__price {
    text-align: right;
    min-width: 100px;
}

.cart-item__current {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.15rem;
}

.cart-item__original {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Order Summary */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.75rem;
    position: sticky;
    top: 120px;
}

.order-summary__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: var(--fs-sm);
}

.order-summary__label {
    color: var(--text-muted);
}

.order-summary__value {
    color: var(--text-heading);
    font-weight: 500;
}

.order-summary__value--free {
    color: var(--success);
    font-weight: 600;
}

.order-summary__divider {
    height: 1px;
    background: var(--border);
    margin: 0.75rem 0;
}

.order-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0 0;
    font-size: var(--fs-base);
    font-weight: 600;
}

.order-summary__total-label {
    color: var(--text-heading);
}

.order-summary__total-value {
    color: var(--gold);
    font-size: var(--fs-xl);
}

.order-summary__coupon {
    display: flex;
    gap: 0;
    margin: 1.25rem 0;
}

.order-summary__coupon input {
    flex: 1;
    padding: 0.65rem 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text-heading);
    font-size: var(--fs-sm);
}

.order-summary__coupon input::placeholder {
    color: var(--text-muted);
}

.order-summary__coupon input:focus {
    outline: none;
    border-color: var(--gold);
}

.order-summary__coupon button {
    padding: 0.65rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.order-summary__coupon button:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.order-summary__checkout {
    margin-top: 1rem;
}

.order-summary__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-align: center;
}

.order-summary__secure svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
}

/* Cart Empty */
.cart-empty {
    text-align: center;
    padding: 6rem 2rem;
}

.cart-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--border-light);
}

.cart-empty__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.cart-empty__title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.cart-empty__text {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------
   2. CHECKOUT PAGE
   ---------------------------------------------------------- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
}

/* Progress Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
}

.checkout-step__circle {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-primary);
    transition: all var(--transition);
    flex-shrink: 0;
    z-index: 1;
}

.checkout-step__label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    white-space: nowrap;
    transition: color var(--transition);
}

.checkout-step--active .checkout-step__circle {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--bg-primary);
}

.checkout-step--active .checkout-step__label {
    color: var(--text-heading);
    font-weight: 500;
}

.checkout-step--completed .checkout-step__circle {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--bg-primary);
}

.checkout-step--completed .checkout-step__label {
    color: var(--text-body);
}

.checkout-step__line {
    width: 60px;
    height: 1px;
    background: var(--border-light);
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.checkout-step--completed + .checkout-step__line {
    background: var(--gold);
}

.checkout-step__line--active {
    background: var(--gold) !important;
}

/* Checkout Form Sections */
.checkout-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.checkout-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.checkout-section__title span {
    color: var(--gold);
    font-weight: 400;
}

/* Shipping Method */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
}

.shipping-option:hover {
    border-color: var(--border-light);
}

.shipping-option--selected {
    border-color: var(--gold);
    background: var(--gold-subtle);
}

.shipping-option__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shipping-option__radio {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color var(--transition);
}

.shipping-option--selected .shipping-option__radio {
    border-color: var(--gold);
}

.shipping-option--selected .shipping-option__radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gold);
}

.shipping-option__name {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-heading);
}

.shipping-option__desc {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.shipping-option__price {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-heading);
}

.shipping-option__price--free {
    color: var(--success);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
}

.payment-method:hover {
    border-color: var(--border-light);
}

.payment-method--selected {
    border-color: var(--gold);
    background: var(--gold-subtle);
}

.payment-method__radio {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-method--selected .payment-method__radio {
    border-color: var(--gold);
}

.payment-method--selected .payment-method__radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gold);
}

.payment-method__icon {
    width: 40px;
    height: 26px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    flex-shrink: 0;
}

.payment-method__info {
    flex: 1;
}

.payment-method__name {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-heading);
}

.payment-method__desc {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* ----------------------------------------------------------
   3. PRODUCT DETAIL PAGE
   ---------------------------------------------------------- */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding: var(--space-section) 0;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.product-gallery__main {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    margin-bottom: 0.75rem;
    cursor: zoom-in;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-gallery__main:hover img {
    transform: scale(1.15);
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.product-gallery__thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
    opacity: 0.6;
}

.product-gallery__thumb:hover,
.product-gallery__thumb--active {
    border-color: var(--gold);
    opacity: 1;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding-top: 0.5rem;
}

.product-info__category {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.product-info__name {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.product-info__rating .rating {
    margin-bottom: 0;
}

.product-info__rating-text {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.product-info__price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.product-info__current-price {
    font-size: var(--fs-3xl);
    font-weight: 600;
    color: var(--text-heading);
}

.product-info__original-price {
    font-size: var(--fs-xl);
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-info__discount {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
}

.product-info__desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.product-info__options {
    margin-bottom: 1.75rem;
}

.product-info__option-label {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 0.6rem;
}

.product-info__option-label span {
    color: var(--gold);
    font-weight: 400;
}

/* Size / Variant Selector */
.variant-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.variant-option {
    min-width: 44px;
    height: 44px;
    padding: 0 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition);
}

.variant-option:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.variant-option--active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--bg-primary);
}

.variant-option--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Add to Cart */
.product-info__add-to-cart {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-info__add-to-cart .btn {
    flex: 1;
}

.product-info__wishlist-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-body);
    background: var(--bg-card);
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.product-info__wishlist-btn:hover,
.product-info__wishlist-btn--active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

/* Trust Features */
.product-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.product-trust__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-card);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-align: center;
}

.product-trust__item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Specs Table */
.product-specs {
    margin-top: 2rem;
}

.product-specs__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.specs-table {
    width: 100%;
    border: 1px solid var(--border);
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 0.85rem 1rem;
    font-size: var(--fs-sm);
    vertical-align: top;
}

.specs-table td:first-child {
    width: 40%;
    color: var(--text-muted);
    background: var(--bg-secondary);
    font-weight: 500;
}

.specs-table td:last-child {
    color: var(--text-body);
}

/* ----------------------------------------------------------
   4. PRODUCT REVIEWS
   ---------------------------------------------------------- */
.reviews-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.reviews-summary__score {
    text-align: center;
}

.reviews-summary__number {
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    color: var(--gold);
    line-height: 1;
}

.reviews-summary__text {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.review-card {
    padding: 1.5rem;
    background: var(--bg-card);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.review-card__author {
    font-weight: 500;
    color: var(--text-heading);
    font-size: var(--fs-sm);
}

.review-card__date {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.review-card__rating {
    margin-bottom: 0.75rem;
}

.review-card__title {
    font-weight: 600;
    color: var(--text-heading);
    font-size: var(--fs-sm);
    margin-bottom: 0.4rem;
}

.review-card__text {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

.review-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--fs-xs);
    color: var(--success);
    margin-top: 0.75rem;
}

.review-card__verified svg {
    width: 12px;
    height: 12px;
}

/* ----------------------------------------------------------
   5. ORDER SUCCESS
   ---------------------------------------------------------- */
.order-success {
    text-align: center;
    padding: var(--space-section) 0;
    max-width: 560px;
    margin: 0 auto;
}

.order-success__checkmark {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPop 0.5s var(--ease);
}

.order-success__checkmark svg {
    width: 36px;
    height: 36px;
    color: var(--success);
    stroke-width: 2.5;
}

@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.order-success__title {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.order-success__subtitle {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.order-success__order-number {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.order-success__order-number strong {
    color: var(--gold);
    font-weight: 600;
}

.order-success__details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.order-success__detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: var(--fs-sm);
}

.order-success__detail-label {
    color: var(--text-muted);
}

.order-success__detail-value {
    color: var(--text-heading);
    font-weight: 500;
}

.order-success__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----------------------------------------------------------
   6. ORDER TRACKING
   ---------------------------------------------------------- */
.order-tracking {
    max-width: 700px;
    margin: 0 auto;
}

.order-tracking__header {
    text-align: center;
    margin-bottom: 3rem;
}

.order-tracking__title {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.order-tracking__order-id {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.order-tracking__order-id strong {
    color: var(--gold);
}

/* Vertical Timeline */
.tracking-timeline {
    position: relative;
    padding-left: 40px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}

.tracking-step {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1rem;
}

.tracking-step:last-child {
    padding-bottom: 0;
}

.tracking-step__dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-light);
    background: var(--bg-primary);
    z-index: 1;
    transition: all var(--transition);
}

.tracking-step--completed .tracking-step__dot {
    border-color: var(--gold);
    background: var(--gold);
}

.tracking-step--active .tracking-step__dot {
    border-color: var(--gold);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px var(--gold-subtle);
}

.tracking-step__content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
}

.tracking-step--active .tracking-step__content {
    border-color: var(--gold-border);
}

.tracking-step__title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
}

.tracking-step--completed .tracking-step__title {
    color: var(--text-muted);
}

.tracking-step__date {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.tracking-step__desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-top: 0.4rem;
    line-height: 1.5;
}

/* ----------------------------------------------------------
   7. ACCOUNT PAGES
   ---------------------------------------------------------- */
.account-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Account Sidebar */
.account-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 120px;
}

.account-sidebar__user {
    text-align: center;
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.account-sidebar__avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--gold-subtle);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--gold);
}

.account-sidebar__name {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.15rem;
}

.account-sidebar__email {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.account-sidebar__nav {
    display: flex;
    flex-direction: column;
}

.account-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    transition: all var(--transition);
    border-left: 2px solid transparent;
}

.account-sidebar__link:hover {
    color: var(--text-body);
    background: var(--gold-subtle);
}

.account-sidebar__link--active {
    color: var(--gold);
    background: var(--gold-subtle);
    border-left-color: var(--gold);
    font-weight: 500;
}

.account-sidebar__link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Dashboard Cards */
.account-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: border-color var(--transition);
}

.dashboard-card:hover {
    border-color: var(--gold-border);
}

.dashboard-card__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--gold-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gold);
}

.dashboard-card__icon svg {
    width: 20px;
    height: 20px;
}

.dashboard-card__label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.dashboard-card__value {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--text-heading);
}

/* Orders Table */
.orders-table-wrap {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border: 1px solid var(--border);
    border-collapse: collapse;
}

.orders-table th {
    text-align: left;
    padding: 0.85rem 1rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.orders-table td {
    padding: 0.85rem 1rem;
    font-size: var(--fs-sm);
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.orders-table tr:last-child td {
    border-bottom: none;
}

.orders-table tr:hover td {
    background: var(--bg-card);
}

.orders-table__product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.orders-table__product-img {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    object-fit: cover;
    flex-shrink: 0;
}

.orders-table__status {
    display: inline-flex;
    padding: 0.2rem 0.6rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.orders-table__status--processing {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.orders-table__status--shipped {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.orders-table__status--delivered {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.orders-table__status--cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.orders-table__link {
    font-size: var(--fs-xs);
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.orders-table__link:hover {
    color: var(--gold-light);
}

/* ----------------------------------------------------------
   8. FILTER SIDEBAR (Shop Page)
   ---------------------------------------------------------- */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

.filter-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.filter-sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.filter-sidebar__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: var(--text-heading);
}

.filter-sidebar__clear {
    font-size: var(--fs-xs);
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--transition);
}

.filter-sidebar__clear:hover {
    color: var(--gold-light);
}

.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.25rem 0;
}

.filter-section__title {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-heading);
}

.filter-section__toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.filter-section__toggle svg {
    width: 12px;
    height: 12px;
}

.filter-section--collapsed .filter-section__toggle {
    transform: rotate(-90deg);
}

.filter-section--collapsed .filter-section__options {
    display: none;
}

.filter-section__options {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--text-body);
    cursor: pointer;
    transition: color var(--transition);
}

.filter-option:hover {
    color: var(--gold);
}

.filter-option__checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-input);
    transition: all var(--transition);
}

.filter-option--active .filter-option__checkbox {
    background: var(--gold);
    border-color: var(--gold);
}

.filter-option--active .filter-option__checkbox::after {
    content: '';
    width: 8px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%23050708' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.filter-option__count {
    margin-left: auto;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* Price Range */
.filter-price-range {
    margin-top: 0.75rem;
}

.filter-price-range__inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.filter-price-range__input {
    flex: 1;
    padding: 0.55rem 0.65rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-size: var(--fs-sm);
    text-align: center;
}

.filter-price-range__input:focus {
    outline: none;
    border-color: var(--gold);
}

.filter-price-range__separator {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.filter-price-range__slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    border-radius: var(--radius-full);
    outline: none;
}

.filter-price-range__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--bg-primary);
}

.filter-price-range__slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--bg-primary);
}

/* Color Filter */
.filter-colors {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.filter-color {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.filter-color:hover,
.filter-color--active {
    border-color: var(--gold);
}

.filter-color--active::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.shop-toolbar__results {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.shop-toolbar__results strong {
    color: var(--text-heading);
    font-weight: 600;
}

.shop-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.shop-toolbar__sort select {
    padding: 0.45rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-heading);
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: border-color var(--transition);
}

.shop-toolbar__sort select:focus {
    outline: none;
    border-color: var(--gold);
}

.shop-toolbar__view {
    display: flex;
    gap: 0.25rem;
}

.shop-toolbar__view-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-card);
    cursor: pointer;
    transition: all var(--transition);
}

.shop-toolbar__view-btn:hover,
.shop-toolbar__view-btn--active {
    border-color: var(--gold);
    color: var(--gold);
}

.shop-toolbar__view-btn svg {
    width: 16px;
    height: 16px;
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    font-size: var(--fs-xs);
    color: var(--gold);
}

.active-filter__remove {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.active-filter__remove:hover {
    opacity: 1;
}

/* ----------------------------------------------------------
   9. MOBILE MENU
   ---------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: calc(var(--z-header) + 1);
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    cursor: pointer;
}

.mobile-menu__nav {
    padding: 1rem 0;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--text-heading);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold);
    background: var(--gold-subtle);
}

.mobile-menu__link svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.mobile-menu__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu__footer-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    transition: color var(--transition);
}

.mobile-menu__footer-link:hover {
    color: var(--gold);
}

.mobile-menu__footer-link svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: calc(var(--z-header));
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------------------------
   10. BACK TO TOP
   ---------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

/* ----------------------------------------------------------
   11. SIZE GUIDE MODAL
   ---------------------------------------------------------- */
.size-guide-table {
    width: 100%;
    border-collapse: collapse;
}

.size-guide-table th,
.size-guide-table td {
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: var(--fs-sm);
    border: 1px solid var(--border);
}

.size-guide-table th {
    background: var(--bg-secondary);
    color: var(--text-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--fs-xs);
}

.size-guide-table td {
    color: var(--text-body);
}

.size-guide-table tr:hover td {
    background: var(--gold-subtle);
}

/* ----------------------------------------------------------
   12. IMAGE ZOOM OVERLAY
   ---------------------------------------------------------- */
.image-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: calc(var(--z-modal) + 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    cursor: zoom-out;
    padding: 2rem;
}

.image-zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}

.image-zoom-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.image-zoom-overlay__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: background var(--transition);
}

.image-zoom-overlay__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------------------
   13. SIDEBAR CART (Mini Cart)
   ---------------------------------------------------------- */
.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: calc(var(--z-header) + 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: calc(var(--z-header) + 2);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}

.mini-cart.active {
    transform: translateX(0);
}

.mini-cart__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mini-cart__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--text-heading);
}

.mini-cart__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
}

.mini-cart__close:hover {
    color: var(--text-heading);
}

.mini-cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.mini-cart__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.mini-cart__item:last-child {
    border-bottom: none;
}

.mini-cart__item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.mini-cart__item-name {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.mini-cart__item-variant {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.mini-cart__item-price {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold);
}

.mini-cart__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
}

.mini-cart__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mini-cart__subtotal-label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.mini-cart__subtotal-value {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-heading);
}

.mini-cart__shipping-note {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}
