/* Base Styles */
:root {
    --primary-color: #ff006e;
    --light-color: #ffe6f2;
    --dark-color: #b8004f;
    --background-color: #ffffff;
    --text-color: #333333;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --border-radius: 9999px;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.5;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section_title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section_title h2 {
    margin-bottom: var(--spacing-sm);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -var(--spacing-md);
}

.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn_primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn_primary:hover {
    background-color: var(--dark-color);
    color: #fff;
}

/* Navigation Styles */
.main_menu {
    padding: var(--spacing-md) 0;
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    position: relative;
}

.navbar_brand img {
    height: 40px;
}

.nav_toggle {
    display: none;
}

.nav_toggle_label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navbar_nav {
    display: flex;
    gap: 30px;
}

.nav_item {
    list-style: none;
}

.nav_link {
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav_link:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .nav_toggle_label {
        display: block;
        cursor: pointer;
        padding: var(--spacing-md);
        z-index: 2;
    }

    .nav_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 80px;
        z-index: 1;
    }

    .navbar_nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav_item {
        width: 100%;
        text-align: center;
        margin: var(--spacing-md) 0;
    }

    .nav_link {
        display: inline-block;
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 18px;
    }

    .nav_toggle:checked ~ .nav_wrapper {
        left: 0;
    }

    .nav_toggle:checked ~ .nav_toggle_label .hamburger {
        background: transparent;
    }

    .nav_toggle:checked ~ .nav_toggle_label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav_toggle:checked ~ .nav_toggle_label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero_section {
    position: relative;
}

.hero_overlay {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
}

.hero_overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero_content {
    position: relative;
    max-width: 600px;
    color: #fff;
}

.hero_content h1 {
    color: #fff;
    margin-bottom: var(--spacing-lg);
}

.hero_content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

.search_form .form_group {
    display: flex;
}

.form_control {
    flex-grow: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
}

.search_form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Features Section */
.features_section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.features_section .row {
    display: flex;
    justify-content: space-between;
}

.feature_item {
    flex: 1;
    padding: var(--spacing-lg);
    text-align: center;
}

.feature_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Games Section */
.games_section {
    padding: var(--spacing-xl) 0;
}

.games_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.game_card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game_card:hover {
    transform: translateY(-5px);
}

.game_img {
    height: 200px;
    overflow: hidden;
}

.game_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game_card:hover .game_img img {
    transform: scale(1.05);
}

.game_body {
    padding: var(--spacing-lg);
    background-color: #fff;
}

.game_body h4 {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.online_badge {
    font-size: 0.7rem;
    background-color: var(--primary-color);
    color: #fff;
    padding: 2px var(--spacing-sm);
    border-radius: var(--border-radius);
}

.game_body p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game_price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.game_btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.game_btn:hover {
    background-color: var(--dark-color);
    color: #fff;
}

/* Promo Section */
.promo_section {
    padding: var(--spacing-xl) 0;
}

.promo_content {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    display: flex;
    align-items: center;
}

.promo_content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

.promo_text {
    position: relative;
    padding: var(--spacing-xl);
    color: #fff;
    max-width: 500px;
}

.promo_text h2 {
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

.promo_text p {
    margin-bottom: var(--spacing-lg);
}

/* Why Choose Section */
.why_choose_section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.why_choose_section .row {
    display: flex;
    align-items: center;
}

.choose_img {
    flex: 1;
}

.img_bg {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.choose_content {
    flex: 1;
    padding: 0 var(--spacing-xl);
}

.choose_points ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--spacing-md);
}

.choose_points ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Services Section */
.services_section {
    padding: var(--spacing-xl) 0;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.service_item {
    padding: var(--spacing-lg);
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service_item:hover {
    transform: translateY(-5px);
}

.service_item h3 {
    margin-bottom: var(--spacing-md);
}

.service_item p {
    margin-bottom: var(--spacing-lg);
    color: #666;
}

.service_price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

.service_btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service_btn:hover {
    background-color: var(--dark-color);
    color: #fff;
}

/* Testimonial Section */
.testimonial_section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.testimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial_item {
    padding: var(--spacing-lg);
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial_item blockquote {
    margin-bottom: var(--spacing-md);
    font-style: italic;
    color: #666;
}

.testimonial_author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
}

/* Contact Section */
.contact_section {
    padding: var(--spacing-xl) 0;
}

.contact_wrapper {
    display: flex;
    gap: var(--spacing-xl);
}

.contact_info {
    flex: 1;
}

.contact_info p {
    margin-bottom: var(--spacing-md);
}

.contact_form {
    flex: 2;
}

.form_group {
    margin-bottom: var(--spacing-md);
}

.form_control {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
}

textarea.form_control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer_area {
    padding: var(--spacing-xl) 0;
    background-color: #222;
    color: #fff;
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.footer_widget h4 {
    color: #fff;
    margin-bottom: var(--spacing-lg);
}

.footer_logo {
    display: block;
    margin-bottom: var(--spacing-md);
}

.footer_logo img {
    height: 40px;
}

.footer_widget ul li {
    margin-bottom: var(--spacing-sm);
}

.footer_widget ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer_widget ul li a:hover {
    color: var(--primary-color);
}

.copyright_text {
    margin-top: var(--spacing-lg);
    font-size: 0.9rem;
    color: #888;
}

.contact_info p {
    color: #ccc;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .choose_img, .choose_content {
        flex: 100%;
    }

    .choose_content {
        padding: var(--spacing-xl) 0;
    }

    .why_choose_section .row {
        flex-direction: column;
    }

    .contact_wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .hero_overlay {
        padding: 80px 0;
    }

    .hero_content {
        max-width: 100%;
    }

    .features_section .row {
        flex-direction: column;
    }

    .feature_item {
        margin-bottom: var(--spacing-lg);
    }

    .img_bg {
        height: 300px;
    }

    .section_title h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .service_item, .testimonial_item, .game_card {
        margin-bottom: var(--spacing-lg);
    }

    .img_bg {
        height: 250px;
    }
}

/* Page Header */
.page_header {
    background-color: var(--light-color);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page_header h1 {
    margin-bottom: var(--spacing-sm);
}

.breadcrumbs {
    color: #666;
}

.breadcrumbs a {
    color: var(--primary-color);
}

/* Checkout Section */
.checkout_section {
    padding: var(--spacing-xl) 0;
}

.checkout_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.cart_summary, .checkout_form {
    background-color: #fff;
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart_items {
    margin-bottom: var(--spacing-xl);
}

.cart_item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #eee;
}

.cart_item:last-child {
    border-bottom: none;
}

.cart_item_img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: var(--spacing-md);
}

.cart_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart_item_details {
    flex-grow: 1;
}

.cart_item_details h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.cart_item_details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart_item_price {
    color: var(--dark-color);
    font-weight: 700;
}

.cart_item_quantity {
    display: flex;
    align-items: center;
    margin: 0 var(--spacing-md);
}

.quantity_btn {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity_input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 1rem;
    margin: 0 5px;
}

.remove_btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
}

.remove_btn:hover {
    color: var(--primary-color);
}

.cart_totals {
    padding-top: var(--spacing-lg);
    border-top: 1px solid #eee;
}

.totals_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.totals_row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    padding-top: var(--spacing-md);
    border-top: 1px solid #eee;
    margin-top: var(--spacing-md);
}

.form_section {
    margin-bottom: var(--spacing-xl);
}

.form_section h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #eee;
}

.form_row {
    display: flex;
    gap: var(--spacing-md);
}

.form_group {
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.form_group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.payment_methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.payment_method {
    display: flex;
    align-items: center;
}

.payment_method input[type="radio"] {
    margin-right: var(--spacing-sm);
}

.checkout_btn {
    margin-top: var(--spacing-md);
    width: 100%;
    padding: var(--spacing-md);
}

.checkbox_container {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.checkbox_container input {
    margin-right: var(--spacing-sm);
}

/* Related Products */
.related_products {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.related_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .checkout_wrapper {
        grid-template-columns: 1fr;
    }

    .cart_summary {
        order: 2;
    }

    .checkout_form {
        order: 1;
    }

    .choose_img, .choose_content {
        flex: 100%;
    }

    .choose_content {
        padding: var(--spacing-xl) 0;
    }

    .why_choose_section .row {
        flex-direction: column;
    }

    .contact_wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .service_item, .testimonial_item, .game_card {
        margin-bottom: var(--spacing-lg);
    }

    .img_bg {
        height: 250px;
    }

    .cart_item {
        flex-wrap: wrap;
        position: relative;
        padding-bottom: var(--spacing-lg);
    }

    .cart_item_img {
        width: 60px;
        height: 60px;
    }

    .cart_item_details {
        width: calc(100% - 80px);
    }

    .cart_item_quantity {
        order: 3;
        margin: var(--spacing-md) 0 0 80px;
    }

    .remove_btn {
        position: absolute;
        top: var(--spacing-md);
        right: 0;
    }

    .form_row {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .hero_overlay {
        padding: 80px 0;
    }

    .hero_content {
        max-width: 100%;
    }

    .features_section .row {
        flex-direction: column;
    }

    .feature_item {
        margin-bottom: var(--spacing-lg);
    }

    .img_bg {
        height: 300px;
    }

    .section_title h2 {
        font-size: 1.8rem;
    }

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

    .cookie_buttons {
        width: 100%;
    }

    .cookie_buttons .btn {
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .hero_overlay {
        padding: 80px 0;
    }

    .hero_content {
        max-width: 100%;
    }

    .features_section .row {
        flex-direction: column;
    }

    .feature_item {
        margin-bottom: var(--spacing-lg);
    }

    .img_bg {
        height: 300px;
    }

    .section_title h2 {
        font-size: 1.8rem;
    }

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

    .cookie_buttons {
        width: 100%;
    }

    .cookie_buttons .btn {
        width: 100%;
    }
}

/* Thank You Page */
.thankyou_section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.thankyou_content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.success_icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto var(--spacing-lg);
    position: relative;
}

.success_icon:before, .success_icon:after {
    content: '';
    position: absolute;
    background-color: white;
}

.success_icon:before {
    width: 40px;
    height: 8px;
    transform: rotate(45deg);
    left: 25px;
    top: 42px;
}

.success_icon:after {
    width: 20px;
    height: 8px;
    transform: rotate(-45deg);
    left: 20px;
    top: 40px;
}

.thankyou_content h1 {
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.thankyou_content p {
    margin-bottom: var(--spacing-md);
    color: #666;
}

.order_summary {
    margin: var(--spacing-xl) 0;
    text-align: left;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: var(--spacing-lg);
    background-color: #f9f9f9;
}

.order_summary h3 {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #eee;
}

.order_details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.detail_row {
    display: flex;
    justify-content: space-between;
}

.thankyou_actions {
    margin-top: var(--spacing-xl);
}

.btn_light {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn_light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.what_next_section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.what_next_section h2 {
    margin-bottom: var(--spacing-xl);
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
}

.step_item {
    padding: var(--spacing-lg);
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step_number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto var(--spacing-md);
}

/* Cookie Banner */
.cookie_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: #fff;
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie_banner.show {
    transform: translateY(0);
}

.cookie_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.cookie_text {
    flex: 1;
    min-width: 280px;
}

.cookie_text p {
    margin-bottom: 0;
}

.cookie_buttons {
    display: flex;
    gap: var(--spacing-sm);
}

@media screen and (max-width: 768px) {
    .cookie_container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie_buttons {
        width: 100%;
    }

    .cookie_buttons .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .service_item, .testimonial_item, .game_card {
        margin-bottom: var(--spacing-lg);
    }

    .img_bg {
        height: 250px;
    }

    .cart_item {
        flex-wrap: wrap;
        position: relative;
        padding-bottom: var(--spacing-lg);
    }

    .cart_item_img {
        width: 60px;
        height: 60px;
    }

    .cart_item_details {
        width: calc(100% - 80px);
    }

    .cart_item_quantity {
        order: 3;
        margin: var(--spacing-md) 0 0 80px;
    }

    .remove_btn {
        position: absolute;
        top: var(--spacing-md);
        right: 0;
    }

    .form_row {
        flex-direction: column;
    }

    .detail_row {
        flex-direction: column;
        gap: 5px;
        border-bottom: 1px solid #eee;
        padding-bottom: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }

    .detail_row:last-child {
        border-bottom: none;
    }
}

@media screen and (max-width: 768px) {
    .hero_overlay {
        padding: 80px 0;
    }

    .hero_content {
        max-width: 100%;
    }

    .features_section .row {
        flex-direction: column;
    }

    .feature_item {
        margin-bottom: var(--spacing-lg);
    }

    .img_bg {
        height: 300px;
    }

    .section_title h2 {
        font-size: 1.8rem;
    }

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

    .cookie_buttons {
        width: 100%;
    }

    .cookie_buttons .btn {
        width: 100%;
    }
}

/* Product Selection Tabs */
.product_tabs {
    display: flex;
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid #eee;
}

.tab_btn {
    flex: 1;
    background: none;
    border: none;
    padding: var(--spacing-md);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab_btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

.product_selection {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: var(--spacing-lg);
    padding-right: var(--spacing-sm);
}

.product_item {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #eee;
}

.product_item:last-child {
    border-bottom: none;
}

.product_radio {
    margin-right: var(--spacing-md);
}

.product_radio input[type="radio"] {
    display: none;
}

.product_radio label {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.product_radio input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product_img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: var(--spacing-md);
}

.product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_details {
    flex-grow: 1;
}

.service_details {
    margin-left: var(--spacing-md);
}

.product_details h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.product_details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product_price {
    color: var(--dark-color);
    font-weight: 700;
}

/* Scrollbar Styling */
.product_selection::-webkit-scrollbar {
    width: 6px;
}

.product_selection::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product_selection::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.product_selection::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .checkout_wrapper {
        grid-template-columns: 1fr;
    }

    .cart_summary {
        order: 2;
    }

    .checkout_form {
        order: 1;
    }

    .choose_img, .choose_content {
        flex: 100%;
    }

    .choose_content {
        padding: var(--spacing-xl) 0;
    }

    .why_choose_section .row {
        flex-direction: column;
    }

    .contact_wrapper {
        flex-direction: column;
    }
}