/* ============================================
    ASHIRWADDIGITALS - Modern UI Design System
   Based on: https://ashirwad-six.vercel.app/
   ============================================ */

/* ============================================
   COLOR PALETTE
   ============================================ */
:root {
    /* Primary Colors */
    --primary-dark: #151922;
    --secondary-dark: #1a1f2e;
    --dark-navy: #0f1419;
    
    /* Light Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    
    /* Accent Colors */
    --yellow-primary: #FDB913;
    --yellow-hover: #FFB800;
    --yellow-light: #FFE082;
    
    /* Semantic Colors */
    --success: #28a745;
    --danger: #dc3545;
    --info: #17a2b8;
    --warning: #ffc107;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container width control */
.container {
    width: 100%;
    
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--yellow-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--yellow-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background-color: var(--white) !important;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--dark-gray) !important;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.navbar-brand:hover {
    color: var(--yellow-primary) !important;
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 1.75rem;
}

.navbar-toggler {
    border: 2px solid var(--dark-gray);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(253, 185, 19, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(52, 58, 64, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow-primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--yellow-primary) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link i {
    margin-right: 0.25rem;
}

/* Cart Badge */
.navbar-nav .nav-link .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    background-color: var(--yellow-primary) !important;
    color: var(--dark-gray) !important;
    font-weight: 700;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.5;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(253, 185, 19, 0.25);
}

/* Primary Button (Yellow) */
.btn-primary {
    background-color: var(--yellow-primary);
    color: var(--dark-gray);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--yellow-hover);
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(253, 185, 19, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(253, 185, 19, 0.2);
}

/* Secondary Button (White Outline) */
.btn-secondary {
    background-color: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Outline Button (for dark backgrounds) */
.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

/* Success Button */
.btn-success {
    background-color: var(--success);
    color: var(--white);
    border: 2px solid var(--success);
}

.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Danger Button */
.btn-danger {
    background-color: var(--danger);
    color: var(--white);
    border: 2px solid var(--danger);
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Info Button */
.btn-info {
    background-color: var(--info);
    color: var(--white);
    border: 2px solid var(--info);
}

.btn-info:hover {
    background-color: #138496;
    border-color: #138496;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card .card-img-wrapper {
    height: 240px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card .card-img-top {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    color: var(--dark-gray);
}

/* Search Box */
.search-box .form-control {
    padding-left: 2.8rem;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid #eee;
    font-size: 1rem;
}

.search-box .form-control:focus {
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 0.2rem rgba(253, 185, 19, 0.15);
}

/* Showing Count */
.showing-count {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

/* Contact page specific */
.contact-card {
    border-radius: 12px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-circle.whatsapp { background: var(--success); }
.icon-circle.email { background: #6f8cff; }
.icon-circle.store { background: #c77bff; }

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 9999px;
    background: var(--success);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    z-index: 2000;
    text-decoration: none;
}

.whatsapp-fab:hover { transform: translateY(-3px); }

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-footer {
    background-color: var(--light-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.bg-primary {
    background-color: var(--yellow-primary) !important;
    color: var(--dark-gray) !important;
}

.bg-secondary {
    background-color: var(--medium-gray) !important;
    color: var(--white) !important;
}

.bg-success {
    background-color: var(--success) !important;
    color: var(--white) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
    color: var(--white) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
    color: var(--dark-gray) !important;
}

.bg-info {
    background-color: var(--info) !important;
    color: var(--white) !important;
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    background-color: var(--white);
    color: var(--dark-gray);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 0.25rem rgba(253, 185, 19, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-text {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

/* ============================================
   TABLES
   ============================================ */
.table {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.table thead th {
    background-color: var(--secondary-dark);
    color: var(--white);
    font-weight: 700;
    padding: 1rem;
    border: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background-color: var(--light-gray);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(253, 185, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 185, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--yellow-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

footer ul li a:hover {
    color: var(--yellow-primary);
    padding-left: 0.5rem;
}

footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-base);
}

footer .social-links a:hover {
    background-color: var(--yellow-primary);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

footer .copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.text-gold {
    color: var(--yellow-primary) !important;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.page-item .page-link {
    padding: 0.75rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    font-weight: 600;
    transition: var(--transition-base);
}

.page-item.active .page-link {
    background-color: var(--yellow-primary);
    border-color: var(--yellow-primary);
    color: var(--dark-gray);
}

.page-item .page-link:hover {
    background-color: var(--yellow-primary);
    border-color: var(--yellow-primary);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.w-100 { width: 100%; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .card-img-top {
        height: 200px;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    footer {
        text-align: center;
    }
    
    footer .social-links {
        justify-content: center;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--yellow-primary);
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0 0 var(--radius-md) 0;
    font-weight: 600;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--yellow-primary);
    outline-offset: 2px;
}

/* ============================================
   AUTH PAGES (LOGIN/REGISTER)
   ============================================ */

/* Auth Layout */
.auth-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    position: relative;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(253, 185, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 185, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.auth-box {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-btn:hover {
    color: #333;
    transform: scale(1.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #666;
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.custom-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
    background: #f8f8f8;
}

.custom-input:focus {
    border-color: var(--yellow-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(253, 185, 19, 0.1);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
}

.password-requirements {
    margin-top: 0.75rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.requirement i {
    color: #ccc;
}

.requirement.valid i {
    color: #28a745;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--yellow-primary);
    color: #333;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.2);
}

.auth-separator {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.auth-separator::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e0e0e0;
}

.auth-separator span {
    background: #fff;
    padding: 0 1rem;
    color: #666;
    position: relative;
    font-size: 0.875rem;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    color: #333;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-social:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-social img {
    width: 20px;
    height: 20px;
}

.auth-footer {
    text-align: center;
    color: #666;
}

.auth-footer p {
    margin-bottom: 0.5rem;
}

.auth-footer a {
    color: var(--yellow-primary);
    text-decoration: none;
    font-weight: 500;
}

.terms-text {
    font-size: 0.875rem;
    color: #999;
}

.terms-text a {
    color: #666;
    text-decoration: underline;
}
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    position: relative;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(253, 185, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 185, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.auth-card {
    border-radius: var(--radius-xl) !important;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

.brand-logo {
    color: var(--dark-gray);
}

/* Form Elements */
.form-floating {
    position: relative;
}

.form-floating > .form-control {
    height: 58px;
    padding: 1rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 4px rgba(253, 185, 19, 0.15);
    background-color: #fff;
}

.form-floating > label {
    padding: 1rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--yellow-primary);
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

/* Password Input */
.form-floating .password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    color: var(--medium-gray);
    background: #fff;
    z-index: 1;
}

.divider-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    right: -50px;
    height: 1px;
    background: #eee;
    z-index: -1;
}

.social-auth-buttons .btn {
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.social-auth-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.text-gold {
    color: var(--yellow-primary) !important;
}

.auth-card .form-check-input:checked {
    background-color: var(--yellow-primary);
    border-color: var(--yellow-primary);
}

.password-strength {
    font-size: 0.875rem;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    footer,
    .btn,
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
