:root {
    /* Brand Colors */
    --primary: #FFD700;
    /* Vivid Yellow */
    --primary-dark: #E6C200;
    --secondary: #111111;
    /* Deep Black */
    --text-main: #2C2C2C;
    --text-light: #666666;
    --bg-body: #F7F8FA;
    --white: #FFFFFF;
    --border: #E0E0E0;
    --success: #28a745;
    --danger: #dc3545;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.5;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .location i {
    color: var(--primary);
    margin-right: 5px;
}

.top-links a {
    color: #ccc;
    margin-left: 20px;
    font-weight: 300;
}

.top-links a:hover {
    color: var(--primary);
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    /* Logo - Search - Actions */
    gap: 40px;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    /* Adjust based on actual logo ratio */
}

/* Search Bar */
.search-bar-container {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    /* Search bar rounded */
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--secondary);
    /* Focus black like Tul/Nike */
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    transition: var(--transition);
}

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

/* Header Actions */
.header-actions {
    display: flex;
    gap: 25px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
}

.action-item i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.action-item:hover {
    color: var(--primary-dark);
    /* Maybe simpler color hover */
}

.cart-btn .icon-badge {
    position: relative;
}

.badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Navigation */
.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.nav-list {
    display: flex;
    gap: 30px;
    overflow-x: auto;
}

.nav-list li a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-list li a i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--secondary);
    border-bottom-color: var(--primary);
}

/* Hero Section */
.hero-section {
    padding: 30px 0;
}

.hero-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero-content .highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px 30px;
    font-weight: 800;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

/* Abstract Decoration in Hero */
.hero-decoration {
    position: absolute;
    right: -50px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 1;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cat-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.category-card:hover .cat-icon {
    color: var(--primary);
    /* Icon becomes yellow on hover */
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Section Backgrounds */
.bg-light {
    background-color: #F0F2F5;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    /* Box shadow is key for the premium feel */
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    /* Prepare for hover border */
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--border);
    /* Slightly darker border on hover helps definition */
}

.product-image {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 220px;
}

.placeholder-img {
    width: 100%;
    border-radius: var(--radius-sm);
}

.tag-discount,
.tag-new {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.tag-discount {
    background-color: var(--danger);
    color: var(--white);
}

.tag-new {
    background-color: var(--primary);
    color: var(--secondary);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.brand {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
    /* Pushes price down */
}

.price-box {
    margin-bottom: 15px;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.85rem;
}

.current-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.add-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.add-cart-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    /* Inverted brand colors */
}

/* Footer */
.main-footer {
    background-color: var(--secondary);
    color: #aeaeae;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white if transparent, or keep if yellow looks good on black */
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: var(--primary);
    border: none;
    padding: 0 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-grid {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .search-bar-container {
        grid-column: 1 / -1;
        order: 3;
    }

    .hero-banner {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }


    .hero-content {
        max-width: 100%;
    }
}

/* =========================================
   ADMIN DASHBOARD STYLES
   ========================================= */

/* Admin Layout */
.admin-body {
    background-color: #F4F6F8;
    /* Slightly darker/greyer for admin bg */
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
}

.sidebar-header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.sidebar-brand span {
    color: var(--primary);
}

.sidebar-menu {
    padding: 20px 0;
    flex-grow: 1;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #aeb4b9;
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 4px solid transparent;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-left-color: var(--primary);
}

.sidebar-menu li a i {
    font-size: 1.3rem;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

/* Main Content */
.admin-main {
    flex-grow: 1;
    margin-left: 260px;
    /* Width of sidebar */
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.admin-title p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

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

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.15);
    /* Light yellow */
    color: #bfa300;
    /* Dark yellow/gold */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

/* Content Card (Table/Form Container) */
.content-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 0;
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 15px 25px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background-color: #FAFBFC;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.data-table td {
    font-size: 0.95rem;
}

.tbl-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tbl-thumb {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 4px;
    object-fit: cover;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-active {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.actions-cell {
    display: flex;
    gap: 10px;
}

.action-icon {
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.action-icon:hover {
    color: var(--primary);
}

.action-icon.delete:hover {
    color: var(--danger);
}


/* Modal / Overlay for Forms */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.modal-content {
    background-color: var(--white);
    width: 500px;
    max-width: 90%;
    max-height: 90vh;
    /* Limit height */
    display: flex;
    flex-direction: column;
    /* Organize header/body */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    /* Header stays fixed */
}

/* ... */

.modal-body {
    padding: 25px;
    overflow-y: auto;
    /* Scrollable content */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
}

/* =========================================
   AUTH PAGE STYLES (Login/Register)
   ========================================= */

.auth-body {
    background-color: #f7f9fc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

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

.auth-image-side {
    width: 40%;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 40px;
    text-align: center;
    position: relative;
}

.auth-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/img/logo.png') no-repeat center;
    background-size: contain;
    opacity: 0.05;
}

.auth-image-side h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.auth-image-side p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.auth-form-side {
    width: 60%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.auth-tab {
    padding-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.auth-tab.active {
    color: var(--secondary);
    border-bottom-color: var(--primary);
}

.auth-form {
    display: none;
    /* Hidden by default */
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

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

.btn-block {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
}


/* Responsive Auth */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-image-side {
        width: 100%;
        padding: 30px;
        min-height: 150px;
    }

    .auth-form-side {
        width: 100%;
    }
}

/* =========================================
   CART PAGE STYLES
   ========================================= */

.cart-layout {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.cart-items-col {
    flex: 2;
}

.cart-summary-col {
    flex: 1;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 15px 0;
    border-bottom: 2px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.cart-table td {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-thumb {
    width: 80px;
    height: 80px;
    background-color: #f4f4f4;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 100px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-main);
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 600;
}

.cart-summary-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.empty-cart-msg {
    text-align: center;
    padding: 60px;
    color: #888;
}

@media (max-width: 768px) {
    .cart-layout {
        flex-direction: column;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    z-index: 2000;
}

.whatsapp-float {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg);
    color: white;
}

.whatsapp-msg-bubble {
    background: white;
    padding: 8px 15px;
    border-radius: 20px 20px 0 20px;
    box-shadow: var(--shadow-md);
    margin-right: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-float-container:hover .whatsapp-msg-bubble {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* =========================================
   MAINTENANCE / COMING SOON STYLES
   ========================================= */

.maintenance-page {
    background-color: var(--secondary);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    /* Change from center to flex-start to allow scrolling if content overflows */
    justify-content: center;
    overflow-y: auto;
    /* Allow scrolling if content is taller than screen */
    position: relative;
    margin: 0;
    padding: 40px 20px;
}

.maintenance-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    z-index: 10;
}

.maintenance-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.maintenance-logo {
    margin-bottom: 30px;
    display: block;
}

.maintenance-logo img {
    height: 90px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.15));
    object-fit: contain;
}

.maintenance-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.maintenance-content h1 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 400;
}

.maintenance-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.maintenance-content p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.maintenance-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.m-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.m-feat i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
}

.m-feat span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maintenance-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.maintenance-footer .copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

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

@media (max-width: 600px) {
    .maintenance-content {
        padding: 40px 20px;
    }

    .maintenance-content h2 {
        font-size: 1.8rem;
    }

    .maintenance-features {
        gap: 20px;
    }
}