:root {
    /* Main Design Colors - Three Color System */
    --theme-color: #ff4e50;
    /* The Dynamic Accent Color */
    --theme-black: #111111;
    /* Deep Black */
    --theme-white: #ffffff;
    /* Pure White */

    /* Neutral Palette for UI Depth */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-800: #343a40;

    /* Semantic Variables linked to Theme */
    --accent-color: var(--theme-color);
    --primary-color: var(--theme-color);
    /* Backward compatibility */
    --white: var(--theme-white);
    --black: var(--theme-black);
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Semantic Colors */
    --text-main: var(--black);
    --text-muted: var(--gray-600);
    --border-color: var(--gray-200);
    --bg-light: var(--gray-100);

    /* Shadows & Transitions */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.1);
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

a {
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
}

/* --- Layout Components --- */

.section-padding {
    padding: 50px 0;
}

.bg-soft {
    background-color: var(--gray-100);
}

/* --- Navigation & Navbar --- */

.main-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
}

/* Scrolled State */
.main-header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Large Container */
.container-custom {
    max-width: 1850px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 1900px) {
    .container-custom {
        max-width: 95%;
    }
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-header.header-scrolled .logo,
.main-header.header-solid .logo {
    color: var(--black);
}

/* Navigation Menu */
.main-nav {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
}

.main-nav a {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

.main-header.header-scrolled .main-nav a,
.main-header.header-solid .main-nav a {
    color: var(--black);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

/* Header Icons & Actions */
.header-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-icon {
    color: var(--white);
    font-size: 20px;
    position: relative;
}

.main-header.header-scrolled .header-icon,
.main-header.header-solid .header-icon {
    color: var(--black);
}

.header-icon:hover {
    color: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

/* Header Search */
.header-search {
    position: relative;
}

.header-search-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 0;
}

.main-header.header-scrolled .header-search-form,
.main-header.header-solid .header-search-form {
    border-color: var(--gray-300);
}

.header-search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--white);
    width: 0;
    transition: width 0.4s ease;
}

.main-header.header-scrolled .header-search-input,
.main-header.header-solid .header-search-input {
    color: var(--black);
}

.header-search:hover .header-search-input,
.header-search-input:focus {
    width: 180px;
}

.header-search-btn {
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 18px;
}

/* Solid Header Variant */
.main-header.header-solid {
    background: var(--white);
    position: sticky;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 220px;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-hover);
    border-radius: 12px;
    overflow: hidden;
    padding: 10px 0;
}

.account-dropdown:hover .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
}

.account-link i {
    font-size: 16px;
    color: var(--gray-400);
}

.account-link:hover {
    background: var(--bg-light);
    color: var(--accent-color);
}

.account-link:hover i {
    color: var(--accent-color);
}

/* --- Consolidated Components --- */

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0;
}

/* Premium Product Card */
.product-card {
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
    padding-top: 130%;
    border-radius: 16px;
    margin: 10px;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-img-hover {
    opacity: 0;
    transform: scale(1.1);
}

.product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1);
}

.product-card:hover .product-img-primary {
    opacity: 0;
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    font-size: 16px;
}

.action-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 78, 80, 0.3);
}

.action-btn.btn-cart {
    background: var(--accent-color);
    color: var(--white);
    width: auto;
    padding: 0 20px;
    font-weight: 700;
    font-size: 0.85rem;
    gap: 8px;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    z-index: 5;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 78, 80, 0.3);
}

.product-badge.featured {
    background: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 15px 20px 25px;
    text-align: center;
}

.product-cat {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-weight: 800;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.current-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--black);
}

.old-price {
    color: var(--gray-500);
    text-decoration: line-through;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Glassmorphism Elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* --- Mobile Menu --- */

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    transition: left 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 40px 30px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.mobile-nav-panel.active {
    left: 0;
}

/* --- Footer - Material Design --- */

/* Footer Container - Matches header alignment */
.footer-container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1900px) {
    .footer-container {
        max-width: 95%;
        padding: 0 20px;
    }
}

/* Main Footer Wrapper */
.footer-material {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: rgba(255, 255, 255, 0.7);
}

/* Confidence Bar - Elevated Section */
.confidence-bar {
    background: linear-gradient(135deg, rgba(255, 78, 80, 0.08) 0%, rgba(255, 78, 80, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.confidence-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.confidence-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 78, 80, 0.2);
    transform: translateY(-2px);
}

.confidence-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 78, 80, 0.15) 0%, rgba(255, 78, 80, 0.05) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.confidence-icon i {
    font-size: 22px;
    color: var(--accent-color);
}

.confidence-content h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: 0.3px;
}

.confidence-content span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    display: block;
}

/* Main Footer Section */
.footer-main {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 2fr 1.2fr;
    gap: 60px;
}

/* Brand Section */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
    margin-top: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 78, 80, 0.25);
}

/* Footer Links Group */
.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-col {
    padding-left: 20px;
}

.footer-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: rgba(255, 78, 80, 0.5);
    border-radius: 1px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 14px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-nav a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-nav a:hover::before {
    width: 12px;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
}

.newsletter-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 25px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 78, 80, 0.1);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 18px;
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: 'Jost', sans-serif;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input-group button {
    background: var(--accent-color);
    border: none;
    padding: 0 22px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input-group button:hover {
    background: #ff6163;
}

.newsletter-input-group button i {
    font-size: 14px;
}

/* Payment Methods */
.payment-methods {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icons img,
.payment-icons i {
    height: 20px;
    font-size: 22px;
    filter: grayscale(1) brightness(0.6);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.payment-icons .nagad-icon {
    filter: brightness(0) invert(1);
    opacity: 0.4;
}

.payment-icons img:hover,
.payment-icons i:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links .divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .confidence-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-logo::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-links-col {
        padding-left: 0;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .confidence-bar {
        padding: 30px 0;
    }

    .confidence-item {
        padding: 12px 15px;
    }

    .confidence-icon {
        width: 44px;
        height: 44px;
    }

    .confidence-icon i {
        font-size: 18px;
    }

    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .confidence-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-links-group {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* --- Global Utilities --- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline {
    border-color: var(--black);
    color: var(--black);
    background: transparent;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 991px) {

    .main-nav,
    .header-search {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
        color: var(--white);
    }

    .main-header.header-scrolled .mobile-toggle,
    .main-header.header-solid .mobile-toggle {
        color: var(--black);
    }

    .header-container {
        padding: 0 20px;
    }
}

/* --- Authentication Pages --- */
.modern-auth-wrapper {
    min-height: 90vh;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-split-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    min-height: 600px;
}

.auth-form-side {
    flex: 1.2;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-visual-side {
    flex: 1;
    background: var(--black);
    color: var(--white);
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-visual-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 78, 80, 0.1) 0%, transparent 70%);
}

.auth-header .section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.auth-header .section-subtitle {
    color: var(--gray-500);
    font-size: 14px;
}

/* Auth Forms */
.modern-form .form-group {
    margin-bottom: 15px;
}

.modern-form .form-label {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 52%;
    transform: translateY(-50%);
    color: var(--gray-400);
    transition: var(--transition-base);
    font-size: 14px;
}

.modern-form .form-control {
    height: 55px;
    padding: 10px 20px 10px 50px !important;
    border: 2px solid var(--gray-200) !important;
    border-radius: 12px !important;
    font-weight: 500;
    transition: var(--transition-base) !important;
    background: var(--white) !important;
    font-family: 'Jost', sans-serif !important;
}

.modern-form .form-control:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 78, 80, 0.05) !important;
}

.modern-form .form-control:focus+.input-icon {
    color: var(--accent-color);
}

/* Buttons */
.btn-modern {
    height: 55px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition-base);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.btn-modern.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-modern.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 78, 80, 0.2);
}

.link-primary {
    color: var(--accent-color);
    font-weight: 700;
}

.link-primary:hover {
    color: var(--black);
}

/* OTP Styling */
.otp-inputs-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.otp-box {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    transition: var(--transition-base);
    background: var(--gray-100);
}

.otp-box:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 78, 80, 0.05);
    background: var(--white);
}

.visual-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.visual-content p {
    font-size: 18px;
    opacity: 0.8;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    background: var(--white);
    flex-shrink: 0;
}

.custom-checkbox input:checked+.checkmark {
    background: var(--black);
    border-color: var(--black);
}

.checkmark::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
    font-size: 10px;
    display: none;
}

.custom-checkbox input:checked+.checkmark::after {
    display: block;
}

.custom-checkbox:hover .checkmark {
    border-color: var(--accent-color);
}

@media (max-width: 991px) {
    .auth-visual-side {
        display: none;
    }

    .auth-split-container {
        max-width: 500px;
    }

    .auth-form-side {
        padding: 40px;
    }
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-reveal-right {
    animation: revealRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Delay Utilites */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}


/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--black);
    transform: translateY(-5px);
}