/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
    position: relative;
}

body.loading {
    overflow: hidden;
}

/* Stars Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.8"/><circle cx="30" cy="20" r="0.5" fill="white" opacity="0.6"/><circle cx="50" cy="15" r="1" fill="white" opacity="0.7"/><circle cx="70" cy="25" r="0.8" fill="white" opacity="0.9"/><circle cx="90" cy="10" r="0.5" fill="white" opacity="0.5"/></svg>') repeat;
    animation: moveStars 200s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150"><circle cx="20" cy="20" r="1.5" fill="white" opacity="0.6"/><circle cx="60" cy="40" r="1" fill="white" opacity="0.4"/><circle cx="100" cy="30" r="1.2" fill="white" opacity="0.5"/><circle cx="140" cy="50" r="0.8" fill="white" opacity="0.7"/></svg>') repeat;
    animation: moveStars 150s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="40" cy="40" r="2" fill="white" opacity="0.3"/><circle cx="120" cy="80" r="1.5" fill="white" opacity="0.4"/><circle cx="200" cy="60" r="1" fill="white" opacity="0.5"/></svg>') repeat;
    animation: moveStars 100s linear infinite;
}

@keyframes moveStars {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #d4af37;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 3px;
}

.tagline {
    font-size: 0.9em;
    opacity: 0.9;
    color: #c9a961;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-icon {
    background: rgba(212, 175, 55, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-weight: bold;
}

.cart-icon:hover {
    background: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.main-nav {
    background: rgba(0,0,0,0.2);
    padding: 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.main-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: #d4af37;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-bottom-color: #d4af37;
    color: #c9a961;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
    color: #d4af37;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #d4af37;
}

.hero-content h2 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 5px;
}

.hero-content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #c9a961;
}

.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #b89d5a;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #0a0a0a;
    border: 2px solid #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    background: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.8);
    position: relative;
    z-index: 1;
}

.intro-section {
    margin-bottom: 60px;
}

.legal-notice-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 20px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.legal-notice-box h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.legal-notice-box p {
    color: #c9a961;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
}

.feature-card .feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature-card p {
    color: #b89d5a;
}

/* Products Section */
.products-section {
    margin: 60px 0;
}

.products-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #d4af37;
    text-align: center;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #b89d5a;
    font-size: 1.1em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 5em;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* GTA-style money background images */
.product-image[data-denomination="5"] {
    background-image: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200"><rect width="400" height="200" fill="%23E8D5B7"/><text x="200" y="100" font-family="Arial" font-size="60" fill="%23B8860B" text-anchor="middle" font-weight="bold">£5</text><text x="200" y="130" font-family="Arial" font-size="20" fill="%23B8860B" text-anchor="middle">FIVE POUNDS</text></svg>');
}

.product-image[data-denomination="20"] {
    background-image: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200"><rect width="400" height="200" fill="%239366FF"/><text x="200" y="100" font-family="Arial" font-size="60" fill="%23FFFFFF" text-anchor="middle" font-weight="bold">£20</text><text x="200" y="130" font-family="Arial" font-size="20" fill="%23FFFFFF" text-anchor="middle">TWENTY POUNDS</text></svg>');
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Fallback if image doesn't load */
.product-image:has(img[style*="display: none"]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #d4af37;
    font-weight: bold;
}

.product-price {
    font-size: 1.8em;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.product-description {
    color: #b89d5a;
    margin-bottom: 15px;
    font-size: 0.95em;
    line-height: 1.8;
}

.product-features {
    color: #c9a961;
    margin-bottom: 20px;
    font-size: 0.9em;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    border-left: 3px solid #d4af37;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: bold;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input input {
    width: 80px;
    padding: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 5px;
    color: #d4af37;
    font-size: 1.1em;
    text-align: center;
    font-weight: bold;
}

.quantity-input input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.calculation-display {
    background: rgba(212, 175, 55, 0.15);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #d4af37;
}

.calculation-display p {
    color: #d4af37;
    margin: 5px 0;
    font-weight: bold;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #d4af37;
    padding: 60px 20px 20px;
    border-top: 2px solid #d4af37;
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #d4af37;
    font-size: 1.5em;
}

.legal-notice {
    font-size: 0.9em;
    color: #b89d5a;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #b89d5a;
}

/* Cart Modal */
.cart-modal, .checkout-modal, .order-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cart-modal-content, .checkout-modal-content, .order-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    border: 2px solid #d4af37;
    border-radius: 10px;
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cart-header, .checkout-header, .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.cart-header h2, .checkout-header h2, .order-header h2 {
    margin: 0;
    font-size: 1.8em;
    color: #d4af37;
}

.close-cart, .close-checkout {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 2.5em;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-cart:hover, .close-checkout:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: #b89d5a;
    padding: 40px 20px;
    font-size: 1.1em;
}

.cart-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cart-item-info {
    margin-bottom: 10px;
}

.cart-item-info h4 {
    margin-bottom: 5px;
    color: #d4af37;
    font-size: 1.1em;
}

.cart-item-price {
    color: #b89d5a;
    font-size: 0.9em;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.quantity-btn {
    background: #d4af37;
    color: #0a0a0a;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #c9a961;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.quantity {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    color: #d4af37;
    font-size: 1.1em;
}

.remove-btn {
    background: #8b0000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s;
    margin-left: auto;
}

.remove-btn:hover {
    background: #a00000;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.cart-item-total {
    font-weight: bold;
    color: #d4af37;
    font-size: 1.2em;
    text-align: right;
}

.cart-summary {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.cart-summary p {
    color: #d4af37;
    margin: 5px 0;
    font-weight: bold;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.cart-total {
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.checkout-btn, .continue-shopping {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #0a0a0a;
    border: none;
}

.checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.02);
}

.checkout-btn:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.5;
}

.continue-shopping {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.continue-shopping:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Checkout Form */
.checkout-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 60vh;
}

.checkout-form-group {
    margin-bottom: 20px;
}

.checkout-form-group label {
    display: block;
    color: #d4af37;
    margin-bottom: 8px;
    font-weight: bold;
}

.checkout-form-group input,
.checkout-form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 5px;
    color: #d4af37;
    font-size: 1em;
}

.checkout-form-group input:focus,
.checkout-form-group select:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.order-summary {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #d4af37;
}

.order-summary h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.order-summary p {
    color: #c9a961;
    margin: 5px 0;
}

.payment-section {
    background: rgba(212, 175, 55, 0.15);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    border: 2px solid #d4af37;
    text-align: center;
}

.payment-section h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.payment-amount {
    font-size: 2em;
    color: #d4af37;
    font-weight: bold;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.monzo-link {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #0a0a0a;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s;
    margin-top: 15px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.monzo-link:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.02);
    background: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
}

.payment-notice {
    color: #b89d5a;
    font-size: 0.9em;
    margin-top: 15px;
    padding: 10px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
}

/* Order Confirmation */
.order-body {
    padding: 30px;
    text-align: center;
}

.order-number {
    font-size: 1.5em;
    color: #d4af37;
    margin: 20px 0;
    font-weight: bold;
}

.order-details {
    color: #c9a961;
    margin: 10px 0;
}

.order-success-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

/* Reviews Page */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.reviewer-info h4 {
    color: #d4af37;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.review-date {
    color: #b89d5a;
    font-size: 0.9em;
}

.review-rating {
    color: #d4af37;
    font-size: 1.2em;
}

.review-text {
    color: #c9a961;
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-product {
    color: #b89d5a;
    font-size: 0.9em;
    font-style: italic;
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-content h3 {
    color: #d4af37;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.about-content p {
    color: #c9a961;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul {
    color: #c9a961;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Contact Page */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #d4af37;
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #d4af37;
    margin-bottom: 20px;
}

.contact-info p {
    color: #c9a961;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* FAQ Page */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.faq-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.faq-item p {
    color: #c9a961;
    line-height: 1.8;
}

/* GTA 5 Loading Screen */
.gta-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.gta-loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.gta-loading-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 40px;
}

/* GTA Image Slider */
.gta-image-slider {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.gta-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gta-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Money image backgrounds for loading slider */
.gta-slide[data-image="money-bundle-1"] {
    background: linear-gradient(135deg, rgba(147, 102, 255, 0.3) 0%, rgba(212, 175, 55, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22800%22 height=%22300%22><rect width=%22800%22 height=%22300%22 fill=%23E8D5B7%22/><text x=%22400%22 y=%22150%22 font-family=%22Arial%22 font-size=%2260%22 fill=%23B8860B%22 text-anchor=%22middle%22 font-weight=%22bold%22>£20 BUNDLES</text></svg>');
}

.gta-slide[data-image="money-bundle-2"] {
    background: linear-gradient(135deg, rgba(147, 102, 255, 0.3) 0%, rgba(212, 175, 55, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22800%22 height=%22300%22><rect width=%22800%22 height=%22300%22 fill=%239366FF%22/><text x=%22400%22 y=%22150%22 font-family=%22Arial%22 font-size=%2260%22 fill=%23FFFFFF%22 text-anchor=%22middle%22 font-weight=%22bold%22>PREMIUM QUALITY</text></svg>');
}

.gta-slide[data-image="money-hand-1"] {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(147, 102, 255, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22800%22 height=%22300%22><rect width=%22800%22 height=%22300%22 fill=%23D4AF37%22/><text x=%22400%22 y=%22150%22 font-family=%22Arial%22 font-size=%2260%22 fill=%23000%22 text-anchor=%22middle%22 font-weight=%22bold%22>1:1 REALISTIC</text></svg>');
}

.gta-slide[data-image="money-stack-1"] {
    background: linear-gradient(135deg, rgba(147, 102, 255, 0.4) 0%, rgba(212, 175, 55, 0.4) 100%),
                url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22800%22 height=%22300%22><rect width=%22800%22 height=%22300%22 fill=%23E8D5B7%22/><text x=%22400%22 y=%22150%22 font-family=%22Arial%22 font-size=%2260%22 fill=%23B8860B%22 text-anchor=%22middle%22 font-weight=%22bold%22>FILM QUALITY</text></svg>');
}

.gta-slide[data-image="money-box-1"] {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(147, 102, 255, 0.4) 100%),
                url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22800%22 height=%22300%22><rect width=%22800%22 height=%22300%22 fill=%239366FF%22/><text x=%22400%22 y=%22150%22 font-family=%22Arial%22 font-size=%2260%22 fill=%23FFFFFF%22 text-anchor=%22middle%22 font-weight=%22bold%22>ALL SECURITY FEATURES</text></svg>');
}

.gta-logo {
    font-size: 4em;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
    margin-bottom: 40px;
    letter-spacing: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.gta-loading-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.gta-loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #c9a961 50%, #d4af37 100%);
    width: 0%;
    border-radius: 3px;
    animation: loadingBar 3s ease-in-out;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

@keyframes loadingBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.gta-tip {
    color: #b89d5a;
    font-size: 1.1em;
    font-style: italic;
    margin-top: 20px;
    opacity: 0.8;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Mute Button */
.mute-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.mute-button:hover {
    background: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.mute-button.muted {
    opacity: 0.5;
}

.mute-button.muted:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.8em;
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cart-modal-content,
    .checkout-modal-content,
    .order-modal-content {
        width: 95%;
        max-height: 95vh;
    }
}
