/* Variáveis CSS */
:root {
    --primary-purple: #6f42c1;
    --light-purple: #8b5cf6;
    --dark-purple: #5a2d91;
    --accent-purple: #e9ecef;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --border-light: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Minimalista */
.header-minimal {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0;
    letter-spacing: -0.025em;
}

/* Search Container */
.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-light);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

/* Cart Button */
.cart-button {
    position: relative;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    transition: all 0.2s ease;
    cursor: pointer;
}

.cart-button:hover {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Filters Section */
.filters-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.filter-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

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

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-purple);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.2s ease;
    cursor: pointer;
}

.favorite-btn:hover,
.favorite-btn.active {
    background: var(--primary-purple);
    color: white;
}

.product-content {
    padding: 2rem 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: var(--dark-purple);
    color: white;
    transform: translateY(-1px);
}

/* Variations Modal */
.variations-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.variations-modal .modal-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
}

.variations-modal .modal-body {
    padding: 1.5rem;
}

.product-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.variation-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-info {
    flex: 1;
}

.product-info h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.variation-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.variation-options {
    margin-bottom: 1.5rem;
}

.variation-group {
    margin-bottom: 1rem;
}

.variation-group:last-child {
    margin-bottom: 0;
}

.variation-label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.variation-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.variation-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.quantity-selector {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.quantity-controls-modal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.quantity-btn:hover {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.quantity-input-modal {
    width: 60px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.variations-modal .modal-footer {
    background: var(--bg-gray);
    border-top: 1px solid var(--border-light);
    padding: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer */
.footer-minimal {
    background: var(--text-dark);
    color: var(--text-light);
}

.footer-text {
    margin: 0;
    font-size: 0.9rem;
}

/* Cart Modal */
.cart-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.cart-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
}

.cart-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

/* Checkout Progress Steps */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-light);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 60%;
    right: -40%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.step.active:not(:last-child)::after,
.step.completed:not(:last-child)::after {
    background: var(--primary-purple);
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-purple);
    color: white;
}

.step.completed .step-number {
    background: var(--primary-purple);
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Checkout Steps */
.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
    animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--primary-purple);
    background: rgba(111, 66, 193, 0.05);
}

.payment-option .form-check-input:checked+.form-check-label {
    color: var(--primary-purple);
}

.payment-option .form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.payment-option.checked {
    border-color: var(--primary-purple);
    background: rgba(111, 66, 193, 0.05);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.form-control[readonly] {
    background-color: var(--bg-gray);
}

/* Order Summary */
.order-summary-section {
    background: var(--bg-gray);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.order-summary-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-product:last-child {
    border-bottom: none;
}

.summary-product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-product-info {
    flex: 1;
}

.summary-product-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.summary-product-details {
    font-size: 0.8rem;
    color: var(--text-light);
}

.summary-product-price {
    font-weight: 600;
    color: var(--primary-purple);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border-light);
}

.empty-cart h6 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Cart Items */
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.cart-item-variations {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0.25rem 0;
    font-style: italic;
}

.cart-item-price {
    color: var(--primary-purple);
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 0.25rem;
    font-size: 0.8rem;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remove-item-btn:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Footer */
.cart-footer {
    background: var(--bg-gray);
    border-top: 1px solid var(--border-light);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-label {
    font-weight: 500;
    color: var(--text-dark);
}

.total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    border: none;
    font-weight: 500;
    transition: all 0.2s ease;
    pointer-events: unset !important;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark-purple);
}

.btn-primary:disabled {
    background: var(--border-light);
    color: var(--text-light);
    cursor: not-allowed !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-outline-primary:hover {
    background: var(--primary-purple);
    color: white;
    border-color: var(--dark-purple);
}

.btn-outline-primary:disabled {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border-light);
    cursor: not-allowed;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-light);
    margin-bottom: 1rem;
}

/* Loading State */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-minimal .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-minimal .row {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .brand-title {
        font-size: 1.2rem;
    }

    .search-input {
        padding: 10px 12px 10px 38px;
        font-size: 1rem;
    }

    .cart-button {
        padding: 10px 12px;
        font-size: 1.1rem;
    }

    .filters-section .row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-label {
        margin-bottom: 0.25rem;
    }

    .filter-select {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .main-content {
        padding: 1.5rem 0 1rem 0;
    }

    .product-image-container {
        height: 180px;
    }

    .product-content {
        padding: 1rem;
    }

    .footer-minimal .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .modal-content.variations-modal,
    .modal-content.cart-modal {
        border-radius: 10px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {

    .step-label {
        font-size: 0.6rem;
    }

    .brand-title {
        font-size: 1rem;
    }

    .search-input {
        font-size: 0.95rem;
        padding: 8px 10px 8px 34px;
    }

    .cart-button {
        padding: 8px 10px;
        font-size: 1rem;
    }

    .product-image-container {
        height: 250px;
    }

    .product-content {
        padding: 0.75rem;
    }

    .stats-section {
        padding: 1.5rem 0;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .footer-text {
        font-size: 0.7rem;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 0.5rem !important;
    }

    .variation-product-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-image {
        width: 40px;
        height: 40px;
    }

    .summary-product-image {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 375px) {
    .brand-title {
        font-size: 0.9rem;
    }

    .search-input {
        font-size: 0.9rem;
        padding: 6px 8px 6px 28px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    .cart-button {
        padding: 6px 8px;
        font-size: 0.95rem;
    }

    .product-image-container {
        height: 200px;
    }

    .product-content {
        padding: 0.5rem;
    }

    .footer-text {
        font-size: 0.65rem;
    }
}

/* Aumentar área de toque dos botões no mobile */
@media (max-width: 480px) {

    button,
    .btn,
    .cart-button,
    .add-to-cart-btn,
    .quantity-btn,
    .remove-item-btn {
        min-height: 44px;
        min-width: 44px;
        font-size: 1rem;
    }

    .quantity-btn {
        padding: 0;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.cart-badge-animate {
    animation: bounceIn 0.4s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Toast Notifications */
.toast {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.toast-header {
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-light);
}

.toast-body {
    color: var(--text-dark);
}

/* Custom Scrollbar */
.cart-body::-webkit-scrollbar {
    width: 6px;
}

.cart-body::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border-radius: 3px;
}

.cart-body::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.cart-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Focus States */
button:focus,
input:focus,
select:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Login Page Styles - Minimalist Design */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    overflow: hidden;
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(135deg, rgba(111, 66, 193, 0.8) 0%, rgba(139, 92, 246, 0.8) 100%),
        url('/assets/img/login-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.login-form-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    padding: 0 2rem;
}

.login-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.025em;
}

.login-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: white;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s ease;
    padding: 0;
}

.password-toggle:hover {
    color: var(--primary-purple);
}

.btn-login {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    cursor: pointer;
}

.btn-login:hover {
    background: var(--dark-purple);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

.btn-forgot {
    width: 100%;
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.btn-forgot:hover {
    background: rgba(111, 66, 193, 0.05);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.btn-register {
    width: 100%;
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-register:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

.back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.back-link a:hover {
    color: var(--primary-purple);
}

/* Responsive adjustments for login page */
@media (max-width: 480px) {
    .login-form-container {
        padding: 0 1rem;
    }

    .login-form {
        padding: 2rem;
    }

    .login-header h1 {
        font-size: 1.5rem;
    }
}