:root {
    --gold: #b8860b;
    --gold-light: #d4a017;
    --gold-bright: #f0c040;
    --gold-pale: #fdf3dc;
    --gold-border: rgba(184, 134, 11, 0.25);
    --cream: #fefaf3;
    --white: #ffffff;
    --text-dark: #1a1208;
    --text-mid: #5a4a2a;
    --text-muted: #9a8060;
    --panel-bg: #fff9ef;
    --right-bg: #fffdf8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}


/* ═══ LEFT DECORATIVE PANEL ═══ */

.left-panel {
    width: 48%;
    background: linear-gradient(160deg, #fff8e8 0%, #fdf0cc 40%, #f5e0a0 100%);
    display: flex;
    flex-direction: column;
    padding: 52px 56px;
    position: relative;
    overflow: hidden;
}


/* Geometric pattern overlay */

.left-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient( circle at 20% 20%, rgba(184, 134, 11, 0.08) 0%, transparent 50%), radial-gradient( circle at 80% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 45%), repeating-linear-gradient( 45deg, transparent, transparent 30px, rgba(184, 134, 11, 0.03) 30px, rgba(184, 134, 11, 0.03) 31px);
    pointer-events: none;
}


/* Decorative circle */

.deco-circle {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 40px solid rgba(184, 134, 11, 0.08);
}

.deco-circle-2 {
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 30px solid rgba(184, 134, 11, 0.06);
}


/* Logo */

.logo-txt small {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
}


/* Headline */

.left-headline {
    position: relative;
    z-index: 1;
}

.left-headline h2 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.left-headline h2 span {
    color: var(--gold);
    display: block;
}

.left-headline p {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 36px;
}


/* Stats row */

.stats-row {
    display: flex;
    gap: 28px;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.66rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 3px;
}

.stat-divider {
    width: 1px;
    background: var(--gold-border);
}


/* Feature list */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
    margin-bottom: auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
}

.feature-icon i {
    width: 15px;
    height: 15px;
    color: #fff;
}

.feature-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-text span {
    font-size: 0.71rem;
    color: var(--text-muted);
}


/* ═══ RIGHT FORM PANEL ═══ */

.right-panel {
    width: 52%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 52px 64px;
    position: relative;
}


/* Subtle top border accent */

.right-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient( 90deg, transparent, var(--gold-light), var(--gold-bright), var(--gold-light), transparent);
}

.form-wrap {
    width: 100%;
    max-width: 400px;
}


/* Top nav link */

.top-nav {
    position: absolute;
    top: 28px;
    right: 36px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.top-nav a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.top-nav a:hover {
    text-decoration: underline;
}


/* Form header */

.form-header {
    margin-bottom: 32px;
}

.form-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* Input groups */

.field-group {
    margin-bottom: 18px;
}

.field-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    display: block;
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
}

.field-icon i {
    width: 16px;
    height: 16px;
}

.field-input {
    width: 100%;
    border: 1.5px solid #e8dcc8;
    border-radius: 10px;
    background: var(--white);
    padding: 12px 42px 12px 42px;
    font-family: "Poppins", sans-serif;
    font-size: 0.83rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field-input::placeholder {
    color: #c0ad92;
}

.field-input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.field-input.error {
    border-color: #e05a4e;
}

.field-err {
    font-size: 0.67rem;
    color: #e05a4e;
    margin-top: 4px;
    display: none;
}

.pw-eye {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #c0ad92;
    transition: color 0.2s;
}

.pw-eye:hover {
    color: var(--gold);
}

.pw-eye i {
    width: 15px;
    height: 15px;
}


/* Options row */

.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.custom-cb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    color: var(--text-mid);
    cursor: pointer;
}

.custom-cb input {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
}

.forgot-link {
    font-size: 0.74rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}


/* Submit */

.btn-submit {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient( 135deg, #9a6f00 0%, #d4a017 40%, #f0c040 70%, #d4a017 100%);
    background-size: 200% auto;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
    cursor: pointer;
    transition: background-position 0.4s, box-shadow 0.25s, transform 0.1s;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background-position: right center;
    box-shadow: 0 6px 24px rgba(184, 134, 11, 0.32);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

.spin {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    display: none;
}


/* Divider */

.or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8dcc8;
}

.or-divider span {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}


/* Social */

.social-btns {
    display: flex;
    gap: 10px;
}

.btn-soc {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    background: var(--white);
    border: 1.5px solid #e8dcc8;
    border-radius: 10px;
    font-size: 0.74rem;
    font-family: "Poppins", sans-serif;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.btn-soc:hover {
    border-color: var(--gold-light);
    background: var(--gold-pale);
    color: var(--gold);
}

.btn-soc i {
    width: 15px;
    height: 15px;
    color: var(--gold);
}


/* Register CTA */

.register-cta {
    text-align: center;
    margin-top: 28px;
    padding: 18px;
    background: linear-gradient(135deg, #fff8e8, #fdf3dc);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
}

.register-cta p {
    font-size: 0.75rem;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.register-cta p strong {
    color: var(--text-dark);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 24px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

.btn-outline-gold i {
    width: 14px;
    height: 14px;
}


/* Trust badges */

.trust-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.67rem;
    color: var(--text-muted);
}

.trust-item i {
    width: 12px;
    height: 12px;
    color: var(--gold);
}


/* Toast */

#toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    animation: slideUp 0.3s ease;
}

#toast.success {
    background: #fff;
    border: 1.5px solid #2ecc71;
    color: #1a8a4a;
}

#toast.error {
    background: #fff;
    border: 1.5px solid #e05a4e;
    color: #c0392b;
}

#toast i {
    width: 16px;
    height: 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-wrap {
    animation: fadeSlide 0.4s ease;
}


/* ═══ LEFT INFO PANEL ═══ */

.left-panel {
    width: 40%;
    background: linear-gradient(160deg, #fff8e8 0%, #fdf0cc 50%, #f5e0a0 100%);
    display: flex;
    flex-direction: column;
    padding: 48px 48px;
    position: relative;
    overflow: hidden;
}

.left-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient( circle at 10% 10%, rgba(184, 134, 11, 0.1) 0%, transparent 50%), radial-gradient( circle at 90% 90%, rgba(184, 134, 11, 0.07) 0%, transparent 45%), repeating-linear-gradient( 45deg, transparent, transparent 28px, rgba(184, 134, 11, 0.025) 28px, rgba(184, 134, 11, 0.025) 29px);
    pointer-events: none;
}

.deco-ring {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 50px solid rgba(184, 134, 11, 0.07);
}

.logo-txt {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.15;
}

.logo-txt small {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.left-headline {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.left-headline h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.left-headline h2 em {
    color: var(--gold);
    font-style: normal;
}

.left-headline p {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.7;
}


/* Plan tiers */

.plan-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.plan-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1.5px solid var(--gold-border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.plan-card.active,
.plan-card:hover {
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(184, 134, 11, 0.15);
}

.plan-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-badge i {
    width: 16px;
    height: 16px;
    color: #fff;
}

.plan-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
}

.plan-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.plan-pill {
    margin-left: auto;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid var(--gold-border);
}


/* Income steps */

.earn-section2 {
    position: relative;
    z-index: 1;
    margin-bottom: auto;
}

.earn-title2 {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}

.earn-steps2 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.earn-step {
    display: flex;
    gap: 14px;
    position: relative;
}

.earn-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, var(--gold-border), transparent);
}

.step-dot {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.25);
}

.step-body {
    padding-bottom: 18px;
}

.step-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}


/* ═══ RIGHT FORM ═══ */

.right-panel {
    width: 60%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 44px 60px;
    position: relative;
    overflow-y: auto;
}

.right-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient( 90deg, transparent, var(--gold-light), var(--gold-bright), var(--gold-light), transparent);
}

.top-nav {
    position: absolute;
    top: 24px;
    right: 36px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.top-nav a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.top-nav a:hover {
    text-decoration: underline;
}

.form-wrap-register {
    width: 100%;
    max-width: 520px;
}


/* Progress steps */

.progress-steps {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
}

.prog-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.prog-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e8dcc8;
    z-index: 0;
}

.prog-step.done:not(:last-child)::after,
.prog-step.active:not(:last-child)::after {
    background: var(--gold-light);
}

.prog-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8dcc8;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.prog-step.active .prog-num,
.prog-step.done .prog-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #fff;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

.prog-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.prog-step.active .prog-label {
    color: var(--gold);
    font-weight: 600;
}


/* Form header */

.form-eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.form-title {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.form-sub {
    font-size: 0.77rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}


/* Field */

.field-group {
    margin-bottom: 16px;
}

.field-label {
    font-size: 0.71rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    margin-bottom: 5px;
    display: block;
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
}

.field-icon i {
    width: 15px;
    height: 15px;
}

.field-input {
    width: 100%;
    border: 1.5px solid #e8dcc8;
    border-radius: 10px;
    background: var(--white);
    padding: 11px 40px 11px 40px;
    font-family: "Poppins", sans-serif;
    font-size: 0.81rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field-input::placeholder {
    color: #c0ad92;
}

.field-input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.field-input.error {
    border-color: #e05a4e;
}

.field-err {
    font-size: 0.66rem;
    color: #e05a4e;
    margin-top: 3px;
    display: none;
}

.field-hint {
    font-size: 0.66rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.pw-eye {
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #c0ad92;
    transition: color 0.2s;
}

.pw-eye:hover {
    color: var(--gold);
}

.pw-eye i {
    width: 14px;
    height: 14px;
}


/* Strength */

.strength-bar {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.seg {
    height: 3px;
    flex: 1;
    border-radius: 2px;
    background: #e8dcc8;
    transition: background 0.3s;
}

.strength-txt {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 3px;
    margin-bottom: 8px;
}


/* Referral */

.referral-box {
    background: linear-gradient(135deg, #fff8e8, #fdf3dc);
    border: 1.5px solid var(--gold-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ref-icon {
    color: var(--gold);
    margin-top: 2px;
}

.ref-icon i {
    width: 18px;
    height: 18px;
}

.ref-text strong {
    display: block;
    font-size: 0.78rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}


/* Sponsor field inside referral box */

.ref-text .field-input {
    padding: 10px 14px;
    font-size: 0.79rem;
}


/* Checkbox */

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 16px;
}

.check-row input {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-row label {
    font-size: 0.73rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.check-row label a {
    color: var(--gold);
    text-decoration: none;
}

.check-row label a:hover {
    text-decoration: underline;
}


/* Submit */

.btn-submit {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient( 135deg, #9a6f00 0%, #d4a017 40%, #f0c040 70%, #d4a017 100%);
    background-size: 200% auto;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    cursor: pointer;
    transition: background-position 0.4s, box-shadow 0.25s, transform 0.1s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background-position: right center;
    box-shadow: 0 6px 24px rgba(184, 134, 11, 0.3);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

.spin {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}


/* Divider */

.or-div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0;
}

.or-div::before,
.or-div::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8dcc8;
}

.or-div span {
    font-size: 0.67rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}


/* Social */

.social-btns {
    display: flex;
    gap: 10px;
}

.btn-soc {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    background: #fff;
    border: 1.5px solid #e8dcc8;
    border-radius: 10px;
    font-size: 0.74rem;
    font-family: "Poppins", sans-serif;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.btn-soc:hover {
    border-color: var(--gold-light);
    background: var(--gold-pale);
    color: var(--gold);
}

.btn-soc i {
    width: 15px;
    height: 15px;
    color: var(--gold);
}


/* Login CTA */

.login-cta {
    text-align: center;
    margin-top: 22px;
    padding: 16px;
    background: linear-gradient(135deg, #fff8e8, #fdf3dc);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
}

.login-cta p {
    font-size: 0.74rem;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.77rem;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

.btn-outline-gold i {
    width: 13px;
    height: 13px;
}


/* Trust */

.trust-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.66rem;
    color: var(--text-muted);
}

.trust-item i {
    width: 11px;
    height: 11px;
    color: var(--gold);
}


/* Toast */

#toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    animation: slideUp 0.3s ease;
}

#toast.success {
    background: #fff;
    border: 1.5px solid #2ecc71;
    color: #1a8a4a;
}

#toast.error {
    background: #fff;
    border: 1.5px solid #e05a4e;
    color: #c0392b;
}

#toast i {
    width: 15px;
    height: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-wrap {
    animation: fadeSlide 0.4s ease;
}

@media (max-width: 900px) {
    .form-card {
        flex-direction: column;
    }
    .left-panel,
    .right-panel {
        width: 100%;
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    .left-panel {
        display: none !important;
    }
}


/*********************** Category ************************/

.cat-section {
    padding: 48px 0 56px;
    background: var(--cream);
}


/* HEADING */

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 12px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    display: block;
    width: 26px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    border-radius: 2px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title span {
    color: var(--gold);
}

.section-sub {
    font-size: 0.77rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.see-all-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid var(--gold-border);
    border-radius: 50px;
    background: transparent;
    color: var(--gold);
    font-family: "Poppins", sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.22s;
    margin-top: 4px;
}

.see-all-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.22);
}

.see-all-btn:hover svg {
    transform: translateX(3px);
}

.see-all-btn svg {
    transition: transform 0.2s;
}


/* SWIPER */

.cat-swiper-wrap {
    position: relative;
}

.swiper {
    padding: 8px 2px 34px !important;
    overflow: visible !important;
}

.swiper-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--gold-border);
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gold);
}

.swiper-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.swiper-btn.prev {
    left: -17px;
}

.swiper-btn.next {
    right: -17px;
}

.swiper-btn.disabled {
    opacity: 0.28;
    pointer-events: none;
}


/* CARD */

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    gap: 0;
}


/* CIRCLE */

.cat-circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.cat-card:hover .cat-circle {
    transform: translateY(-5px) scale(1.03);
}


/* Gradient border using box trick */

.cat-circle-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #f5d060, #c9960e, #e8c44a, #f5d060);
    padding: 2.5px;
}

.cat-circle-bg::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #fffdf5, #fff8e6, #fdf0cc);
}


/* Inner content */

.cat-inner {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fffef8, #fff8e4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.cat-inner img {
    width: 58%;
    height: 58%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.13));
}

.cat-card:hover .cat-inner img {
    transform: scale(1.14) translateY(-2px);
}


/* Shimmer ring on hover */

.cat-circle::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient( from 0deg, var(--gold-bright), var(--gold), transparent, var(--gold), var(--gold-bright));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    animation: spin 3s linear infinite;
}

.cat-card:hover .cat-circle::after {
    opacity: 0.6;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Badge */

.cat-badge {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    background: linear-gradient(135deg, var(--gold), #e8aa12, var(--gold-bright));
    color: #fff;
    font-size: 0.56rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    border: 2px solid #fff;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.32);
    letter-spacing: 0.02em;
}


/* TEXT */

.cat-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
    transition: color 0.2s;
    line-height: 1.3;
    margin-top: 6px;
}

.cat-card:hover .cat-name {
    color: var(--gold);
}

.cat-count {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 400;
}


/* PAGINATION */

.swiper-pagination {
    bottom: 2px !important;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(184, 134, 11, 0.25);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #b8860b !important;
    width: 20px;
    border-radius: 4px;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .cat-section {
        padding: 32px 0 44px;
    }
    .section-head {
        margin-bottom: 22px;
    }
    .see-all-btn {
        display: none;
    }
    .cat-circle {
        width: 80px;
        height: 80px;
    }
    .cat-name {
        font-size: 0.73rem;
    }
    .cat-count {
        font-size: 0.62rem;
    }
    .cat-badge {
        font-size: 0.5rem;
        padding: 2px 7px;
    }
    .swiper-btn {
        display: none;
    }
}

@media (max-width: 400px) {
    .cat-circle {
        width: 70px;
        height: 70px;
    }
}


/************************* PRODUCTS ************/


/* ═══ MAIN LAYOUT ═══ */

.main-wrap {
    padding: 28px 0 60px;
}


/* ═══ SIDEBAR ═══ */

.sidebar {
    background: var(--sidebar-bg);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 22px;
    position: sticky;
    top: 76px;
}


/* Mobile Filter Button */

.mobile-filter-btn {
    padding: 12px 15px;
}

.mobile-filter-btn button {
    padding: 15px 24px;
    border: 1px solid var(--gold-border);
    background: #fff;
    border-radius: 14px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}


/* Mobile View */

@media (max-width: 991px) {
    .sidebar {
        position: static;
        margin-top: 12px;
        display: none;
    }
    .sidebar.active {
        display: block;
        animation: slideDown 0.35s ease;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.sidebar-title {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.filter-section {
    margin-bottom: 22px;
}

.filter-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}


/* Price range */

.price-range input[type="range"] {
    width: 100%;
    accent-color: var(--gold);
    background: transparent;
    cursor: pointer;
}

.price-vals {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-mid);
    margin-top: 6px;
}


/* Checkboxes */

.filter-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-check input {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.filter-check label {
    font-size: 0.78rem;
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.filter-count {
    margin-left: auto;
    font-size: 0.65rem;
    background: var(--gold-pale);
    color: var(--gold);
    padding: 1px 7px;
    border-radius: 100px;
    border: 1px solid var(--gold-border);
}


/* Star filter */

.star-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    padding: 4px 0;
}

.stars {
    color: var(--gold);
    font-size: 0.78rem;
}

.star-row span {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* Commission highlight */

.commission-box {
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    border: 1.5px solid var(--gold-border);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
}

.commission-box h6 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.commission-box p {
    font-size: 0.7rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.commission-box .comm-pct {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.btn-clear {
    width: 100%;
    padding: 9px;
    background: transparent;
    border: 1.5px solid var(--gold-border);
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* ═══ PRODUCT AREA ═══ */

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-left h5 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.toolbar-left p {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 32px 8px 14px;
    border: 1.5px solid #e8dcc8;
    border-radius: 8px;
    background: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8860b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.view-btns {
    display: flex;
    gap: 4px;
}

.view-btn {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    border: 1.5px solid #e8dcc8;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.view-btn i {
    width: 15px;
    height: 15px;
}

.view-btn.active,
.view-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}


/* ═══ PRODUCT CARD ═══ */

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
    border-color: var(--gold-light);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    height: 220px;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.06);
}


/* Fallback gradient placeholder */

.card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.card-img-placeholder i {
    width: 48px;
    height: 48px;
    color: rgba(184, 134, 11, 0.35);
}

.card-img-placeholder span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 6px;
}

.badge-new {
    background: #27ae60;
    color: #fff;
}

.badge-hot {
    background: #e05a4e;
    color: #fff;
}

.badge-sale {
    background: var(--gold);
    color: #fff;
}

.badge-bestseller {
    background: var(--text-dark);
    color: var(--gold-bright);
}


/* Wishlist */

.card-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gold-border);
}

.card-wishlist i {
    width: 15px;
    height: 15px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.card-wishlist:hover i,
.card-wishlist.active i {
    color: #e05a4e;
}


/* Commission ribbon */

.comm-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient( 135deg, rgba(26, 18, 8, 0.85), rgba(45, 32, 16, 0.85));
    color: var(--gold-bright);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}

.comm-ribbon i {
    width: 12px;
    height: 12px;
}


/* Card body */

.card-body-custom {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-brand {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.card-name {
    font-family: "Playfair Display", serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

.card-variant {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}


/* Stars */

.card-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars-gold {
    color: var(--gold);
    font-size: 0.75rem;
}

.stars-count {
    font-size: 0.68rem;
    color: var(--text-muted);
}


/* Price */

.card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.price-current {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-mrp {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.68rem;
    font-weight: 700;
    color: #27ae60;
    background: #e8f8f0;
    padding: 2px 6px;
    border-radius: 5px;
}


/* BV points */

.bv-tag {
    font-size: 0.65rem;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.bv-tag i {
    width: 11px;
    height: 11px;
}


/* Card footer */

.card-footer-custom {
    margin-top: auto;
    display: flex;
    gap: 8px;
}

.btn-cart {
    flex: 1;
    padding: 9px;
    background: linear-gradient( 135deg, #9a6f00, var(--gold-light), var(--gold-bright), var(--gold-light));
    background-size: 200% auto;
    border: none;
    border-radius: 9px;
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-position 0.3s, box-shadow 0.2s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-cart:hover {
    background-position: right center;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.28);
}

.btn-cart i {
    width: 13px;
    height: 13px;
}

.btn-detail {
    width: 36px;
    height: 41px;
    border-radius: 9px;
    border: 1.5px solid var(--gold-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.btn-detail i {
    width: 14px;
    height: 14px;
}

.btn-detail:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}


/* ═══ PAGINATION ═══ */

.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
}

.page-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1.5px solid #e8dcc8;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #fff;
    border-color: transparent;
}

.page-btn i {
    width: 14px;
    height: 14px;
}


/* ═══ BANNER ═══ */

.promo-banner {
    background: linear-gradient(135deg, #1a1208 0%, #2d2010 50%, #3a2a12 100%);
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: "";
    position: absolute;
    top: -60px;
    right: 200px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 40px solid rgba(240, 192, 64, 0.08);
}

.promo-banner-left h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-bright);
    margin-bottom: 6px;
}

.promo-banner-left p {
    font-size: 0.78rem;
    color: rgba(245, 217, 126, 0.7);
}

.promo-tag {
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: inline-block;
}

.btn-promo {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--text-dark);
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 10px 24px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-promo:hover {
    opacity: 0.88;
}


/* Toast */

#toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #fff;
    border: 1.5px solid #27ae60;
    color: #1a7a3a;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease;
}

#toast i {
    width: 15px;
    height: 15px;
}

#toast.error {
    border-color: #e05a4e;
    color: #c0392b;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .topbar-links,
    .earn-badge {
        display: none;
    }
    .nav-links {
        gap: 0;
    }
}


/******************************* PRODUCTS DETAILS ****************/


/* ═══ BREADCRUMB ═══ */

.breadcrumb-bar {
    background: #fff9ef;
    border-bottom: 1px solid var(--gold-border);
    padding: 10px 0;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-inner a:hover {
    color: var(--gold);
}

.breadcrumb-inner i {
    width: 12px;
    height: 12px;
}

.breadcrumb-inner span:last-child {
    color: var(--gold);
    font-weight: 600;
}


/* ═══ MAIN ═══ */

.main-wrap {
    padding: 32px 0 60px;
}


/* ═══ IMAGE GALLERY ═══ */

.gallery-col {
    position: sticky;
    top: 80px;
}

.main-img-box {
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    border: 1.5px solid var(--gold-border);
    border-radius: 20px;
    overflow: hidden;
    height: 440px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.main-img-box .img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.main-img-box .img-placeholder i {
    width: 80px;
    height: 80px;
    color: rgba(184, 134, 11, 0.3);
}

.main-img-box .img-placeholder span {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    color: var(--text-muted);
}

.img-tags {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.img-tag {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.06em;
}

.tag-bestseller {
    background: #1a1208;
    color: var(--gold-bright);
}

.tag-hot {
    background: #e05a4e;
    color: #fff;
}

.img-zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.img-zoom i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}


/* Thumbnails */

.thumb-row {
    margin-top: 12px;
}

.thumb-item {
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    border: 2px solid var(--gold-border);
    border-radius: 10px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.thumb-item i {
    width: 24px;
    height: 24px;
    color: rgba(184, 134, 11, 0.4);
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--gold);
}


/* Share strip */

.share-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gold-border);
}

.share-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid var(--gold-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.share-btn i {
    width: 14px;
    height: 14px;
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}


/* ═══ PRODUCT INFO ═══ */

.product-brand {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 5px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    font-weight: 600;
}

.verified-badge i {
    width: 10px;
    height: 10px;
}

.product-title {
    font-family: "Playfair Display", serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}


/* Rating row */

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.stars-big {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-num {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rating-sep {
    color: #e8dcc8;
}

.sold-count {
    font-size: 0.72rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sold-count i {
    width: 12px;
    height: 12px;
    color: var(--gold);
}


/* Price block */

.price-block {
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    border: 1.5px solid var(--gold-border);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.price-main {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.price-mrp-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.price-mrp-val {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-save {
    font-size: 0.8rem;
    font-weight: 700;
    color: #27ae60;
    background: #e8f8f0;
    padding: 3px 10px;
    border-radius: 6px;
}

.price-inclusive {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 4px;
}


/* Commission block */

.comm-block {
    background: linear-gradient(135deg, #1a1208, #2d2010);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.comm-block-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comm-block-title i {
    width: 14px;
    height: 14px;
}

.comm-row {
    display: flex;
    gap: 0;
}

.comm-item {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.comm-item:last-child {
    border-right: none;
}

.comm-val {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
}

.comm-key {
    font-size: 0.58rem;
    color: rgba(245, 217, 126, 0.55);
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* Variants */

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.variant-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.variant-pill {
    padding: 7px 16px;
    border-radius: 8px;
    border: 1.5px solid #e8dcc8;
    background: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
}

.variant-pill:hover,
.variant-pill.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}


/* Shade selector */

.shade-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.shade-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: all 0.2s;
}

.shade-dot:hover,
.shade-dot.active {
    border-color: var(--gold);
    transform: scale(1.1);
}


/* Qty + CTA */

.qty-cta-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1.5px solid #e8dcc8;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 38px;
    height: 46px;
    border: none;
    background: #f5ede0;
    font-size: 1.1rem;
    color: var(--text-mid);
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--gold-pale);
    color: var(--gold);
}

.qty-num {
    width: 46px;
    height: 46px;
    text-align: center;
    border: none;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
}

.btn-add-cart {
    flex: 1;
    padding: 13px 20px;
    background: linear-gradient( 135deg, #9a6f00, var(--gold-light), var(--gold-bright), var(--gold-light));
    background-size: 200% auto;
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-position 0.3s, box-shadow 0.2s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.btn-add-cart:hover {
    background-position: right center;
    box-shadow: 0 6px 24px rgba(184, 134, 11, 0.3);
}

.btn-add-cart i {
    width: 17px;
    height: 17px;
}

.btn-buy-now {
    flex: 1;
    padding: 13px 20px;
    background: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-bright);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-buy-now:hover {
    opacity: 0.85;
}

.btn-buy-now i {
    width: 17px;
    height: 17px;
}

.btn-wishlist-full {
    padding: 13px 16px;
    background: var(--white);
    border: 1.5px solid var(--gold-border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text-muted);
}

.btn-wishlist-full i {
    width: 18px;
    height: 18px;
}

.btn-wishlist-full:hover {
    border-color: #e05a4e;
    color: #e05a4e;
    background: #fff5f5;
}


/* Delivery & offers */

.delivery-row {
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f5ede0;
}

.delivery-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.delivery-item i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.delivery-item span {
    font-size: 0.77rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.delivery-item span strong {
    color: var(--text-dark);
}


/* Offers */

.offers-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.offers-title i {
    width: 15px;
    height: 15px;
    color: var(--gold);
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.73rem;
    color: var(--text-mid);
    margin-bottom: 7px;
    line-height: 1.4;
}

.offer-item::before {
    content: "•";
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.offer-item code {
    background: var(--gold-pale);
    color: var(--gold);
    padding: 0 5px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
}


/* ═══ TABS ═══ */

.tabs-section {
    margin-top: 40px;
}

.nav-tabs-custom {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gold-border);
    margin-bottom: 28px;
}

.tab-btn {
    padding: 12px 22px;
    border: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeTab 0.3s ease;
}

@keyframes fadeTab {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Description tab */

.desc-headline {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.desc-text {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-row {
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.benefit-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check i {
    width: 11px;
    height: 11px;
    color: #fff;
}

.benefit-item span {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.5;
}


/* Ingredients */

.ingredient-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.ingredient-tag {
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ingredient-tag i {
    width: 12px;
    height: 12px;
}


/* How to use */

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-step {
    display: flex;
    gap: 16px;
    position: relative;
}

.how-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% - 12px);
    background: linear-gradient(to bottom, var(--gold-border), transparent);
}

.how-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(184, 134, 11, 0.25);
}

.how-body {
    padding-bottom: 22px;
    padding-top: 8px;
}

.how-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.how-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* Specs table */

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f0e8d6;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 10px 14px;
    font-size: 0.8rem;
}

.specs-table td:first-child {
    color: var(--text-muted);
    font-weight: 600;
    width: 36%;
    background: #fdf8f0;
}

.specs-table td:last-child {
    color: var(--text-dark);
}


/* Reviews tab */

.rating-summary {
    margin-bottom: 28px;
}

.rating-big {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rating-stars-big {
    font-size: 1.1rem;
    color: var(--gold);
    margin: 6px 0;
}

.rating-total {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rating-bars {
    flex: 1;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.rating-bar-label {
    font-size: 0.72rem;
    color: var(--text-mid);
    width: 36px;
}

.rating-bar-track {
    flex: 1;
    height: 7px;
    background: #f0e8d6;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transition: width 0.6s ease;
}

.rating-bar-pct {
    font-size: 0.68rem;
    color: var(--text-muted);
    width: 30px;
    text-align: right;
}


/* Review cards */

.review-card {
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
}

.review-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text-dark);
}

.reviewer-meta {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
}

.review-badge {
    margin-left: auto;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-badge i {
    width: 10px;
    height: 10px;
}

.review-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.review-text {
    font-size: 0.77rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.review-helpful {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0e8d6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    cursor: pointer;
    background: var(--white);
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.helpful-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.helpful-btn i {
    width: 12px;
    height: 12px;
}


/* Commission tab */

.comm-plan-card {
    border: 1.5px solid var(--gold-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
}

.comm-plan-header {
    background: linear-gradient(135deg, #1a1208, #2d2010);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comm-plan-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
}

.comm-plan-icon i {
    width: 16px;
    height: 16px;
    color: #fff;
}

.comm-plan-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.comm-plan-val {
    margin-left: auto;
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.comm-plan-body {
    padding: 14px 18px;
    background: var(--white);
}

.comm-plan-body p {
    font-size: 0.77rem;
    color: var(--text-mid);
    line-height: 1.6;
}


/* Related products */

.related-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gold-border);
}

.section-heading {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--gold-border);
}

.mini-card {
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(184, 134, 11, 0.12);
}

.mini-card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card-img i {
    width: 48px;
    height: 48px;
    color: rgba(184, 134, 11, 0.3);
}

.mini-card-body {
    padding: 12px 14px;
}

.mini-card-name {
    font-family: "Playfair Display", serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mini-card-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
}

.mini-card-mrp {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 4px;
}


/* Sticky mobile CTA */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gold-border);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 998;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        gap: 10px;
    }
}


/* Toast */

#toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #fff;
    border: 1.5px solid #27ae60;
    color: #1a7a3a;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease;
}

#toast i {
    width: 15px;
    height: 15px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/******************************* CONTACT US ***************/


/* ══ HERO ══ */

.contact-hero {
    background: linear-gradient( 150deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 70px solid rgba(240, 192, 64, 0.04);
    pointer-events: none;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 50px solid rgba(240, 192, 64, 0.03);
    pointer-events: none;
}

.dots-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient( circle, rgba(240, 192, 64, 0.12) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.22);
    color: var(--gb);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.hero-tag i {
    width: 12px;
    height: 12px;
}

.hero-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--gb);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-h1 em {
    font-style: italic;
    color: rgba(240, 192, 64, 0.75);
}

.hero-p {
    font-size: 0.85rem;
    color: rgba(245, 217, 126, 0.6);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 32px;
}


/* Quick contact chips */

.quick-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.q-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(240, 192, 64, 0.18);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.22s;
    cursor: pointer;
}

.q-chip:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(240, 192, 64, 0.4);
}

.q-chip i {
    width: 14px;
    height: 14px;
    color: var(--gb);
}

.q-chip-label {
    font-size: 0.7rem;
    color: rgba(245, 217, 126, 0.55);
    font-weight: 500;
}

.q-chip-val {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--gb);
}


/* ══ CONTACT CARDS (top row) ══ */

.contact-cards-section {
    padding: 52px 0 0;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    text-align: center;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient( 90deg, transparent, var(--gl), var(--gb), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(184, 134, 11, 0.13);
    border-color: var(--gl);
}

.contact-card:hover::before {
    opacity: 1;
}

.cc-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.cc-icon i {
    width: 26px;
    height: 26px;
    color: #fff;
}

.cc-label {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.cc-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cc-sub {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.cc-btn i {
    width: 12px;
    height: 12px;
}


/* ══ MAIN CONTENT ══ */

.main-section {
    padding: 52px 0 80px;
}


/************************ FAQ ***********************/

.cat-bar2 {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 64px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.05);
}

.cat-inner2 {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 0;
}

.cat-inner2::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cat-btn i {
    width: 13px;
    height: 13px;
}

.cat-btn:hover,
.cat-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gp);
}

.cat-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gb));
    color: var(--dark);
    border-color: transparent;
}


/* MAIN CONTENT */

.faq-wrap {
    padding: 48px 0 80px;
}


/* CATEGORY SECTIONS */

.faq-section {
    margin-bottom: 48px;
}

.faq-section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.faq-section-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-section-icon i {
    width: 17px;
    height: 17px;
    color: #fff;
}


/* ACCORDION */

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: var(--gl);
}

.faq-item.open {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.1);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
}

.faq-q-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gp);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.faq-item.open .faq-q-text {
    color: var(--gold);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-toggle {
    background: linear-gradient(135deg, var(--gold), var(--gb));
    border-color: transparent;
    transform: rotate(45deg);
}

.faq-toggle i {
    width: 14px;
    height: 14px;
    color: var(--muted);
}

.faq-item.open .faq-toggle i {
    color: var(--dark);
}

.faq-a {
    display: none;
    padding: 0 20px 18px 60px;
}

.faq-a p {
    font-size: 0.79rem;
    color: var(--mid);
    line-height: 1.75;
}

.faq-a ul {
    margin: 10px 0 0 16px;
}

.faq-a ul li {
    font-size: 0.77rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 4px;
}

.faq-a .highlight {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gp);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 7px;
    margin-top: 10px;
}

.faq-a .highlight i {
    width: 12px;
    height: 12px;
}


/* SIDEBAR */

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.sc-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5ede0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sc-title i {
    width: 15px;
    height: 15px;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5ede0;
}

.contact-item:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon i {
    width: 15px;
    height: 15px;
    color: #fff;
}

.ci-label {
    font-size: 0.7rem;
    color: var(--muted);
}

.ci-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 1px;
}

.popular-q a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    color: var(--mid);
    text-decoration: none;
    padding: 7px 0;
    border-bottom: 1px solid #f5ede0;
    transition: color 0.2s;
}

.popular-q a:last-child {
    border-bottom: none;
}

.popular-q a:hover {
    color: var(--gold);
}

.popular-q a i {
    width: 12px;
    height: 12px;
    color: var(--gold);
    flex-shrink: 0;
}

.btn-support {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #9a6f00, var(--gl), var(--gb));
    background-size: 200% auto;
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-position 0.4s;
}

.btn-support:hover {
    background-position: right center;
}

.btn-support i {
    width: 15px;
    height: 15px;
}


/* NO RESULTS */

.no-results {
    text-align: center;
    padding: 60px 24px;
    display: none;
}

.no-results i {
    width: 56px;
    height: 56px;
    color: rgba(184, 134, 11, 0.25);
    margin-bottom: 14px;
}


/* FOOTER */

footer {
    background: var(--dark);
    padding: 40px 0 0;
}

.footer-bottom {
    border-top: 1px solid rgba(240, 192, 64, 0.08);
    padding: 16px 0;
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.66rem;
    color: rgba(245, 217, 126, 0.3);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section {
    animation: fadeUp 0.4s ease both;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
}


/* Position Cards */

.pos-card {
    flex: 1;
    border: 1.5px solid #e0d5c0;
    border-radius: 12px;
    padding: 14px 10px 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.18s, background 0.18s;
    background: #fff;
    position: relative;
    user-select: none;
}

.pos-card:hover {
    border-color: #c9a84c;
    background: #fdf6e9;
}

.pos-card.selected {
    border-color: #b47b12;
    background: #faeeda;
}

.pos-card .check-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ef9f27;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
}

.pos-card.selected .check-badge {
    display: flex;
}

.pos-card .icon-wrap {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: #f5f0e8;
    border: 1.5px solid #e0d5c0;
    transition: background 0.18s, border-color 0.18s;
}

.pos-card .icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: #b47b12;
}

.pos-card.selected .icon-wrap {
    background: #fac775;
    border-color: #ef9f27;
}

.pos-card.selected .icon-wrap svg {
    stroke: #412402;
}

.pos-card .pos-label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2410;
    margin-bottom: 3px;
}

.pos-card .pos-sub {
    font-size: 12px;
    color: #8a7355;
}


/* Position wrapper */

.pos-wrap {
    display: flex;
    gap: 12px;
    width: 100%;
}


/******************************* Alert */

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 420px;
    color: #fff;
    padding: 16px 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}


/* SUCCESS */

.custom-alert.success {
    background: #052e16;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.custom-alert.success .alert-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.custom-alert.success::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    animation: progress 3s linear forwards;
}


/* ERROR */

.custom-alert.error {
    background: #450a0a;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.custom-alert.error .alert-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.custom-alert.error::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #ef4444, #f87171);
    animation: progress 3s linear forwards;
}

.alert-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.alert-text {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.alert-close {
    border: none;
    background: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.alert-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

@keyframes progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}


/*************************************************************************/


/* MAIN */

.checkout-wrap {
    padding: 32px 0 60px;
}

@media (max-width: 768px) {
    .checkout-wrap {
        padding-bottom: 88px;
    }
}


/* SECTION CARD */

.section-card {
    background: #fff;
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5ede0;
}

.section-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-left: auto;
}


/* FIELD */

.field-group {
    margin-bottom: 16px;
}

.field-label {
    font-size: 0.71rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    margin-bottom: 5px;
    display: block;
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
}

.field-icon i {
    width: 15px;
    height: 15px;
}

.field-input {
    width: 100%;
    border: 1.5px solid #e8dcc8;
    border-radius: 10px;
    background: #fff;
    padding: 11px 14px 11px 42px;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field-input::placeholder {
    color: #c0ad92;
}

.field-input:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.field-input.no-icon {
    padding-left: 14px;
}

select.field-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8860b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}


/* SAVED ADDRESS */

.saved-addr-card {
    border: 1.5px solid #e8dcc8;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.saved-addr-card:hover,
.saved-addr-card.active {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.addr-radio {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.addr-tag {
    font-size: 0.62rem;
    font-weight: 700;
    background: var(--text-dark);
    color: var(--gold-bright);
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
}

.addr-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
}

.addr-line {
    font-size: 0.74rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.addr-phone {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.addr-edit {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--gold);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.add-new-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1.5px dashed var(--gold-border);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--gold);
    background: transparent;
    width: 100%;
    transition: all 0.2s;
}

.add-new-btn:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.add-new-btn i {
    width: 16px;
    height: 16px;
}


/* NEW ADDRESS FORM */

.new-addr-form {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f5ede0;
}

.new-addr-form.show {
    display: block;
}


/* PAYMENT */

.pay-option {
    border: 1.5px solid #e8dcc8;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
}

.pay-option:hover,
.pay-option.active {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.pay-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pay-radio {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.pay-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pay-icon i {
    width: 18px;
    height: 18px;
    color: #fff;
}

.pay-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pay-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.pay-body {
    display: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f5ede0;
}

.pay-body.show {
    display: block;
}


/* Card input */

.card-number-wrap {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.card-icons span {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #555;
}


/* UPI */

.upi-apps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.upi-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border: 1.5px solid #e8dcc8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.66rem;
    color: var(--text-muted);
    font-weight: 600;
}

.upi-app i {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.upi-app:hover,
.upi-app.active {
    border-color: var(--gold);
    background: var(--gold-pale);
    color: var(--gold);
}


/* ORDER SUMMARY */

.summary-box {
    background: #fff;
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 22px;
    position: sticky;
    top: 84px;
}

.summary-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold-border);
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f5ede0;
}

.cart-item:last-of-type {
    border-bottom: none;
}

.cart-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff8e8, var(--gold-pale));
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-img i {
    width: 22px;
    height: 22px;
    color: rgba(184, 134, 11, 0.4);
}

.cart-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.cart-variant {
    font-size: 0.66rem;
    color: var(--text-muted);
}

.cart-qty {
    font-size: 0.68rem;
    color: var(--text-mid);
    margin-top: 3px;
}

.cart-price {
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: auto;
    flex-shrink: 0;
}

.cart-mrp {
    font-size: 0.66rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-align: right;
}


/* Totals */

.totals-section {
    padding-top: 14px;
    border-top: 1px solid var(--gold-border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.79rem;
    color: var(--text-mid);
}

.total-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

.total-row.green span:last-child {
    color: #27ae60;
}

.total-row.final {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 6px;
    padding-top: 10px;
    border-top: 2px solid var(--gold-border);
}

.total-row.final span:last-child {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: var(--text-dark);
}


/* Commission summary */

.comm-summary {
    background: linear-gradient(135deg, #1a1208, #2d2010);
    border-radius: 12px;
    padding: 14px;
    margin: 14px 0;
}

.comm-summary-title {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comm-summary-title i {
    width: 13px;
    height: 13px;
}

.comm-earn-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: rgba(245, 217, 126, 0.7);
    margin-bottom: 4px;
}

.comm-earn-row span:last-child {
    color: var(--gold-bright);
    font-weight: 700;
}


/* Coupon */

.coupon-box {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e8dcc8;
    border-radius: 9px;
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}

.coupon-input:focus {
    border-color: var(--gold-light);
}

.coupon-input::placeholder {
    color: #c0ad92;
}

.btn-apply {
    padding: 10px 18px;
    background: var(--text-dark);
    color: var(--gold-bright);
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-apply:hover {
    opacity: 0.85;
}


/* Place order btn */

.btn-place-order {
    width: 100%;
    padding: 15px;
    background: linear-gradient( 135deg, #9a6f00, var(--gold-light), var(--gold-bright), var(--gold-light));
    background-size: 200% auto;
    border: none;
    border-radius: 11px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-position 0.4s, box-shadow 0.2s, transform 0.1s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
}

.btn-place-order:hover {
    background-position: right center;
    box-shadow: 0 6px 24px rgba(184, 134, 11, 0.3);
    transform: translateY(-1px);
}

.btn-place-order i {
    width: 18px;
    height: 18px;
}

.btn-continue-shop {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #9a6f00, var(--gold-light), var(--gold-bright), var(--gold-light));
    background-size: 200% auto;
    border: none;
    border-radius: 11px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-position 0.4s, box-shadow 0.2s, transform 0.1s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.btn-continue-shop:hover {
    background-position: right center;
    box-shadow: 0 6px 24px rgba(184, 134, 11, 0.3);
    transform: translateY(-1px);
    color: #fff;
}

.btn-continue-shop-outline {
    margin-top: 10px;
    background: transparent;
    border: 1.5px solid #e8dcc8;
    color: var(--text-mid);
    box-shadow: none;
    text-shadow: none;
}

.btn-continue-shop-outline:hover {
    background: var(--gold-pale);
    color: var(--text-dark);
}

.btn-continue-shop i,
.btn-continue-shop svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.summary-box .btn-continue-shop {
    pointer-events: auto;
}

.spin {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.secure-txt {
    text-align: center;
    font-size: 0.67rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.secure-txt i {
    width: 12px;
    height: 12px;
    color: #27ae60;
}


/* BV summary tag */

.bv-earn-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 9px 14px;
    margin: 10px 0;
    font-size: 0.74rem;
    color: var(--gold);
    font-weight: 600;
}

.bv-earn-tag i {
    width: 14px;
    height: 14px;
}


/* Toast */

#toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #fff;
    border: 1.5px solid #27ae60;
    color: #1a7a3a;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease;
}

#toast.error {
    border-color: #e05a4e;
    color: #c0392b;
}

#toast i {
    width: 15px;
    height: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/********************************* Check out */


/* Cart item card */

.cart-item-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: all 0.25s;
    animation: fadeUp 0.35s ease both;
}

.cart-item-card:hover {
    box-shadow: 0 6px 22px rgba(184, 134, 11, 0.1);
}

.ci-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-img i {
    width: 32px;
    height: 32px;
    color: rgba(184, 134, 11, 0.35);
}

.ci-brand {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.ci-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 4px;
}

.ci-variant {
    font-size: 0.68rem;
    color: var(--muted);
}

.ci-earn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.64rem;
    color: var(--gold);
    background: var(--gp);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 5px;
    margin-top: 4px;
}

.ci-earn i {
    width: 10px;
    height: 10px;
}


/* Price */

.ci-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}

.ci-mrp {
    font-size: 0.72rem;
    color: var(--muted);
    text-decoration: line-through;
}

.ci-off {
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--green);
    background: #e8f8f0;
    padding: 2px 6px;
    border-radius: 4px;
}


/* Qty stepper */

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1.5px solid #e8dcc8;
    border-radius: 9px;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5ede0;
    font-size: 0.95rem;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--gp);
    color: var(--gold);
}

.qty-num {
    width: 38px;
    height: 32px;
    text-align: center;
    border: none;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    background: var(--white);
    outline: none;
}


/* Item actions */

.ci-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-ci-action {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 7px;
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    transition: all 0.2s;
}

.btn-ci-action:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gp);
}

.btn-ci-action.remove:hover {
    border-color: var(--red);
    color: var(--red);
    background: #fff5f5;
}

.btn-ci-action i {
    width: 11px;
    height: 11px;
}