body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
.bg-dark {
    background-color: #0f0f1a !important;
}

.bg-light-red {
    background-color: #2e1a1a !important;
}

.text-white {
    color: #e0e0e0 !important;
}

.text-primary {
    color: #ff5722 !important; /* Vibrant red/orange accent */
}
@media (max-width:575px) {
    .modal-title{
        font-size: 18px;
    }
}
.btn-primary {
    background-color: #ff5722;
    border-color: #ff5722;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e64a19;
    border-color: #e64a19;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
.btn-outline-light {
    color: #e0e0e0;
    border-color: #e0e0e0;
}

.btn-outline-light:hover {
    background-color: #e0e0e0;
    color: #0f0f1a;
}

.promo-bar {
    position: relative!important;
    background-color: #8b0000; /* Darker red for promo */
    color: white;
    z-index: 1050;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.5s ease-out;
}

.promo-bar p {
    font-size: 0.9rem;
}

.promo-bar .promo-code {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.promo-bar .btn-close-white {
    filter: invert(1);
}

.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff5722;
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 500;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff5722;
}



@media (max-width: 1199px) {
    .navbar-nav {
        flex-wrap: nowrap;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #0f0f1a;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.25rem;
    }

    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .navbar-brand .site-name {
        font-size: 1.5rem;
    }
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('visuals/media/gaming-setup-background_2.jpg') no-repeat center center/cover;
    min-height: 80vh;
    padding-top: 8rem; /* Adjust for fixed promo bar and navbar */
    padding-bottom: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ff5722, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-cta {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 87, 34, 0.4);
}

.product-showcase {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-showcase .hero-image {
    transform: scale(1.02);
    transition: transform 5s ease-in-out;
    animation: slowZoom 10s infinite alternate;
    border-radius: 15px;
}

.product-showcase .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff5722, #ffa000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 3rem;
}

.sub-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff5722;
}

.feature-card {
    background-color: #1a1a2e;
    border: 1px solid rgba(255, 87, 34, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
}

.product-card {
    background-color: #1a1a2e;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
}

.product-card .card-img-top {
    height: 320px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card .card-body {
    padding: 1.5rem;
}
.card-body{
    color: white!important;
}
.product-card .card-title {
    color: #ff5722;
    font-size: 1.3rem;
}

.product-card .card-text {
    font-size: 0.95rem;
    color: white!important;
}

.product-card .price {
    color: #ffa000;
}

.add-to-cart-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.care-tip {
    background-color: #0f0f1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4) !important;
}

.care-tip h4 {
    color: #ff5722;
}

.setup-list li {
    margin-bottom: 0.75rem;
}

.bundle-img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.bundle-title {
    color: #ff5722;
    font-weight: 600;
    font-size: 1.8rem;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 1rem;
    bottom: 1rem;
    left: 15%;
    right: 15%;
}

.shipping-chart {
    background-color: #0f0f1a!important;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.justify-center22{
    justify-content: center;
}
.chart-bar-container {
    display: flex;
    justify-content: space-around;
    height: 200px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    position: relative;
}

.chart-item .bar {
    width: 80%;
    background: linear-gradient(to top, #ff5722, #ffa000);
    border-radius: 5px 5px 0 0;
    transition: height 1s ease-out;
    position: relative;
}

.chart-item .bar::before {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    font-size: 0.8rem;
    color: #e0e0e0;
    font-weight: 500;
}

.chart-item .label {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #e0e0e0;
    text-align: center;
}

.accordion-item {
    background-color: #0f0f1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #ff5722;
    background-color: #0f0f1a;
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-body {
    background-color: #0f0f1a;
    color: #e0e0e0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card {
    background-color: #0f0f1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
}

.testimonial-card .avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #ff5722;
}

.testimonial-card h5 {
    color: #ff5722;
    font-weight: 600;
}

.testimonial-card .text-warning {
    color: #ffa000 !important;
}

footer {
    background-color: #0f0f1a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .navbar-brand .logo-img {
    height: 35px;
}

footer .navbar-brand .site-name {
    font-size: 1.5rem;
}

footer h5 {
    color: #ff5722;
}

footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff5722;
}

/* Cart Modal */
.modal-content {
    background-color: #1a1a2e;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
}

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

.cart-item-details h6 {
    font-weight: 600;
    color: #ff5722;
}

.cart-item-details .price {
    font-weight: 500;
    color: #ffa000;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart-item-actions .form-select {
    width: 80px;
    margin-bottom: 0.5rem;
    background-color: #0f0f1a;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-actions .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.cart-item-actions .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

#cartTotal {
    color: #ffa000;
}

/* Order Form Modal */
#orderForm .form-control, #orderForm .form-select {
    background-color: #0f0f1a;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#orderForm .form-control:focus, #orderForm .form-select:focus {
    background-color: #0f0f1a;
    color: #e0e0e0;
    border-color: #ff5722;
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

#orderForm .form-label {
    color: #e0e0e0;
}

/* Cookie Consent Modal */
#cookieConsentModal {
    z-index: 2000;
}

#cookieConsentModal .modal-content {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#cookieConsentModal .form-check-input:checked {
    background-color: #ff5722;
    border-color: #ff5722;
}

#cookieConsentModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

#cookieConsentModal .btn-link {
    color: #ff5722;
    text-decoration: none;
}

#cookieConsentModal .btn-link:hover {
    text-decoration: underline;
}

/* Responsive Typography */
@media (min-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .site-name { font-size: 2.2rem; }
    .section-title { font-size: 2.5rem; }
    .sub-section-title { font-size: 1.8rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title { font-size: 2.8rem; }
    .site-name { font-size: 2rem; }
    .section-title { font-size: 2.2rem; }
    .sub-section-title { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .site-name { font-size: 1.25rem; }
    .section-title { font-size: 1.8rem; }
    .sub-section-title { font-size: 1.25rem; }
    .hero-section {
        padding-top: 6rem;
        text-align: center;
    }
    .hero-cta {
        width: 100%;
    }
    .product-showcase {
        width: 100%;
    }
    .chart-item .bar::before {
        font-size: 0.7rem;
        top: -20px;
    }
    .chart-item .label {
        font-size: 0.8rem;
    }
    .carousel-caption {
        left: 5%;
        right: 5%;
        padding: 0.5rem;
    }
    .bundle-title {
        font-size: 1.2rem;
    }
    .promo-bar p {
        font-size: 0.8rem;
    }
    .promo-bar .promo-code {
        display: block;
        margin-top: 0.2rem;
    }
}
/*
 * New stock styles for content within .policyScopeWrap.
 * These styles are designed for readability and a clean layout
 * without overly large heading sizes.
 */

/* Parent container padding */
.policyScopeWrap {
    padding: 30px 20px; /* Top/bottom padding 30px, left/right padding 20px */
}

/* Heading styles */
.policyScopeWrap h1 {
    font-size: 28px; /* Moderate size for main heading */
    margin-top: 1.5em; /* Space above heading */
    margin-bottom: 0.8em; /* Space below heading */
    line-height: 1.2; /* Tighter line height for headings */
    font-weight: bold; /* Default bold */
}

.policyScopeWrap h2 {
    font-size: 24px; /* Sub-heading size */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    font-weight: bold;
}

.policyScopeWrap h3 {
    font-size: 20px; /* Smaller sub-heading */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    font-weight: bold;
}

.policyScopeWrap h4 {
    font-size: 18px; /* Even smaller heading, good for sub-sections */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    font-weight: bold;
}

.policyScopeWrap h5 {
    font-size: 16px; /* Smallest heading, often same as body text size but bold */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.5;
    font-weight: bold;
}

/* Paragraph styles */
.policyScopeWrap p {
    font-size: 16px; /* Standard body text size for readability */
    line-height: 1.6; /* Generous line height for better readability */
    margin-top: 0; /* No top margin if following another block element */
    margin-bottom: 1em; /* Space between paragraphs */
}

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

/* List item styles */
.policyScopeWrap li {
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.6; /* Ensure readability within list items */
}
