/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C63FF;
    --secondary: #FF6584;
    --accent: #36D1DC;
    --dark: #1A1A2E;
    --darker: #0F0F1B;
    --light: #F5F5F7;
    --gray: #8A8AA3;
    --success: #4CAF50;
    --warning: #FF9800;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-hot: linear-gradient(135deg, var(--secondary), #FF9A3D);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-add-cart {
    background: var(--gradient-hot);
    color: white;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 101, 132, 0.3);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(108, 99, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}

.logo i {
    color: var(--primary);
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.btn-login, .btn-cart {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
}

.btn-login {
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid var(--primary);
}

.btn-cart {
    background: var(--gradient-hot);
    position: relative;
}

.cart-count {
    background: white;
    color: var(--secondary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== AUTH STYLES ===== */
.auth-container {
    min-height: 100vh;
    display: flex;
    background: linear-gradient(135deg, var(--darker), #1a1a3e);
}

.auth-card {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.auth-side {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    margin: 20px 0 10px;
    color: white;
    font-size: 2rem;
}

.auth-header p {
    color: var(--gray);
    margin-bottom: 10px;
}

.auth-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray);
    font-weight: 500;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

.show-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
}

.checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-top: 3px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.btn-auth:hover {
    transform: translateY(-2px);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    padding: 0 15px;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-social {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.btn-social.google:hover {
    background: #DB4437;
    border-color: #DB4437;
}

.btn-social.facebook:hover {
    background: #4267B2;
    border-color: #4267B2;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-benefits {
    max-width: 400px;
}

.auth-benefits h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
}

.auth-benefits li {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.auth-benefits li i {
    color: rgba(255, 255, 255, 0.8);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    opacity: 0.9;
}

.benefit-card h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 10px;
}

.strength-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 5px;
    overflow: hidden;
    position: relative;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: #f44336;
    border-radius: 3px;
    transition: width 0.3s, background 0.3s;
}

.strength-text {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Message Styles */
.message {
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    display: none;
    font-size: 0.9rem;
}

.message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.2), transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    position: absolute;
    width: 250px;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 0;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Categories */
.categories {
    padding: 100px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

/* Products */
.featured, .all-products {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-hot);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.per {
    color: var(--gray);
    font-size: 0.9rem;
}

/* How to Order */
.how-to {
    padding: 100px 0;
    background: rgba(108, 99, 255, 0.05);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* About Page */
.about-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(54, 209, 220, 0.1));
}

.about-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image .image-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.mv-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.values {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.team {
    padding: 100px 0;
    background: rgba(108, 99, 255, 0.05);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.stats-about {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Products Page */
.products-hero {
    padding: 150px 0 80px;
    text-align: center;
}

.search-bar {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--primary);
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
}

.search-bar button {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0 30px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1.2rem;
}

.filter {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray);
    border-radius: 50px;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.product-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    color: var(--primary);
}

.testimonials {
    padding: 100px 0;
    background: rgba(108, 99, 255, 0.05);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stars {
    color: #FFD700;
    margin-top: 5px;
}

/* ===== CART STYLES ===== */
.cart-container {
    padding: 120px 20px 60px;
}

.cart-header {
    margin-bottom: 40px;
}

.cart-steps {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}

.cart-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.step.active .step-number {
    background: var(--gradient);
}

.step-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.step.active .step-text {
    color: white;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.cart-items {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.item-details h4 {
    margin-bottom: 5px;
}

.item-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.item-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

.item-price .price {
    font-weight: 600;
    color: var(--primary);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary);
}

.item-quantity input {
    width: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    text-align: center;
    padding: 5px;
    font-family: 'Poppins', sans-serif;
}

.item-total .price {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    font-size: 1rem;
}

.item-remove:hover {
    color: var(--secondary);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.summary-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray);
}

.summary-row.total {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.coupon-section {
    margin: 20px 0;
}

.input-with-button {
    display: flex;
    gap: 10px;
}

.input-with-button input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.input-with-button button {
    padding: 12px 25px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--gray);
}

.customer-support {
    background: rgba(108, 99, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.customer-support h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
}

.continue-shopping {
    margin-top: 40px;
    text-align: center;
}

.continue-shopping a {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== CHECKOUT STYLES ===== */
.checkout-container {
    padding: 120px 20px 60px;
}

.checkout-steps .step.completed .step-number {
    background: #4CAF50;
}

.checkout-steps .step.completed .step-number i {
    font-size: 0.9rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.form-section h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method {
    display: flex;
    align-items: center;
}

.payment-method input {
    display: none;
}

.payment-method label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method input:checked + label {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-method strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.payment-method small {
    color: var(--gray);
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-back {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-proceed {
    padding: 12px 30px;
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.estimated-time,
.guarantee {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 15px;
}

.estimated-time i {
    color: var(--primary);
    font-size: 1.5rem;
}

.guarantee i {
    color: #4CAF50;
    font-size: 1.5rem;
}

/* ===== PAYMENT STYLES ===== */
.payment-container {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker), #1a1a3e);
}

.payment-card {
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
}

.payment-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    min-width: 80px;
}

.status-step.active {
    color: white;
}

.status-step.current {
    color: var(--primary);
}

.status-step i {
    font-size: 1.2rem;
}

.status-line {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.status-line.active {
    background: var(--primary);
}

.order-id {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    color: var(--gray);
}

.order-id strong {
    color: white;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.payment-amount {
    text-align: center;
    margin-bottom: 40px;
}

.payment-amount h3 {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.payment-amount h1 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.payment-note {
    color: var(--gray);
    margin-bottom: 20px;
}

.payment-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 101, 132, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.payment-timer i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.timer {
    text-align: left;
}

.timer strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

#countdownTimer {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.bank-details {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.bank-account {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.bank-account span {
    display: block;
    color: var(--gray);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.bank-account strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.bank-account small {
    color: var(--gray);
    font-size: 0.8rem;
}

.steps {
    padding-left: 20px;
    margin: 20px 0;
    color: var(--gray);
}

.steps li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.order-summary-payment {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.order-summary-payment h4 {
    margin-bottom: 20px;
    color: white;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-info {
    flex: 1;
}

.item-info strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.item-info small {
    color: var(--gray);
    font-size: 0.9rem;
}

.item-price {
    color: var(--primary);
    font-weight: 600;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
}

.upload-area i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.upload-area p {
    color: var(--gray);
    margin-bottom: 5px;
}

.upload-area span {
    color: var(--primary);
    font-weight: 600;
}

.upload-area small {
    color: var(--gray);
    font-size: 0.8rem;
}

.upload-preview {
    margin: 20px 0;
}

.upload-preview img {
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
}

.btn-confirm {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm:hover {
    transform: translateY(-2px);
}

.payment-note-small {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-support {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 40px;
}

.support-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.support-item i {
    font-size: 2rem;
    color: var(--primary);
}

.support-item strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.support-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-support {
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* ===== USER MENU ===== */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-btn {
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 10px;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(108, 99, 255, 0.2);
    display: none;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(108, 99, 255, 0.1);
    color: white;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

/* ===== MESSAGES & NOTIFICATIONS ===== */
.message {
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    display: none;
    font-size: 0.9rem;
}

.message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-size: 0.9rem;
}

.notification.error {
    background: #f44336;
}

/* Footer */
footer {
    background: var(--dark);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col a, .footer-col p {
    color: var(--gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col p i {
    margin-right: 10px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .cart-content,
    .checkout-content,
    .payment-content {
        grid-template-columns: 1fr;
    }
    
    .auth-container {
        flex-direction: column;
    }
    
    .auth-side {
        display: none;
    }
    
    .auth-card {
        max-width: 100%;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .item-image {
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .payment-status {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .status-line {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .payment-amount h1 {
        font-size: 2.5rem;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
// Check if user is logged in on page load
document.addEventListener('DOMContentLoaded', () => {
    const auth = new AuthSystem();
    
    // Protect pages that require login
    const protectedPages = ['dashboard.html', 'order.html', 'profile.html', 'checkout.html'];
    const currentPage = window.location.pathname.split('/').pop();
    
    if (protectedPages.includes(currentPage)) {
        const user = JSON.parse(localStorage.getItem('boostup_user'));
        if (!user) {
            showNotification('Silakan login terlebih dahulu', 'error');
            setTimeout(() => {
                window.location.href = 'login.html?redirect=' + currentPage;
            }, 1500);
        }
    }
    
    // Auto redirect after login
    const urlParams = new URLSearchParams(window.location.search);
    const redirect = urlParams.get('redirect');
    
    if (redirect && auth.currentUser) {
        setTimeout(() => {
            window.location.href = redirect + '.html';
        }, 1000);
    }
});
/* ===== PAYMENT STYLES ===== */
.payment-container {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker), #1a1a3e);
}

.payment-card {
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
}

.payment-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    min-width: 80px;
}

.status-step.active {
    color: white;
}

.status-step.current {
    color: var(--primary);
}

.status-step i {
    font-size: 1.2rem;
}

.status-line {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.status-line.active {
    background: var(--primary);
}

.order-id {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    color: var(--gray);
}

.order-id strong {
    color: white;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.payment-left {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-amount {
    text-align: center;
    margin-bottom: 40px;
}

.payment-amount h3 {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.payment-amount h1 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.payment-note {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.payment-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 101, 132, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.payment-timer i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.timer {
    text-align: left;
}

.timer strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

#countdownTimer {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.qr-container {
    text-align: center;
    margin: 30px 0;
}

.qr-code {
    max-width: 250px;
    border: 10px solid white;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.qr-instruction {
    color: var(--gray);
    margin-bottom: 15px;
}

.wallet-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.bank-details {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.bank-account {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.bank-account span {
    display: block;
    color: var(--gray);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.bank-account strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.bank-account small {
    color: var(--gray);
    font-size: 0.8rem;
}

.steps {
    padding-left: 20px;
    margin: 20px 0;
    color: var(--gray);
}

.steps p {
    margin-bottom: 10px;
    font-weight: 600;
}

.steps li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.payment-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-summary-payment {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.order-summary-payment h4 {
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-info {
    flex: 1;
}

.item-info strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.item-info small {
    color: var(--gray);
    font-size: 0.9rem;
}

.item-price {
    color: var(--primary);
    font-weight: 600;
}

.customer-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
}

.customer-detail i {
    color: var(--primary);
    width: 20px;
}

.upload-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
}

.upload-section h4 {
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-section p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
}

.upload-area i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.upload-area p {
    color: var(--gray);
    margin-bottom: 5px;
}

.upload-area span {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.upload-area small {
    color: var(--gray);
    font-size: 0.8rem;
}

.upload-preview {
    margin: 20px 0;
    text-align: center;
}

.upload-preview img {
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    margin: 0 auto 15px;
}

.file-info {
    text-align: center;
}

.file-info strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.file-info small {
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-confirm {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm:hover:not(:disabled) {
    transform: translateY(-2px);
}

.btn-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-note-small {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-support {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 40px;
}

.support-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.support-item i {
    font-size: 2rem;
    color: var(--primary);
}

.support-item strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.support-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-support {
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* ===== CUSTOMER INFO IN CART ===== */
.cart-summary .form-group {
    margin-bottom: 15px;
}

.cart-summary .form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-summary .form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cart-summary .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .payment-content {
        grid-template-columns: 1fr;
    }
    
    .payment-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .payment-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .payment-status {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .status-line {
        width: 20px;
    }
    
    .payment-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .payment-amount h1 {
        font-size: 2.5rem;
    }
    
    .wallet-icons {
        font-size: 1.5rem;
    }
}
/* ===== NOTIFICATION STYLES ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
    font-size: 0.9rem;
}

.notification.success {
    background: #4CAF50;
}

.notification.error {
    background: #f44336;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== CART ITEM STYLES ===== */
.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.item-details h4 {
    margin-bottom: 5px;
    color: white;
}

.item-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.item-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

.item-price .price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.qty-btn:hover {
    background: var(--primary);
}

.item-quantity input {
    width: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    text-align: center;
    padding: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.item-total .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.item-remove:hover {
    color: var(--secondary);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: white;
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--gray);
    margin-bottom: 20px;
}