*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ── Page background ── */

body {
    background: #f7f6f4;
}

.rz-breadcrumb-img {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 60px 0 50px;
    overflow: hidden;
}

.rz-breadcrumb-img::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(237, 47, 36, 0.12);
    top: -80px;
    right: -60px;
}

.rz-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.rz-breadcrumb-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.rz-breadcrumb-text h1 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.rz-breadcrumb-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.rz-breadcrumb-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rz-breadcrumb-nav li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rz-breadcrumb-nav li::after {
    content: "›";
    opacity: 0.5;
}

.rz-breadcrumb-nav li:last-child::after {
    display: none;
}

.rz-breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.rz-breadcrumb-nav span {
    color: #ed2f24;
    font-weight: 500;
}


/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */

.rz-section-header {
    text-align: center;
    margin-bottom: 44px;
}

.rz-section-badge {
    display: inline-block;
    background: #ed2f24;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.rz-section-title {
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.rz-section-sub {
    font-size: 15px;
    color: #888;
    margin: 0;
}


/* ══════════════════════════════════════════
   PRODUCT CARDS  (trending / laptops / search)
══════════════════════════════════════════ */

.tp-card {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tp-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: #f0ede8;
    overflow: hidden;
}

.tp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tp-card-actions {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.2s;
}

.tp-card:hover .tp-card-actions {
    opacity: 1;
}

.tp-card-action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tp-card-action-btn:hover {
    background: #ed2f24;
    border-color: #ed2f24;
    color: #fff;
}

.tp-card-action-btn i {
    font-size: 14px;
}

.tp-card-body {
    padding: 14px 16px 16px;
}

.tp-card-cat {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ed2f24;
    margin-bottom: 4px;
}

.tp-card-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-decoration: none;
    display: block;
}

.tp-card-name:hover {
    color: #ed2f24;
}

.tp-card-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin: 0 0 14px;
}

.tp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tp-card-price {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
}

.tp-card-price span {
    font-size: 11px;
    font-weight: 400;
    color: #aaa;
    display: block;
    margin-bottom: 1px;
}

.tp-card-btn {
    background: #ed2f24;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.tp-card-btn:hover {
    background: #c72620;
    color: #fff;
}


/* ══════════════════════════════════════════
   PROFILE / ACCOUNT SIDEBAR LAYOUT
══════════════════════════════════════════ */

.rz-account-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rz-sidebar {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    align-self: start;
}

.rz-sidebar-top {
    background: #ed2f24;
    padding: 28px 20px;
    text-align: center;
}

.rz-sidebar-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    object-fit: cover;
    margin-bottom: 10px;
}

.rz-sidebar-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.rz-sidebar-nav {
    padding: 12px 0;
}

.rz-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.rz-sidebar-link:hover,
.rz-sidebar-link.active {
    background: #fff5f5;
    color: #ed2f24;
}

.rz-sidebar-link i {
    font-size: 15px;
    width: 18px;
}

.rz-sidebar-divider {
    height: 0.5px;
    background: rgba(0, 0, 0, 0.07);
    margin: 6px 0;
}


/* ══════════════════════════════════════════
   MAIN CONTENT CARD
══════════════════════════════════════════ */

.rz-content-card {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    padding: 28px;
}

.rz-content-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.07);
}


/* ══════════════════════════════════════════
   FORM FIELDS
══════════════════════════════════════════ */

.rz-field {
    margin-bottom: 18px;
}

.rz-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rz-field input,
.rz-field select,
.rz-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a1a;
    background: #f9f9f9;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.rz-field input:focus,
.rz-field select:focus,
.rz-field textarea:focus {
    border-color: #ed2f24;
    box-shadow: 0 0 0 3px rgba(237, 47, 36, 0.08);
    background: #fff;
}

.rz-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */

.rz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

.rz-btn-primary {
    background: #ed2f24;
    color: #fff;
}

.rz-btn-primary:hover {
    background: #c72620;
    color: #fff;
}

.rz-btn-outline {
    background: transparent;
    color: #ed2f24;
    border: 1.5px solid #ed2f24;
}

.rz-btn-outline:hover {
    background: #ed2f24;
    color: #fff;
}

.rz-btn-gray {
    background: #f2f1ef;
    color: #555;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.rz-btn-gray:hover {
    background: #e8e7e5;
}


/* ══════════════════════════════════════════
   POLICY / CONTENT PAGES
══════════════════════════════════════════ */

.rz-policy-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 20px;
}

.rz-policy-card {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.rz-policy-card h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 28px 0 10px;
    padding-left: 14px;
    border-left: 4px solid #ed2f24;
}

.rz-policy-card h2:first-child {
    margin-top: 0;
}

.rz-policy-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 8px;
}

.rz-policy-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}

.rz-policy-card ul,
.rz-policy-card ol {
    padding-left: 20px;
    margin: 0 0 16px;
}

.rz-policy-card li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

.rz-policy-card a {
    color: #ed2f24;
}


/* ══════════════════════════════════════════
   SEARCH PAGE
══════════════════════════════════════════ */

.rz-search-bar-wrap {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.rz-search-bar-wrap input {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px;
    outline: none;
}

.rz-search-bar-wrap input:focus {
    border-color: #ed2f24;
    box-shadow: 0 0 0 3px rgba(237, 47, 36, 0.08);
}

.rz-search-results-count {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.rz-search-results-count strong {
    color: #1a1a1a;
}

.rz-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}


/* ══════════════════════════════════════════
   ORDER HISTORY
══════════════════════════════════════════ */

.rz-order-card {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    overflow: hidden;
}

.rz-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f9f8f6;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.07);
    flex-wrap: wrap;
    gap: 10px;
}

.rz-order-id {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
}

.rz-order-date {
    font-size: 12px;
    color: #888;
}

.rz-order-status {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.rz-order-status.active {
    background: #eaf7ef;
    color: #1a7a3f;
}

.rz-order-status.pending {
    background: #fff8e6;
    color: #b07800;
}

.rz-order-status.closed {
    background: #f2f2f2;
    color: #666;
}

.rz-order-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    flex-wrap: wrap;
}

.rz-order-img {
    width: 72px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    background: #f0ede8;
    flex-shrink: 0;
}

.rz-order-info {
    flex: 1;
    min-width: 160px;
}

.rz-order-name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.rz-order-meta {
    font-size: 12px;
    color: #888;
}

.rz-order-price {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-left: auto;
}


/* ══════════════════════════════════════════
   KYC PAGE
══════════════════════════════════════════ */

.rz-kyc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}

.rz-kyc-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aaa;
}

.rz-kyc-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    background: #eee;
    color: #aaa;
    transition: all 0.2s;
}

.rz-kyc-step.done .rz-kyc-step-num {
    background: #ed2f24;
    color: #fff;
}

.rz-kyc-step.active .rz-kyc-step-num {
    background: #ed2f24;
    color: #fff;
}

.rz-kyc-step.active {
    color: #1a1a1a;
    font-weight: 500;
}

.rz-kyc-connector {
    width: 48px;
    height: 1px;
    background: #ddd;
    margin: 0 4px;
}

.rz-kyc-connector.done {
    background: #ed2f24;
}


/* ══════════════════════════════════════════
   EMI / TENURE TABLE
══════════════════════════════════════════ */

.rz-emi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.rz-emi-table th {
    background: #f2f1ef;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.rz-emi-table td {
    padding: 14px 16px;
    color: #1a1a1a;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.rz-emi-table tr:last-child td {
    border-bottom: none;
}

.rz-emi-table tr:hover td {
    background: #fafafa;
}

.rz-emi-highlight {
    color: #ed2f24;
    font-weight: 500;
}


/* ══════════════════════════════════════════
   FEATURE / INFO CARDS
══════════════════════════════════════════ */

.rz-info-card {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.07);
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.rz-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.rz-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff5f5;
    border: 1px solid rgba(237, 47, 36, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
}

.rz-info-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.rz-info-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.65;
    margin: 0;
}


/* ══════════════════════════════════════════
   ALERT BOXES
══════════════════════════════════════════ */

.rz-alert {
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rz-alert-success {
    background: #eaf7ef;
    color: #1a7a3f;
    border: 1px solid #b8e8c8;
}

.rz-alert-error {
    background: #fff0f0;
    color: #c0392b;
    border: 1px solid #f5c6c6;
}

.rz-alert-info {
    background: #e8f4fd;
    color: #1a5f9c;
    border: 1px solid #b8d9f4;
}

.rz-alert-warning {
    background: #fff8e6;
    color: #856404;
    border: 1px solid #f5dfa0;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 900px) {
    .rz-account-wrap {
        grid-template-columns: 1fr;
    }
    .rz-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .rz-sidebar-top {
        border-radius: 16px 16px 0 0;
        grid-column: 1/-1;
    }
}

@media (max-width: 640px) {
    .rz-breadcrumb-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .rz-breadcrumb-text h1 {
        font-size: 24px;
    }
    .rz-policy-card {
        padding: 24px 18px;
    }
    .rz-field-row {
        grid-template-columns: 1fr;
    }
    .rz-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rz-account-wrap {
        padding: 20px 12px;
    }
    .rz-content-card {
        padding: 20px 16px;
    }
}