body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff00; /* Lime green for headings */
}

.text-success {
    color: #00ff00 !important;
}

.bg-dark-primary {
    background-color: #1a1a1a;
}

.bg-dark-secondary {
    background-color: #222222;
}

.bg-dark-light {
    background-color: #2a2a2a;
}

.bg-dark-input {
    background-color: #333333;
}

.btn-success {
    background-color: #00ff00;
    border-color: #00ff00;
    color: #1a1a1a;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-success:hover {
    background-color: #00e600;
    border-color: #00e600;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.3);
}

.btn-outline-success {
    color: #00ff00;
    border-color: #00ff00;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-outline-success:hover {
    background-color: #00ff00;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.3);
}

.form-control, .form-select {
    color: #ffffff;
    border: 1px solid #444444;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: #00ff00;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.25);
    background-color: #333333;
    color: #ffffff;
}

/* Header */
.header {
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid #333333;
    z-index: 1030;
}

.site-logo {
    height: 40px;
    width: 50px;
    object-fit: contain;
}

.site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.site-logo-link:hover .site-name {
    color: #00ff00;
}

.nav-links .nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links .nav-link:hover {
    color: #00ff00;
}

.cart-icon-button {
    position: relative;
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.cart-icon-button:hover {
    color: #00ff00;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 0.75rem;
    padding: 0.3em 0.6em;
}

/* Offcanvas for mobile menu */
.offcanvas-header {
    border-bottom: 1px solid #333333;
}

.offcanvas-title {
    color: #00ff00;
}

.offcanvas-body .nav-link {
    color: #ffffff;
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    background-color: #333333;
    color: #00ff00;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Hero Section */
.hero-section {
    background-image: url('photos/uploads/gaming-hero-background_15.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 170px !important; /* Offset for fixed header */
    padding-bottom: 100px !important;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2.1rem,5vw,2.5rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p.lead {
    font-size: 1.25rem;
}

.hero-section .bg-dark-light {
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section .bg-dark-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 0, 0.2);
}

/* About Section */
.about-section ul li {
    color: #e0e0e0;
}

.about-section img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Products Section */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
    border-bottom: 1px solid #333333;
}

.product-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-card .card-text {
    font-size: 0.95rem;
    color: #cccccc;
}

.product-card .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff00;
}

.product-features {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 1rem;
    padding-left: 0;
}

.product-features li {
    margin-bottom: 0.5rem;
}

/* Delivery & Payment Section */
.delivery-payment-section h3, .payment-methods-section h3 {
    color: #00ff00;
}

.delivery-payment-section ul li, .warranty-returns-section ul li {
    color: #e0e0e0;
}

/* Payment Methods Section */
.payment-icon {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%) brightness(150%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-icon:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.1);
}

/* Statistics Section */
.statistic-item {
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 0, 0.2);
}

.statistic-item .display-4 {
    color: #00ff00;
}

/* Warranty & Returns Section */
.warranty-returns-section img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Reviews Section */
.review-card {
    border: 1px solid #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 0, 0.2);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #00ff00;
}

.review-card .text-warning {
    color: #ffc107 !important;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('photos/uploads/cta-gaming-background_4.jpg') no-repeat center center / cover !important;
    position: relative;
    padding: 80px 0;
}

.cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-section .container {
    z-index: 2;
    position: relative;
}

/* Footer */
.footer {
    background-color: #111111;
    border-top: 1px solid #333333;
}

.footer .site-name {
    font-size: 1.2rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00ff00;
    text-decoration: underline;
}

.footer-policy-links .list-inline-item {
    margin-right: 15px;
    margin-bottom: 5px;
}

.footer-policy-links .list-inline-item:last-child {
    margin-right: 0;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1040;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
}

.cookie-banner p {
    font-size: 0.9rem;
}

.cookie-banner .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Modals */
.modal-content {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background-color: #222222;
    border-bottom: 1px solid #333333;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.modal-body {
    background-color: #2a2a2a;
    padding: 2rem;
}

.modal-footer {
    background-color: #222222;
    border-top: 1px solid #333333;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.modal-dialog-scrollable .modal-body {
    max-height: calc(100vh - 200px); /* Adjust based on header/footer height */
    overflow-y: auto;
}

#cartItemsContainer .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333333;
    flex-wrap: wrap;
}

#cartItemsContainer .cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-right: 1rem;
    border: 1px solid #444444;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #00ff00;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #cccccc;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-quantity {
    width: 60px;
    margin-right: 1rem;
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #444444;
    border-radius: 0.25rem;
}

.cart-item-subtotal {
    font-weight: 600;
    color: #ffffff;
    min-width: 90px;
    text-align: right;
}

.remove-item-btn {
    color: #ff4444;
    border: none;
    background: none;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.2s ease;
}

.remove-item-btn:hover {
    color: #ff0000;
}

/* Responsive Typography */
@media (min-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    .hero-section p.lead {
        font-size: 1.1rem;
    }
    .product-card .card-img-top {
        height: 180px;
    }
}

@media (max-width: 767px) {
   
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-section .bg-dark-light {
        padding: 1rem !important;
    }
    .product-card .card-img-top {
        height: 150px;
    }
    .product-card .card-title {
        font-size: 1rem;
    }
    .product-card .product-price {
        font-size: 1.2rem;
    }
    .btn-success, .btn-outline-success {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .statistic-item .display-4 {
        font-size: 2.5rem;
    }
    .statistic-item .lead {
        font-size: 1rem;
    }
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    .cookie-banner .d-flex.flex-column.flex-sm-row {
        width: 100%;
    }
    .cookie-banner .btn {
        width: 100%;
    }
    .cookie-banner .btn.mb-2 {
        margin-bottom: 0.5rem !important;
    }
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    .cart-item-name {
        font-size: 0.9rem;
    }
    .cart-item-price, .cart-item-subtotal {
        font-size: 0.8rem;
    }
    .cart-item-quantity {
        width: 50px;
    }
    .remove-item-btn {
        font-size: 1rem;
    }
    .modal-dialog-scrollable .modal-body {
        max-height: calc(100vh - 150px);
    }
}
/*
 * Base styles for the content wrapper.
 * Provides top and side padding for the content area.
 */
.rightsCloudWrap {
    padding: 20px 40px; /* Top/bottom padding 20px, left/right padding 40px */
}

/*
 * Heading 1 styles.
 * Slightly smaller than default browser h1, with bottom margin.
 */
.rightsCloudWrap h1 {
    font-size: 1.8em; /* Relative font size, not too large */
    line-height: 1.2; /* Improved readability */
    margin-top: 1.5em; /* Space above heading */
    margin-bottom: 1em; /* Space below heading */
    font-weight: 700; /* Bold font weight */
}

/*
 * Heading 2 styles.
 * Moderate font size with bottom margin.
 */
.rightsCloudWrap h2 {
    font-size: 1.5em; /* Moderate font size */
    line-height: 1.3;
    margin-top: 1.2em;
    margin-bottom: 0.8em;
    font-weight: 600; /* Slightly less bold than h1 */
}

/*
 * Heading 3 styles.
 * Smaller font size suitable for sub-sections.
 */
.rightsCloudWrap h3 {
    font-size: 1.3em; /* Smaller font size */
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.7em;
    font-weight: 600;
}

/*
 * Heading 4 styles.
 * Even smaller, for minor sub-headings.
 */
.rightsCloudWrap h4 {
    font-size: 1.1em; /* Close to body text size */
    line-height: 1.5;
    margin-top: 0.8em;
    margin-bottom: 0.6em;
    font-weight: 500; /* Medium font weight */
}

/*
 * Heading 5 styles.
 * Smallest heading, often used for minor details or labels.
 */
.rightsCloudWrap h5 {
    font-size: 1em; /* Same as base text, but still a heading */
    line-height: 1.5;
    margin-top: 0.7em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

/*
 * Paragraph styles.
 * Sets line height for readability and adds bottom margin for spacing between paragraphs.
 */
.rightsCloudWrap p {
    font-size: 1em; /* Base font size */
    line-height: 1.6; /* Good for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/*
 * Unordered list styles.
 * Adds top/bottom margin and left padding for bullet points.
 */
.rightsCloudWrap ul {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.5em; /* Indentation for bullet points */
    list-style-type: disc; /* Default bullet style */
}

/*
 * List item styles.
 * Adds bottom margin for spacing between list items.
 */
.rightsCloudWrap li {
    line-height: 1.5; /* Line height for list item text */
    margin-bottom: 0.5em; /* Space between list items */
}


#about, #products, #delivery, #payment-methods, #statistics, #warranty, #reviews, #contact{
    overflow: hidden !important;
}

.btn .badge{
    position: absolute;
}