:root {
    --lux-primary: #0b2c75;
    --lux-accent: #dc2626;
    --lux-dark: #1f2937;
    --lux-muted: #6b7280;
    --lux-border: #e5e7eb;
    --lux-bg-soft: #f8fafc;
    --lux-bg: #f1f5f9;
    --lux-white: #fff;
    --theme-primary: #0b2c75;
    --theme-danger: #dc2626;
    --theme-light: #f4f7ff;
    --text-dark: #1f2937;
    --border-color: #e5e7eb;
}

.lux-gallery {
    position: sticky;
    top: 120px;
}

.lux-gallery-main img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.lux-gallery-item {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.lux-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.lux-thumb {
    width: 80px;
    cursor: pointer;
    opacity: .5;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.lux-thumb.active {
    opacity: 1;
    border-color: var(--lux-primary);
}

.lux-thumb img {
    width: 100%;
    display: block;
}

.lux-gallery-main {
    width: 100%;
}

.lux-gallery-main .owl-stage-outer {
    overflow: hidden;
}

.lux-info {
    padding-left: 40px;
}

.lux-product-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--lux-primary);
    margin-bottom: 12px;
}

.lux-rating {
    margin-bottom: 20px;
}

.lux-stars {
    width: 90px;
    height: 4px;
    background: var(--lux-border);
    position: relative;
    border-radius: 4px;
}

.lux-stars span {
    position: absolute;
    inset: 0;
    background: var(--lux-primary);
    border-radius: 4px;
}

.lux-divider {
    border: none;
    height: 1px;
    background: var(--lux-border);
    margin: 24px 0;
}

.lux-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--lux-dark);
    margin-bottom: 24px;
}

.lux-meta {
    font-size: 14px;
    color: var(--lux-muted);
    margin-bottom: 30px;
}

.lux-meta strong {
    color: var(--lux-primary);
    font-weight: 500;
}

.lux-meta li {
    margin-bottom: 6px;
}

.lux-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.lux-option label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--lux-muted);
}

.lux-option select {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--lux-border);
    padding: 0 12px;
    font-size: 15px;
    transition: border .2s ease;
}

.lux-option select:focus {
    border-color: var(--lux-primary);
    outline: none;
}

.lux-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lux-final-price del {
    color: #9ca3af;
    font-size: 16px;
}

.lux-final-price strong {
    font-size: 26px;
    font-weight: 700;
    color: var(--lux-accent);
}

.lux-btn-primary {
    background: var(--lux-accent);
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    transition: all .3s ease;
}

.lux-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.lux-tabs-wrapper {
    background: #fff;
    margin-top: 40px;
    border-radius: 18px;
}

.lux-tabs-nav {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid var(--lux-border);
    margin-bottom: 30px;
}

.lux-tab-btn {
    background: transparent;
    border: none;
    font-size: 15px;
    padding: 10px 22px;
    cursor: pointer;
    color: var(--lux-muted);
    border-bottom: 3px solid transparent;
    transition: all .3s ease;
}

.lux-tab-btn.active {
    color: var(--lux-primary);
    border-bottom-color: var(--lux-primary);
    font-weight: 600;
}

.lux-tab-panel {
    display: none;
    animation: luxFade .4s ease;
}

.lux-tab-panel.active {
    display: block;
}

.lux-table {
    width: 100%;
    border-collapse: collapse;
}

.lux-table th,
.lux-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--lux-border);
    font-size: 15px;
}

.lux-table th {
    color: var(--lux-primary);
    font-weight: 600;
}

.lux-breadcrumb {
    background: var(--lux-bg-soft);
    padding: 18px 0;
    border-bottom: 1px solid var(--lux-border);
}

.lux-breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.lux-breadcrumb-list li {
    font-size: 14px;
    color: var(--lux-muted);
}

.lux-breadcrumb-list li+li::before {
    content: "/";
    margin-right: 14px;
    color: #cbd5f5;
}

.lux-breadcrumb-list a {
    color: var(--lux-primary);
    font-weight: 500;
    text-decoration: none;
}

@keyframes luxFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {

    .lux-gallery {
        position: relative;
        margin-bottom: 30px;
    }

    .lux-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .lux-options {
        grid-template-columns: 1fr;
    }

    .lux-actions {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 14px;
        border-top: 1px solid var(--lux-border);
        z-index: 10;
    }
}

@media (max-width: 575px) {

    .lux-product-title {
        font-size: 24px;
    }

    .lux-btn-primary {
        width: 100%;
        text-align: center;
    }

    .lux-actions {
        flex-direction: column;
        gap: 12px;
    }

    .lux-tab-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ===============================
   PAGE WRAPPER
================================ */
.lux-checkout {
    background: var(--lux-bg);
    padding: 70px 0;
}

/* ===============================
   GRID
================================ */
.lux-checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
}

/* ===============================
   CARD
================================ */
.lux-card {
    background: var(--lux-white);
    padding: 34px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(11, 44, 117, .06);
}

.lux-card h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--lux-primary);
    margin-bottom: 24px;
}

/* ===============================
   FORM
================================ */
.lux-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lux-form-grid input,
.lux-form-grid select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--lux-border);
    font-size: 15px;
    color: var(--lux-dark);
    transition: all .2s ease;
    background: #fff;
}

.lux-form-grid input::placeholder,
textarea::placeholder {
    color: var(--lux-muted);
}

.lux-form-grid input:focus,
.lux-form-grid select:focus,
textarea:focus {
    border-color: var(--lux-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 44, 117, .08);
}

textarea {
    margin-top: 22px;
    min-height: 130px;
    resize: vertical;
}

.lux-order-summary {
    background: var(--lux-white);
    padding: 34px;
    height: fit-content;
    border-radius: 20px;
    top: 120px;
    box-shadow: 0 8px 30px rgba(11, 44, 117, .08);
}

.lux-order-summary h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--lux-primary);
    margin-bottom: 22px;
}

/* Items */
.lux-order-item,
.lux-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--lux-dark);
}

.lux-order-item strong,
.lux-order-row strong {
    font-weight: 600;
}

/* Divider */
.lux-divider {
    height: 1px;
    background: var(--lux-border);
    margin: 22px 0;
}

/* Total */
.lux-total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 700;
    margin: 26px 0;
    color: var(--lux-primary);
}

.lux-total strong {
    color: var(--lux-accent);
}

/* ===============================
   BUTTONS
================================ */
.lux-btn-primary {
    width: 100%;
    background: var(--lux-accent);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.lux-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.lux-btn-outline {
    background: transparent;
    border: 1px solid var(--lux-primary);
    color: var(--lux-primary);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {

    .lux-checkout-grid {
        grid-template-columns: 1fr;
    }

    .lux-order-summary {
        position: relative;
        top: auto;
        margin-top: 30px;
    }

    .lux-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {

    .lux-card,
    .lux-order-summary {
        padding: 22px;
        border-radius: 16px;
    }

    .lux-total {
        font-size: 20px;
    }
}

.lux-cart {
    background: var(--lux-bg);
    padding: 70px 0;
}

.lux-cart-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
}

.lux-cart-items {
    background: var(--lux-white);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 8px 30px rgba(11, 44, 117, .06);
}

.lux-cart-item {
    display: grid;
    grid-template-columns: 90px 1fr 100px 100px 30px;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--lux-border);
}

.lux-cart-item:last-child {
    border-bottom: none;
}

.lux-cart-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8fafc;
}

.lux-cart-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--lux-primary);
    margin-bottom: 6px;
}

.lux-cart-price {
    font-size: 14px;
    color: var(--lux-muted);
}

.lux-cart-qty input {
    width: 64px;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--lux-border);
    font-size: 14px;
}

.lux-cart-qty input:focus {
    border-color: var(--lux-primary);
    outline: none;
}

.lux-cart-subtotal {
    font-weight: 700;
    color: var(--lux-dark);
}

.lux-cart-remove {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--lux-muted);
    transition: color .2s ease;
}

.lux-cart-remove:hover {
    color: var(--lux-accent);
}

.lux-cart-coupon {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.lux-cart-coupon input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--lux-border);
    font-size: 14px;
}

.lux-cart-coupon input:focus {
    border-color: var(--lux-primary);
    outline: none;
}

.lux-cart-summary {
    background: var(--lux-white);
    border-radius: 20px;
    padding: 34px;
    max-height: fit-content;
    position: sticky;
    top: 120px;
    box-shadow: 0 8px 30px rgba(11, 44, 117, .08);
}

.lux-cart-summary h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--lux-primary);
    margin-bottom: 24px;
}

.lux-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--lux-dark);
}

.lux-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 700;
    margin: 26px 0;
    color: var(--lux-primary);
}

.lux-summary-total strong {
    color: var(--lux-accent);
}

.lux-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--lux-accent);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.lux-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.lux-btn-outline {
    background: transparent;
    border: 1px solid var(--lux-primary);
    color: var(--lux-primary);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
}

@media (max-width: 991px) {

    .lux-cart-grid {
        grid-template-columns: 1fr;
    }

    .lux-cart-summary {
        position: relative;
        top: auto;
        margin-top: 30px;
    }

    .lux-cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "img info"
            "qty subtotal"
            ". remove";
        gap: 12px;
    }

    .lux-cart-item img {
        grid-area: img;
    }

    .lux-cart-info {
        grid-area: info;
    }

    .lux-cart-qty {
        grid-area: qty;
    }

    .lux-cart-subtotal {
        grid-area: subtotal;
    }

    .lux-cart-remove {
        grid-area: remove;
        justify-self: end;
    }
}

@media (max-width: 575px) {

    .lux-cart-items,
    .lux-cart-summary {
        padding: 22px;
        border-radius: 16px;
    }

    .lux-summary-total {
        font-size: 20px;
    }
}

.my-account {
    padding: 80px 20px;
    background: var(--theme-light);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.account-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* Sidebar */
.account-sidebar {
    width: 260px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(11, 44, 117, .12);
}

.account-title {
    margin-bottom: 24px;
    color: var(--theme-primary);
    font-size: 22px;
    font-weight: 700;
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu li {
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all .35s ease;
}

.account-menu li:hover {
    background: rgba(11, 44, 117, .08);
}

.account-menu li.active {
    background: var(--theme-primary);
    color: #ffffff;
}

/* Content */
.account-content {
    flex: 1;
}

.account-box {
    display: none;
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    animation: fadeUp .4s ease;
}

.account-box.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-box h4 {
    margin-bottom: 22px;
    color: var(--theme-primary);
    font-size: 20px;
    font-weight: 700;
}

/* General Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-grid div {
    background: #f9fbff;
    border-radius: 14px;
    padding: 18px;
}

.info-grid div span {
    font-size: 12px;
    color: #6b7280;
}

.info-grid div p {
    font-weight: 600;
    margin-top: 6px;
}

/* Orders */
.order-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
}

.order-card strong {
    color: var(--theme-primary);
}

.status {
    padding: 7px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 500;
}

.delivered {
    background: rgba(11, 44, 117, .1);
    color: var(--theme-primary);
}

.pending {
    background: rgba(220, 38, 38, .1);
    color: var(--theme-danger);
}

/* Address */
.address-card {
    border: 1px solid var(--border-color);
    padding: 22px;
    border-radius: 18px;
    background: #f9fbff;
}

.address-card button {
    margin-top: 14px;
    background: var(--theme-primary);
    border: none;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 24px;
    cursor: pointer;
}

/* Buttons */
.btn-outline {
    border: 2px solid var(--theme-primary);
    color: var(--theme-primary);
    background: transparent;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.btn-outline:hover {
    background: var(--theme-primary);
    color: #ffffff;
}

.btn-danger {
    background: var(--theme-danger);
    color: #ffffff;
    border: none;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .account-container {
        flex-direction: column;
    }

    .account-sidebar {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

.partner-design img {
    max-width: 100%;
    height: auto;
    border: 1px solid #f3f3f3;
}

.financing-section {
    background: #f8f9fb;
    padding: 80px 20px;
}

.financing-section .section-title {
    font-size: 30px;
    color: #023019;
    font-weight: 700;
    margin-bottom: 20px;
}

.financing-section .lead {
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-size: 16px;
    color: #555;
}

.financing-section .card {
    border: none;
    border-radius: 18px;
    background: #ffffff;
    transition: all 0.35s ease;
    overflow: hidden;
}

.financing-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.financing-section .card-img-top {
    height: 250px;
    object-fit: contain;
    background: #f4f6f8;
    border-bottom: 1px solid #eaeaea;
}

.financing-section .card-body {
    padding: 30px 25px;
}

.financing-section .card-title {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.financing-section .card-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* =========================
   Buttons
========================= */

.financing-section .btn-primary {
    background: #111;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.financing-section .btn-primary:hover {
    background: #000;
    transform: scale(1.05);
}

.financing-section .btn-outline-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #111;
    color: #111;
    transition: all 0.3s ease;
}

.financing-section .btn-outline-secondary:hover {
    background: #111;
    color: #fff;
}

/* =========================
   Bottom CTA
========================= */

.financing-section .text-center p {
    font-size: 16px;
    color: #555;
}

/* =========================
   Responsive Styles
========================= */

@media (max-width: 991px) {
    .financing-section .section-title {
        font-size: 34px;
    }

    .financing-section .lead {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .financing-section {
        padding: 60px 15px;
    }

    .financing-section .section-title {
        font-size: 28px;
    }

    .financing-section .card-body {
        padding: 25px 20px;
    }
}

/* ==============================
   Modern Financing Section
================================ */

.financing-modern {
    background: linear-gradient(180deg, #fffaf3, #ffffff);
    padding: 90px 0px 20px;
}

.financing-wrap {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.financing-head {
    text-align: center;
    margin-bottom: 60px;
}

.financing-head h2 {
    font-size: 30px;
    color: #023019;
    font-weight: 700;
    margin-bottom: 10px;
}

.financing-head p {
    font-size: 16px;
    color: #666;
}

/* Grid */
.financing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.finance-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.35s ease;
}

.finance-card:hover {
    transform: translateY(-10px);
}

/* Featured Card */
.finance-card.featured {
    border: 2px solid #dc2626;
    transform: scale(1.05);
}

.finance-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #fff;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* Icons */
.finance-icon {
    width: 64px;
    height: 64px;
    background: #fff0eb;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

/* Text */
.finance-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}