/* ============================================
   ONLINE MEDICINE STORE - MODERN UI
   Version 6.3 - Carousel Scroll Disabled
============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #00d4d4;
    --primary-dark: #1a1a1a;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --star-color: #ffc107;
    --success-green: #00d4aa;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
}

input, textarea, button {
    font-family: inherit;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-cyan);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b8b8;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

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

.contact-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-cyan);
}

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

.social-links a {
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 25px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 9999;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    padding: 8px 12px;
    font-size: 0.88rem;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
}

.search-suggestion-item img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f0f0f0;
}

.suggestion-img-fallback {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #f0fafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00d4d4;
    font-size: 0.9rem;
}

.search-suggestion-item span:last-child {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-item:hover,
.search-suggestion-item.highlighted {
    background: #f0fafa;
    color: #00d4d4;
}

.search-suggestion-item i {
    color: #00d4d4;
    font-size: 0.8rem;
}

.search-box:focus-within {
    background: var(--white);
    box-shadow: 0 0 0 2px var(--primary-cyan);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    padding: 0 10px;
    width: 150px;
    font-size: 0.85rem;
}

.search-box button {
    background: none;
    border: none;
    color: var(--primary-cyan);
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.search-box button:hover {
    transform: scale(1.1);
}

.cart-icon {
    position: relative;
    color: var(--text-dark);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

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

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

.user-icon {
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.user-icon:hover {
    color: var(--primary-cyan);
    background: rgba(0, 212, 212, 0.05);
}

.user-icon i {
    font-size: 1.1rem;
}

.dropdown {
    position: relative;
}

.dropdown .user-icon::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown.active .user-icon::after {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    top: calc(100% + 8px);
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 212, 212, 0.1);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(0, 212, 212, 0.1);
    border-top: 1px solid rgba(0, 212, 212, 0.1);
}

.dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
}

.dropdown-content a:hover {
    background: linear-gradient(90deg, rgba(0, 212, 212, 0.08) 0%, rgba(0, 212, 212, 0.02) 100%);
    color: var(--primary-cyan);
    padding-left: 24px;
}

.dropdown-content a:hover i {
    transform: translateX(3px);
}

.dropdown-content a[href*="logout"] {
    color: #dc3545;
    margin-top: 4px;
    background: rgba(220, 53, 69, 0.03);
}

.dropdown-content a[href*="logout"]:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.dropdown-content a[href*="logout"] i {
    color: #dc3545;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #00d4d4 0%, #00b8e6 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--white);
    display: block;
    font-weight: 800;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-shop {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-dark);
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pills-image {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.feature-item:hover .feature-icon {
    background: var(--primary-cyan);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
    background: var(--primary-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.discount-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discount-text {
    color: var(--white);
}

.discount-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.discount-highlight {
    color: var(--primary-cyan);
}

.discount-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-get-now {
    display: inline-block;
    background: var(--primary-cyan);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-get-now:hover {
    background: #00b8b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,212,212,0.3);
}

.discount-image {
    text-align: center;
}

.discount-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.products-section.vitamins-section {
    background: var(--white);
}

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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-blue {
    color: var(--primary-cyan);
}

.section-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    background: var(--primary-cyan);
    transform: scale(1.1);
}

.products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    min-width: 250px;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4444;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}

.product-rating i {
    color: var(--star-color);
    font-size: 0.9rem;
}

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

.product-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

.product-price .old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.btn-buy-now {
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-buy-now:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
}

/* ===== VIEW ALL BUTTON ===== */
.view-all-center {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-view-all:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,212,212,0.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-read-more {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-read-more:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-cyan);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-cyan);
}

/* ===== CALLBACK SECTION ===== */
.callback-section {
    padding: 80px 0;
    background: var(--white);
}

.callback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.callback-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.callback-form input,
.callback-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.callback-form input:focus,
.callback-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.callback-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    align-self: flex-start;
}

.btn-send:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,212,212,0.3);
}

.callback-banner {
    background: linear-gradient(135deg, #00d4d4 0%, #00b8e6 100%);
    border-radius: 15px;
    padding: 60px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.callback-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.callback-banner p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-grid,
    .discount-content,
    .about-content,
    .callback-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .discount-text h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .product-card {
        min-width: 220px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .callback-banner {
        padding: 40px 30px;
    }
    
    .callback-banner h2 {
        font-size: 2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.product-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section i {
    color: var(--primary-cyan);
    margin-right: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    background: var(--primary-cyan);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.newsletter-form button:hover {
    background: #00b8b8;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    header nav {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
    }
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px dashed #90caf9;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

.img-placeholder-icon {
    font-size: 3rem;
    color: #64b5f6;
    margin-bottom: 10px;
    z-index: 1;
}

.img-placeholder-text {
    font-size: 0.9rem;
    color: #1976d2;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.img-placeholder-subtext {
    font-size: 0.75rem;
    color: #64b5f6;
    margin-top: 5px;
    z-index: 1;
}

/* Hero placeholder */
.hero-placeholder {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.hero-placeholder-icon {
    font-size: 8rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.hero-placeholder-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Discount banner placeholder */
.discount-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-placeholder-content {
    text-align: center;
}

.discount-placeholder-icon {
    font-size: 6rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.discount-placeholder-text {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Product placeholder */
.product-image .img-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border: 2px dashed #bdbdbd;
}

.product-image .img-placeholder-icon {
    font-size: 4rem;
    color: #9e9e9e;
}

.product-image .img-placeholder-text {
    color: #757575;
    font-size: 0.8rem;
}

/* About placeholder */
.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed #81c784;
}

.about-placeholder-icon {
    font-size: 5rem;
    color: #66bb6a;
    margin-bottom: 15px;
}

.about-placeholder-text {
    color: #388e3c;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Testimonial avatar placeholder */
.author-avatar.placeholder {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00b8e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-page-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

.about-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 212, 0.3) 50%, transparent 100%);
}

.about-page-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.about-page-section .section-title {
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.about-page-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-cyan) 50%, transparent 100%);
    border-radius: 2px;
}

.about-page-image {
    max-width: 450px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00b8e6 50%, var(--primary-cyan) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-page-image:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(0, 212, 212, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

.about-page-image:hover::before {
    opacity: 1;
}

.vitamins-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page-image:hover .vitamins-image {
    transform: scale(1.02);
}

.about-page-text {
    max-width: 850px;
    width: 100%;
    margin: 0 auto 45px;
    text-align: center;
    padding: 0 20px;
}

.about-page-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    position: relative;
    padding: 30px 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-cyan);
    transition: all 0.3s ease;
    margin: 0;
    text-align: left;
}

.about-page-text p:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 212, 0.1);
    transform: translateY(-2px);
}

.about-page-text p::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 2.5rem;
    color: var(--primary-cyan);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.about-page-button {
    text-align: center;
    margin-top: 35px;
}

.about-page-button .btn-read-more {
    display: inline-block;
    padding: 14px 45px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.about-page-button .btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan) 0%, #00b8e6 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.about-page-button .btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 212, 0.4);
    color: white;
}

.about-page-button .btn-read-more:hover::before {
    left: 0;
}

.about-page-button .btn-read-more:active {
    transform: translateY(-1px);
}

/* Animaciones de entrada */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-page-section {
        padding: 70px 0 90px;
    }
    
    .about-page-image {
        max-width: 400px;
        padding: 35px;
    }
    
    .vitamins-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 50px 0 70px;
    }
    
    .about-page-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .about-page-image {
        max-width: 350px;
        padding: 30px 25px;
        margin-bottom: 35px;
    }
    
    .vitamins-image {
        max-height: 250px;
    }
    
    .about-page-text {
        padding: 0 15px;
    }
    
    .about-page-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 25px 20px;
    }
    
    .about-page-button .btn-read-more {
        padding: 13px 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-page-section .section-title {
        font-size: 1.6rem;
    }
    
    .about-page-image {
        max-width: 300px;
        padding: 25px 20px;
    }
    
    .vitamins-image {
        max-height: 220px;
    }
    
    .about-page-text {
        padding: 0 15px;
    }
    
    .about-page-text p {
        padding: 22px 18px;
        font-size: 0.9rem;
    }
}

/* Ready for additional styles */

/* ===== CONTACT PAGE ===== */
.contact-page-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    min-height: calc(100vh - 200px);
}

.contact-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.page-subtitle {
    font-size: 1.05rem;
    color: #666;
    font-weight: 400;
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 212, 212, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-contact {
    width: 100%;
    padding: 14px 30px;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-contact:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 212, 0.3);
}

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

/* Contact Info */
.contact-info-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 212, 212, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00b8e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-page-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 40px 0 60px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 30px 25px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .form-title,
    .info-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container,
    .contact-info-container {
        padding: 25px 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
}
/* ===== PRODUCTS PAGE ===== */
.products-page-section {
    padding: 50px 0 70px;
    background: #f8f8f8;
    min-height: calc(100vh - 200px);
}

.products-category-section {
    margin-bottom: 60px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.products-category-section:last-of-type {
    margin-bottom: 40px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
}

.products-count-info {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.category-nav {
    display: none;
}

.nav-arrow {
    display: none;
}

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

.product-card-page {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-badge-page {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-dark);
    color: white;
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    border-radius: 8px 0 8px 0;
}

.product-image-wrapper-page {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 25px;
    position: relative;
}

.product-placeholder-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-radius: 6px;
    border: 2px dashed #d5d5d5;
    color: #999;
}

.product-placeholder-page i {
    font-size: 2.8rem;
    margin-bottom: 8px;
    opacity: 0.5;
}

.product-placeholder-page span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.product-info-page {
    padding: 18px 16px;
    text-align: center;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-rating-page {
    margin-bottom: 10px;
}

.product-rating-page .stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.product-rating-page .stars i {
    color: #ffc107;
    font-size: 0.85rem;
}

.product-rating-page .stars i.far {
    color: #e0e0e0;
}

.product-category-page {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-price-page {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-symbol {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Pagination Section */
.pagination-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e8e8e8;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover,
.pagination-number:hover {
    background: var(--primary-cyan);
    color: white;
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 212, 0.3);
}

.pagination-number.active {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
    cursor: default;
}

.pagination-number.active:hover {
    transform: none;
    box-shadow: none;
}

.pagination-dots {
    color: #999;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0 10px;
    cursor: default;
}

.pagination-prev,
.pagination-next {
    font-size: 0.9rem;
}

.pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-page-section {
        padding: 40px 0 60px;
    }
    
    .products-category-section {
        padding: 30px 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .products-count-info {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .products-count-info {
        align-self: flex-start;
    }
    
    .products-category-section {
        padding: 25px 20px;
    }
    
    .product-image-wrapper-page {
        height: 160px;
        padding: 18px;
    }
    
    .product-placeholder-page i {
        font-size: 2.2rem;
    }
    
    .pagination-btn,
    .pagination-number {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .product-info-page {
        padding: 12px;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .pagination-btn,
    .pagination-number {
        min-width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .pagination-dots {
        padding: 0 4px;
    }
}

/* ============================================
   LOGIN PAGE STYLES
============================================ */

.login-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f8f8 100%);
    padding: 40px 20px;
}

.login-container {
    width: 100%;
    max-width: 480px;
}

.login-box {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 212, 212, 0.08);
    padding: 48px 40px;
    animation: slideUpFade 0.5s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.login-title {
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 700;
}

.login-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 15px;
}

/* Alert Messages */
.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background: #fee;
    color: #c33;
    border-left: 4px solid #c33;
}

.alert-success {
    background: #e8f8f5;
    color: #00a878;
    border-left: 4px solid #00a878;
}

.alert i {
    font-size: 16px;
}

/* Login Form */
.login-form .form-group {
    margin-bottom: 24px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 212, 212, 0.08);
    background-color: var(--white);
}

.input-wrapper input:focus ~ .input-icon {
    color: var(--primary-cyan);
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    pointer-events: auto;
}

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

.forgot-password {
    text-align: right;
    margin-bottom: 24px;
}

.forgot-password a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: var(--primary-cyan);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: var(--primary-cyan);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-login:hover {
    background: #00bfbf;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 212, 0.3);
}

.btn-login:hover::before {
    left: 100%;
}

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

.login-divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    position: relative;
    background: var(--white);
    padding: 0 16px;
    color: var(--text-light);
    font-size: 14px;
}

.login-footer {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
}

.login-footer a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #00bfbf;
}

.back-home-link {
    text-align: center;
    margin-top: 24px;
}

.back-home-link a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-home-link a:hover {
    opacity: 1;
    color: var(--primary-cyan);
}

/* Login Page - Hide Header/Footer */
body.login-page header,
body.login-page footer {
    display: none;
}

/* Responsive Login */
@media (max-width: 576px) {
    .login-box {
        padding: 36px 24px;
    }
    
    .login-title {
        font-size: 26px;
    }
    
    .login-subtitle {
        font-size: 14px;
    }
    
    .login-logo {
        width: 80px;
        height: 80px;
    }
}