/* Order Confirmation Page Styles */
.confirmation-section {
    padding: 120px 2rem 4rem;
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.confirmation-icon {
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.confirmation-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.4s both;
}

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

.confirmation-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.confirmation-details h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.order-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-info-item label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.order-info-item span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.order-items-summary {
    margin-top: 2rem;
}

.order-items-summary h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.order-item-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.order-item-summary img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-summary-info {
    flex: 1;
    text-align: left;
}

.order-item-summary-info h4 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.order-item-summary-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.order-item-summary-price {
    color: #55ff51;
    font-weight: 600;
    font-size: 1.1rem;
}

.order-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.order-total span {
    color: #55ff51;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Bebas Neue', sans-serif;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.btn-primary {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #55ff51, #00cc4a);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(85, 255, 81, 0.3);
}

.btn-secondary {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.confirmation-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    animation: fadeInUp 0.6s ease 1s both;
}

.confirmation-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.info-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #55ff51, #00cc4a);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .confirmation-section {
        padding: 100px 1rem 2rem;
    }

    .confirmation-title {
        font-size: 2rem;
    }

    .confirmation-subtitle {
        font-size: 1rem;
    }

    .confirmation-details {
        padding: 1.5rem;
    }

    .order-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .info-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }
}

@media (max-width: 480px) {
    .confirmation-title {
        font-size: 1.5rem;
    }

    .confirmation-details {
        padding: 1rem;
    }

    .order-item-summary {
        flex-direction: column;
        text-align: center;
    }

    .order-total {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

