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

/* General Body Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container for content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a001a 100%);
    border-bottom: 2px solid #a855f7;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Logo Styles */
.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Navigation Links */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #a855f7;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    text-shadow: 0 0 5px rgba(168, 85, 247, 0.8);
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 8px 12px;
    border: 2px solid #a855f7;
    border-radius: 5px;
    background: #000000;
    transition: all 0.3s ease;
    min-width: 70px;
    text-align: center;
}

.cart-icon:hover {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
    transform: translateY(-2px);
}

.cart-text {
    color: #ffffff;
    font-weight: 600;
    margin-right: 5px;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
}

.cart-count {
    background: #a855f7;
    color: #ffffff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    display: inline-block;
}

/* Search Container */
.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Bar */
.search-bar {
    width: 100%;
    padding: 12px 40px 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 10px;
    color: #ffffff;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-bar:focus {
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.search-bar::placeholder {
    color: #cccccc;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #a855f7;
    pointer-events: none;
}

/* Categories Section */
.categories {
    padding: clamp(30px, 6vw, 50px) 0 clamp(20px, 4vw, 30px) 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.category-btn {
    padding: 10px 15px;
    background: #000000;
    border: 2px solid #333333;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    white-space: nowrap;
}

.category-btn:hover,
.category-btn.active {
    border-color: #a855f7;
    color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: clamp(20px, 4vw, 40px) 0 clamp(30px, 6vw, 60px) 0;
}

/* FIXED: 4 products per row on large screens */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 20px);
    padding: 0 10px;
}

/* Product Card - MORE COMPACT */
.product-card {
    background: linear-gradient(145deg, #111111, #000000);
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 12px;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: #a855f7;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}

/* Compact Product Image */
.product-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #333333;
}

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

.product-info h3 {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: #cccccc;
    margin-bottom: 12px;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    line-height: 1.4;
    flex-grow: 1;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.product-price {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 800;
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    display: block;
    width: 100%;
    padding: 8px;
    background: rgba(168, 85, 247, 0.1);
    border-left: 3px solid #a855f7;
    border-radius: 4px;
}

.product-category {
    background: #a855f7;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(168, 85, 247, 0.3);
}

.conversion-rate {
    text-align: center;
    padding: 6px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 6px;
    width: 100%;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
}

/* HOVER TO SHOW SINGLE "VIEW PRODUCT" BUTTON */
.product-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.action-btn {
    flex: 1;
    padding: 8px 10px;
    background: #000000;
    border: 2px solid #a855f7;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.65rem, 2vw, 0.8rem);
}

.action-btn:hover {
    background: #a855f7;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.7);
    transform: translateY(-2px);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #a855f7;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 3px 12px rgba(168, 85, 247, 0.5);
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product Detail Modal - ENHANCED LAYOUT */
.product-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2500;
    backdrop-filter: blur(5px);
    padding: 20px;
    overflow-y: auto;
}

.product-detail-content {
    position: relative;
    margin: 20px auto;
    background: linear-gradient(145deg, #111111, #000000);
    border: 2px solid #a855f7;
    border-radius: 15px;
    padding: clamp(20px, 5vw, 30px);
    max-width: min(900px, 95vw);
    width: 100%;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.product-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
    padding-bottom: 15px;
}

.product-detail-header h2 {
    font-family: 'Orbitron', monospace;
    color: #a855f7;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
}

.close-product-detail {
    background: none;
    border: none;
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.close-product-detail:hover {
    color: #a855f7;
}

.product-detail-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* NEW: Layout for Image + Info */
.product-detail-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.product-detail-image-section {
    flex: 0 0 300px;
}

.product-detail-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #a855f7;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.product-detail-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-description {
    color: #cccccc;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-packages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom scrollbar for packages */
.product-packages::-webkit-scrollbar {
    width: 6px;
}

.product-packages::-webkit-scrollbar-track {
    background: #111111;
    border-radius: 10px;
}

.product-packages::-webkit-scrollbar-thumb {
    background: #a855f7;
    border-radius: 10px;
}

.package-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-option:hover {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    transform: translateX(5px);
}

.package-option.selected {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.package-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
}

.package-description {
    color: #cccccc;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.package-price {
    color: #a855f7;
    font-weight: 700;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.uid-section {
    padding: 15px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid #a855f7;
    border-radius: 10px;
}

.uid-section label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.uid-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1rem);
    transition: all 0.3s ease;
}

.uid-input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.uid-help {
    display: block;
    color: #cccccc;
    font-size: 0.85rem;
    margin-top: 5px;
}

.product-detail-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.detail-action-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #a855f7;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.detail-action-btn.cancel {
    background: #000000;
    color: #ffffff;
}

.detail-action-btn.cancel:hover {
    background: #333333;
}

.detail-action-btn.secondary {
    background: #000000;
    color: #a855f7;
    border-color: #a855f7;
}

.detail-action-btn.secondary:hover {
    background: #a855f7;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
}

.detail-action-btn.primary {
    background: #a855f7;
    color: #ffffff;
}

.detail-action-btn.primary:hover {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
    transform: translateY(-2px);
}

/* Modals */
.cart-modal,
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.cart-content,
.checkout-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #111111, #000000);
    border: 2px solid #a855f7;
    border-radius: 15px;
    padding: clamp(20px, 5vw, 30px);
    max-width: min(700px, 95vw);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.cart-header,
.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
    padding-bottom: 15px;
}

.cart-header h2,
.checkout-header h2 {
    font-family: 'Orbitron', monospace;
    color: #a855f7;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
}

.close-cart,
.close-checkout {
    background: none;
    border: none;
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.close-cart:hover,
.close-checkout:hover {
    color: #a855f7;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333333;
    border: 2px solid #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #a855f7;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.progress-step.completed .step-number {
    background: #00ff00;
    border-color: #00ff00;
}

.step-label {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    font-weight: 600;
}

.progress-step.active .step-label {
    color: #a855f7;
}

/* Checkout Steps */
.checkout-step {
    display: none;
}

.step-title {
    color: #a855f7;
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 20px;
    text-align: center;
}

/* Cart Items */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333333;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.item-uid {
    color: #a855f7;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.cart-item-controls button {
    background: #a855f7;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-item-controls button:hover {
    background: #9333ea;
    transform: scale(1.1);
}

.cart-item-price {
    color: #a855f7;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.cart-total {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #a855f7;
    text-align: center;
    margin: 20px 0;
}

.checkout-btn {
    width: 100%;
    padding: 12px 15px;
    background: #000000;
    border: 2px solid #a855f7;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    margin-top: 10px;
}

.checkout-btn:hover:not(:disabled) {
    background: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
    transform: translateY(-2px);
}

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

.checkout-btn.secondary {
    background: #333333;
    border-color: #666666;
}

.checkout-btn.secondary:hover {
    background: #444444;
    border-color: #888888;
}

.checkout-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.checkout-actions .checkout-btn {
    margin-top: 0;
}

/* Payment & Screenshot Section */
.payment-section,
.screenshot-section,
.customer-info-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid #333333;
    border-radius: 10px;
}

.payment-instruction {
    color: #cccccc;
    text-align: center;
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed #a855f7;
    border-radius: 10px;
    margin-bottom: 15px;
    min-height: 200px;
}

.payment-qr {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

.qr-placeholder-text {
    color: #a855f7;
    font-weight: 600;
    text-align: center;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.payment-amount {
    text-align: center;
    color: #a855f7;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
}

.screenshot-preview {
    margin-top: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.form-group input[type="file"] {
    padding: 8px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.help-text {
    display: block;
    color: #cccccc;
    font-size: 0.85rem;
    margin-top: 5px;
}

.order-summary {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid #a855f7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.order-summary h3 {
    color: #a855f7;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #cccccc;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.final-total {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: #a855f7;
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333333;
}

/* Success Screen */
.success-container {
    text-align: center;
    padding: 30px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000000;
    animation: scaleIn 0.5s ease;
}

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

.success-title {
    color: #00ff00;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.success-message {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.order-id-container {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid #a855f7;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.order-id-container label {
    display: block;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.order-id-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
}

.order-id-text {
    flex: 1;
    color: #a855f7;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
}

.copy-btn {
    background: #a855f7;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.copy-btn:hover {
    background: #9333ea;
    transform: scale(1.05);
}

.success-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.success-actions .checkout-btn {
    flex: 1;
    min-width: 200px;
}

.discord-btn {
    background: #5865F2 !important;
    border-color: #5865F2 !important;
}

.discord-btn:hover {
    background: #4752C4 !important;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.6) !important;
}

/* Amount modal for Roblox */
.amount-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2500;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.amount-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #111111, #000000);
    border: 2px solid #a855f7;
    border-radius: 15px;
    padding: clamp(20px, 5vw, 30px);
    max-width: min(400px, 95vw);
    width: 100%;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
}

.amount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
    padding-bottom: 15px;
}

.amount-header h3 {
    font-family: 'Orbitron', monospace;
    color: #a855f7;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin: 0;
}

.close-amount {
    background: none;
    border: none;
    color: #ffffff;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.close-amount:hover {
    color: #a855f7;
}

.amount-input-group {
    margin-bottom: 20px;
}

.amount-input-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.amount-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    transition: all 0.3s ease;
}

.amount-input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.conversion-info {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid #a855f7;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.conversion-info p {
    color: #cccccc;
    margin-bottom: 5px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.calculated-price {
    color: #a855f7;
    font-weight: 700;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

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

.amount-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px;
    border: 2px solid #a855f7;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.cancel-btn {
    background: #000000;
    color: #ffffff;
}

.cancel-btn:hover {
    background: #333333;
}

.add-btn {
    background: #a855f7;
    color: #ffffff;
}

.add-btn:hover {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
    transform: translateY(-2px);
}

/* Page Content Styles */
.page-content {
    min-height: calc(100vh - 200px);
}

/* About Us Page Styles */
.about-us {
    padding: clamp(40px, 8vw, 80px) 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
    margin-bottom: 40px;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.about-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(145deg, #111111, #000000);
    border: 2px solid #333333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-section:hover {
    border-color: #a855f7;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.about-section h2 {
    font-family: 'Orbitron', monospace;
    color: #a855f7;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section h3 {
    color: #ffffff;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 10px;
    font-weight: 700;
}

.about-section p {
    color: #cccccc;
    line-height: 1.7;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    padding: 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid #a855f7;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(168, 85, 247, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.service-item h3 {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 10px;
}

.service-item p {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    margin-bottom: 0;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #cccccc;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #333333;
}

.features-list li:last-child {
    border-bottom: none;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
}

.contact-btn {
    padding: 15px 30px;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.back-to-shop {
    text-align: center;
    margin-top: 40px;
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: clamp(40px, 8vw, 80px) 0;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(145deg, #111111, #000000);
    border: 2px solid #333333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    border-color: #a855f7;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.privacy-section h2 {
    font-family: 'Orbitron', monospace;
    color: #a855f7;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-section p {
    color: #cccccc;
    line-height: 1.7;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 15px;
}

.privacy-section ul {
    color: #cccccc;
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
}

/* Footer */
.footer {
    background: #000000;
    border-top: 2px solid #a855f7;
    padding: 20px 0;
    text-align: center;
    color: #cccccc;
    margin-top: 40px;
}

.footer p {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
}

/* Loading and Empty States */
.loading {
    text-align: center;
    color: #cccccc;
    font-size: clamp(1rem, 3vw, 1.2rem);
    padding: 40px 20px;
}

.empty-cart {
    text-align: center;
    color: #cccccc;
    padding: 40px 20px;
}

.empty-cart h3 {
    margin-bottom: 10px;
    color: #a855f7;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-menu {
        justify-content: center;
        gap: 10px;
    }

    .category-filters {
        gap: 8px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 5px;
    }

    .product-image {
        height: 120px;
    }

    /* Make buttons always visible on mobile/tablet */
    .product-actions {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Mobile: Image on top, info below */
    .product-detail-layout {
        flex-direction: column;
    }

    .product-detail-image-section {
        flex: unset;
        width: 100%;
    }

    .product-detail-image {
        max-height: 250px;
    }

    .checkout-progress {
        padding: 0;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

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

    .success-actions .checkout-btn {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }

    .product-card {
        margin: 0 5px;
    }

    .product-image {
        height: 160px;
    }
}
