/* ====== Products Page Styles ====== */

/* Clean background without image */
body.products-page {
    background: 
        radial-gradient(circle at 20% 80%, rgba(196, 98, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(109, 122, 66, 0.1) 0%, transparent 50%),
        #fafafa;
    min-height: 100vh;
    position: relative;
    color: #1f2937;
}

/* Ensure main content is transparent to show background */
.main-content {
    background: transparent;
}

/* Removed overlay to eliminate circular effect */

/* ====== Hero Section ====== */
.hero-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #1f2937 !important;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: #1f2937 !important;
}

.hero-text {
    color: #1f2937 !important;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #1f2937 !important;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #374151 !important;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px var(--shadow-yellow);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-yellow);
}

.cta-btn.secondary {
    background: var(--glass-bg-dark);
    color: var(--text-light);
    border: 1px solid var(--glass-border-dark);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-green);
}

/* ====== Product Showcase ====== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.showcase-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-dark);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glass);
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item i {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #c4623b;
}

.showcase-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px var(--shadow-yellow);
    background: var(--gradient-primary);
}

.showcase-item:hover i {
    color: white;
}

.showcase-item:nth-child(1) {
    top: 20px;
    left: 50px;
    animation: float 3s ease-in-out infinite;
}

.showcase-item:nth-child(2) {
    top: 120px;
    right: 20px;
    animation: float 3s ease-in-out infinite 1s;
}

.showcase-item:nth-child(3) {
    bottom: 120px;
    left: 20px;
    animation: float 3s ease-in-out infinite 2s;
}

.showcase-item:nth-child(4) {
    bottom: 20px;
    right: 50px;
    animation: float 3s ease-in-out infinite 0.5s;
}

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

/* ====== Quiz Section ====== */
.quiz-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

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

.quiz-header {
    text-align: center;
    margin-bottom: 60px;
}

.quiz-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quiz-header h2 i {
    color: #c4623b;
}

.quiz-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Quiz Action Button */
.quiz-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.quiz-main-btn {
    background: linear-gradient(135deg, #c4623b 0%, #6d7a42 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(196, 98, 59, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quiz-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 98, 59, 0.4);
    background: linear-gradient(135deg, #6d7a42 0%, #c4623b 100%);
}

.quiz-main-btn:active {
    transform: translateY(-1px);
}

.quiz-main-btn i {
    font-size: 1.4rem;
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.quiz-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quiz-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.quiz-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c4623b 0%, #6d7a42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(196, 98, 59, 0.3);
}

.quiz-icon i {
    font-size: 2rem;
    color: white;
}

.quiz-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.quiz-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.quiz-difficulty {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.quiz-btn {
    background: linear-gradient(135deg, #c4623b 0%, #6d7a42 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 98, 59, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 98, 59, 0.4);
}

.quiz-btn i {
    font-size: 1.1rem;
}

/* ====== Products Section ====== */
.products-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

/* ====== Product Carousel ====== */
.product-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: transparent;
}

.carousel-slide.active {
    opacity: 1;
}

.product-panel-left {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 98, 59, 0.3) 0%, rgba(109, 122, 66, 0.3) 100%);
    border-right: 1px solid rgba(196, 98, 59, 0.25);
}

.product-panel-right {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.product-info {
    max-width: 400px;
    color: #ffffff;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #c4623b;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
}

.product-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.product-rating span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-left: 10px;
    font-weight: 600;
}

.product-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

/* ====== Carousel Navigation ====== */
.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #c4623b;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ====== Products Grid ====== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 350px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Solid background colors for each product card */
.mobile-card {
    background: #000000;
}

.web-card {
    background: #FFD700;
}

.audio-card {
    background: #FF0000;
}

.vr-card {
    background: #FFFFFF;
}

.wearable-card {
    background: #00FF00;
}

.earbuds-card {
    background: #0000FF;
}

.gaming-card {
    background: #FFA500;
}

.speaker-card {
    background: #800080;
}

.tablet-card {
    background: #FF69B4;
}

.product-image {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.product-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    pointer-events: none;
}

.product-text-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-text-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.product-text-overlay .product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.product-text-overlay .product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-text-overlay .product-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.product-text-overlay .product-rating span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-left: 5px;
}

.add-to-cart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: all;
}

.add-to-cart-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
}

/* Hide add to cart buttons on main-public page */
.main-public-page .add-to-cart-btn,
body.main-public-page .add-to-cart-btn {
    display: none !important;
    visibility: hidden !important;
}

/* See More Section */
.see-more-section {
    text-align: center;
    margin-top: 40px;
}

.see-more-btn {
    background: linear-gradient(135deg, #c4623b 0%, #6d7a42 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(196, 98, 59, 0.3);
}

.see-more-btn:hover {
    background: linear-gradient(135deg, #6d7a42 0%, #c4623b 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(109, 122, 66, 0.4);
}

/* ====== Shopping Cart ====== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border-dark);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 20px;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item-info .price {
    color: #c4623b;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: rgba(239, 68, 68, 0.1);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border-dark);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover:not(:disabled) {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* ====== Responsive Design ====== */
@media screen and (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .product-showcase {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .cart-sidebar {
        width: 350px;
        right: -350px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 100px 15px 60px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .product-showcase {
        width: 250px;
        height: 250px;
    }
    
    .showcase-item {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    .showcase-item i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Carousel responsive */
    .carousel-container {
        height: 400px;
    }
    
    .carousel-slide {
        flex-direction: column;
    }
    
    .product-panel-left {
        padding: 30px 20px;
        flex: none;
        height: 60%;
    }
    
    .product-panel-right {
        padding: 20px;
        flex: none;
        height: 40%;
    }
    
    .product-name {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .product-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .product-price {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .carousel-nav {
        bottom: 10px;
        padding: 10px 20px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media screen and (max-width: 600px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin: 0 10px;
    }
}

/* ====== Login Popup Modal ====== */
.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.login-popup-modal {
    position: relative;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.3s ease;
}

.login-popup-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 95%;
    min-width: 320px;
    max-height: 85vh;
    overflow-y: auto;
}

.login-popup-header {
    background: linear-gradient(135deg, #c4623b 0%, #6d7a42 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.login-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.login-popup-body {
    padding: 30px 35px;
}

.login-popup-body > p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1rem;
    text-align: center;
}

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

.login-popup-body .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.login-popup-body .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(196, 98, 59, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-popup-body .form-group input:focus {
    outline: none;
    border-color: #c4623b;
    box-shadow: 0 0 0 3px rgba(196, 98, 59, 0.1);
}

.sample-account-info {
    background: rgba(196, 98, 59, 0.1);
    border: 1px solid rgba(196, 98, 59, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.sample-account-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.sample-account-info code {
    background: rgba(196, 98, 59, 0.15);
    padding: 2px 8px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #c4623b;
    font-weight: 600;
}

.fill-sample-btn {
    background: linear-gradient(135deg, #c4623b 0%, #6d7a42 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fill-sample-btn:hover {
    background: linear-gradient(135deg, #6d7a42 0%, #c4623b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 98, 59, 0.3);
}

.popup-login-btn {
    width: 100%;
    background: linear-gradient(135deg, #c4623b 0%, #6d7a42 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(196, 98, 59, 0.3);
}

.popup-login-btn:hover {
    background: linear-gradient(135deg, #6d7a42 0%, #c4623b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 98, 59, 0.4);
}

.popup-login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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