/* ==========================================================================
   MAHESWARI GOLD - LUXURY DESIGN SYSTEM
   ========================================================================== */

/* Define Global Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #FFDF73;
    --gold-dark: #AA7C11;
    --gold-deep: #8C6212;
    --gold-gradient: linear-gradient(135deg, #FFDF73 0%, #D4AF37 40%, #AA7C11 75%, #6E500B 100%);
    --gold-text-gradient: linear-gradient(to right, #FFE57F, #D4AF37, #AA7C11);
    
    /* Dark Theme Colors */
    --color-bg-dark: #0F0C08;       /* Very dark luxury black-brown */
    --color-bg-panel: #1A130B;      /* Deep rich bronze-brown */
    --color-bg-card: #251D14;       /* Lighter bronze-brown for cards */
    --color-text-light: #F5EFEB;    /* Warm soft white */
    --color-text-muted: #B8A89A;    /* Muted gold-grey */
    
    /* Light Theme (Login Form Side) */
    --color-bg-cream: #FAF6F0;      /* Vintage warm cream */
    --color-text-dark: #2C2216;     /* Dark bronze-brown */
    
    /* Shadows & Transitions */
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --gold-glow-intense: 0 0 25px rgba(212, 175, 55, 0.65);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #080604;
}
::-webkit-scrollbar-thumb {
    background: var(--gold-deep);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* ==========================================================================
   SHOWCASE NAVIGATION TOOLBAR
   ========================================================================== */
.showcase-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 12, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-text-muted);
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    color: var(--color-text-light);
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow);
}

.nav-btn.active {
    background: var(--gold-gradient);
    color: var(--color-bg-dark);
    font-weight: 600;
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

/* ==========================================================================
   APP CONTENT AND PAGE TRANSITIONS
   ========================================================================== */
.app-content {
    margin-top: 60px; /* offset nav */
    min-height: calc(100vh - 60px);
    position: relative;
}

.app-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 40px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

.brand-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 5px;
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 0 auto;
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    position: relative;
}

.header-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    transform: rotate(45deg);
    position: absolute;
}

.logo-wrapper {
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.6s ease;
}

.logo-wrapper:hover {
    transform: rotateY(180deg);
}

/* ==========================================================================
   HOME PAGE SECTION
   ========================================================================== */
#home-section {
    background: radial-gradient(circle at center, rgba(37, 29, 20, 0.4) 0%, rgba(15, 12, 8, 1) 70%);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.dash-card {
    background: rgba(37, 29, 20, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 223, 115, 0.1), transparent);
    transition: 0.5s;
}

.dash-card:hover::before {
    left: 100%;
}

.dash-card:hover {
    background: rgba(37, 29, 20, 0.7);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(37, 29, 20, 0.8), rgba(15, 12, 8, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.dash-card:hover .card-icon-box {
    background: var(--gold-gradient);
    color: var(--color-bg-dark);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    border-color: transparent;
}

.card-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.dash-card:hover .card-label {
    color: var(--color-text-light);
}

/* Home Hero Image Section */
.home-hero-container {
    max-width: 800px;
    margin: 0 auto 50px auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.hero-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Home Footer features */
.home-features-footer {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
#product-section {
    background: #0c0805;
}

.product-header-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 40px;
    text-align: left;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-logo-circle {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.product-brand-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-text-light);
}

.product-brand-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold-primary);
    line-height: 1;
}

.product-brand-text p {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-top: 3px;
}

.header-center {
    text-align: center;
    position: relative;
}

.products-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--color-text-light);
    font-weight: 600;
}

.products-pillars {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-top: 5px;
}

.ornament-left, .ornament-right {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold-primary);
    vertical-align: middle;
    margin: 0 10px;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.trusted-badge-emb {
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(37, 29, 20, 0.4);
    box-shadow: var(--gold-glow);
}

.badge-lbl-top {
    font-size: 0.5rem;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.badge-lbl-yr {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--color-bg-card);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.card-gold-banner {
    background: linear-gradient(to right, var(--gold-deep), var(--gold-primary), var(--gold-deep));
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-gold-banner span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--color-bg-dark);
}

.card-promo-txt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-bottom: 20px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    position: relative;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .prod-img {
    transform: scale(1.1);
}

/* Special styling for Jewelry card img frame */
.product-img-frame.jewelry-frame {
    border-radius: 12px;
    width: 100%;
    height: 220px;
}

.hallmark-seal-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(26, 19, 11, 0.9);
    border: 1px solid var(--gold-primary);
    border-radius: 6px;
    padding: 5px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.seal-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 1px;
}

.seal-lbl {
    font-size: 0.5rem;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
}

.seal-status {
    font-size: 0.5rem;
    color: #FFF;
}

.product-details-text {
    margin-bottom: 20px;
    width: 100%;
}

.purity-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.purity-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.purity-desc {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 500;
}

.font-gold-detail {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Easy Payment Option Box */
.payment-option-box {
    background: #FAF6F0; /* Cream background like in product card */
    border-radius: 10px;
    width: 100%;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    margin-top: auto;
    border-left: 4px solid var(--gold-primary);
}

.pay-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-text-box {
    display: flex;
    flex-direction: column;
}

.pay-opt-lbl {
    font-size: 0.7rem;
    color: #7A6956;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pay-opt-val {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Security Box modifications */
.payment-option-box.security-box {
    border-left-color: #0A8443;
}

/* Product features footer */
.product-features-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 40px;
    margin-top: 60px;
}

.p-feature-col {
    text-align: center;
    padding: 10px;
}

.p-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 29, 20, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: var(--transition-smooth);
}

.p-feature-col:hover .p-feature-icon {
    background: var(--gold-gradient);
    transform: rotate(360deg);
}

.p-feature-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.p-feature-col p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.bottom-slogan-bar {
    text-align: center;
    margin-top: 50px;
    padding: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   LOGIN PORTAL
   ========================================================================== */
#login-section {
    max-width: 1000px;
}

.login-header-content {
    background: linear-gradient(180deg, #1A130B 0%, #0F0C08 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 3px solid var(--gold-primary);
    border-radius: 12px 12px 0 0;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    text-align: left;
}

.square-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.square-logo-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--gold-primary);
}

.login-brand-titles {
    text-align: right;
}

.login-brand-titles .brand-title {
    font-size: 2.2rem;
    margin-top: 0;
    line-height: 1.1;
}

.login-brand-titles .brand-subtitle {
    font-size: 0.95rem;
    margin-top: 3px;
}

/* Split Pane container */
.login-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.login-hero-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 8s ease;
}

.login-visual-panel:hover .login-hero-img {
    transform: scale(1.1) rotate(1deg);
}

.login-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 12, 8, 0.2) 0%, rgba(15, 12, 8, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    text-align: left;
}

.cursive-purity {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #FFF;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.creation-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1;
}

/* Right side panel */
.login-form-panel {
    background: var(--color-bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.form-container {
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-text-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.form-sub {
    font-size: 0.9rem;
    color: #7A6956;
}

.vintage-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 25px auto;
    width: 150px;
    height: 1px;
    background: #D8CEBC;
    position: relative;
}

.vintage-divider::after {
    content: '⚜';
    color: var(--gold-primary);
    font-size: 1rem;
    position: absolute;
    background: var(--color-bg-cream);
    padding: 0 8px;
}

/* Input Fields */
.input-group {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 50px;
    border: 1px solid #D8CEBC;
    border-radius: 8px;
    background: #FFF;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
}

.password-toggle-btn {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkbox and options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    color: #5C4F3C;
    user-select: none;
    text-align: left;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #FFF;
    border: 1px solid #D8CEBC;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--gold-primary);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--gold-primary);
    border-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: stroke #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-style: solid;
}

.forgot-pass-link {
    color: var(--gold-deep);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.forgot-pass-link:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #B8860B, #D4AF37, #B8860B);
    border: none;
    border-radius: 8px;
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    transition: var(--transition-smooth);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(to right, #C69A1C, #FFDF73, #C69A1C);
}

.login-submit-btn:active {
    transform: translateY(0);
}

/* Login Footer */
.login-footer {
    background: #080604;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.login-footer .footer-left,
.login-footer .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-footer strong {
    color: var(--color-text-light);
}

/* ==========================================================================
   MODAL WINDOW SYSTEM
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content.glassmorphic {
    background: rgba(37, 29, 20, 0.75);
    border: 2px solid var(--gold-primary);
    box-shadow: var(--gold-glow-intense), var(--shadow-premium);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    padding: 35px;
    position: relative;
    color: var(--color-text-light);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.open .modal-content.glassmorphic {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--gold-light);
}

/* Modal Inner Styling */
.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.modal-table th, .modal-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-table th {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-weight: 600;
}

.modal-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */

@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-header-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .header-left, .header-right {
        justify-content: center;
    }
    
    .login-split-container {
        grid-template-columns: 1fr;
    }
    .login-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 50px auto;
    }
    
    .product-features-footer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .home-features-footer {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .product-features-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-brand {
        font-size: 0.95rem;
    }
    
    .nav-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    .login-header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .login-brand-titles {
        text-align: center;
    }
}
