body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	gap: 2.5rem;
	margin: 0;
    background-color: #f5f5f7;
    color: #1d1d1f;
    font-family: "Inter", sans-serif;
    font-style: normal;
}

body.no-scroll {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
p,
ul,
li {
	margin: 0;
}

h1,
h3,
h2 {
	font-size: 1.5rem;
}

p,
label,
li {
	font-size: 1.2rem;
}

li {
	font-weight: 450;
}

button {
    cursor: pointer;
}


input[type="text"] {
	font-family: 'Montserrat';
	font-weight: 320;
    padding: 1rem;
	border: none;
    border-radius: 1rem;
    color: #505050;
    font-size: 0.9rem;
}

header {
	display: flex;
    justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
}

.menu-comp {
	display: flex;
	gap: 1rem;
}

.menu-mob {
	display: none;
	gap: 1.5rem;
}

.menu {
	border: 1px solid #a9c9f9;
    border-radius: 999rem;
    background: #e2ecfd;
    padding: 0.5rem 1.1rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.menu a,
.menu-mob a {
	font-size: 1rem;
	text-decoration: none;
	color: #1B1F23;
	font-weight: 450;
}

.menu a:hover {
	color: #3B82F6;
}

.logo-img {
	width: 8%;
}

.cart-button-mob {
	display: none !important;
}

main {
	display: flex;
    flex-direction: column;
	padding: 0 2.5rem;
	gap: 2.5rem;
}

.product-card {
    display: flex;
	gap: 3rem;
}

.slider-container {
    position: relative;
    max-width: 50%;
}

.slider {
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
    border-radius: 2rem;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    user-select: none;
    border-radius: 100%;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 0.8rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 0.5rem;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    transform: scale(1.1);
    border: 2px solid white;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

.product-buy {
	display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-description {
	display: flex;
	flex-direction: column;
    width: 50%;
    gap: 2rem;
}

.product-description p {
	font-size: 1rem;
}

.product-price {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price span {
	font-size: 1.2rem;
    font-weight: 600;
}

.product-price-button {
    display: flex;
    align-items: center;
	gap: 1.2rem;
}

.product-price-button button {
    font-size: 1.8rem;
    font-weight: 600;
    background: none;
    color: #3B82F6;
    border: none;
}

.counter-value {
    border: 1px solid #d2d2d2;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.buy-buttons {
    display: flex;
	justify-content: space-between;
	gap: 0.6rem;
}

.buy-button,
.buy-button-cart {
    font-family: 'Montserrat';
    font-size: 1.2rem;
    font-weight: 600;
    background: #3B82F6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 10px 15px;
}

.buy-button {
	width: 90%;
}

.label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-level {
    background-color: rgb(100%, 84.3%, 0%);
    color: #000000;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    text-align: center;
}

.label-recommendation {
    background-color: #ff3d3d;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    text-align: center;
}

.delivery-and-payment {
	display: flex;
	justify-content: space-between;
    gap: 4%;
    margin-top: -0.8rem;
}

.delivery-and-payment button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	gap: 0.5rem;
	font-size: 1.2rem;
	font-weight: 500;
	border: none;
	border-radius: 0.5rem;
	background: #eeeeee;
	color: #8c8c8c;
	width: 48%;
}

.delivery-and-payment button svg {
	width: 20px;
	height: 20px;
}

.game-description {  
    display: flex;
    flex-direction: column;
	gap: 2rem;
}

.game-description > * {  
    display: flex;
    flex-direction: column;
	gap: 1.5rem;
}

.game-description-cards {
    display: flex;
	justify-content: space-between;
	gap: 1.5rem;
}

.game-description-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 20%;
	padding: 1rem;
	background: #e2ecfd;
	border-radius: 1rem;
}

.game-description-card p {
	font-size: 1rem;
}

.game-description-card img {
	max-width: 100%;
	height: 200px;
	border-radius: 1rem;
	object-fit: cover;
}

.game-banner {
	position: relative;
}

.game-banner img {
	object-fit: cover;
    height: 300px;
	border-radius: 1rem;
}

.content-overlay {
    display: flex;
	justify-content: flex-end;
    align-items: center;
	text-align: right;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
}

.content-overlay p {
	font-size: 0.9rem;
	max-width: 30%;
	margin: 0 2rem 0 0;
	padding: 2rem;
	background: #000000ad;
	border-radius: 1rem;
	font-weight: 500;
	color: #ffffff;
}

.game-reviews {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 2rem;
}

.title-reviews {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.cards-reviews {
	display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
	scrollbar-color: #3B82F6 #F5F6F7;
	padding-bottom: 2rem;
}

.card-reviews {
	flex: 0 0 400px;
	display: flex;
    flex-direction: column;
	background: #ffffff;
	border-radius: 1rem;
	gap: 1rem;
	padding: 1.5rem;	
}

.top-of-review {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.top-of-review-img {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	padding: 0.8rem;
}

.top-of-review-user-name {
	font-weight: 600;
}

.top-of-review-user-date {
	color: #808080;
}

.card-reviews-stars {
	width: 30%;
}

footer {
	border-top: 1px solid #e5e5e5;
	padding-top: 2rem;
}

.footer_top {
	padding: 0 1.5rem;
}

.footer-logo img {
	width: 6%;
}

.footer_row {
	display: flex;
    justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
}

.footer_row_info {
	display: flex;
	width: 70%;
	gap: 4rem;
}

.footer_col {
	display: flex;
    flex-direction: column;
	gap: 1rem;
	max-width: 45%;
}

.footer_col p {
	font-weight: 700;
	font-size: 1.3rem;
}

.footer_col a,
.business_hours {
	display: flex;
	gap: 0.8rem;
	text-decoration: none;
	color: #1B1F23;
	font-weight: 450;
}

.footer_col a svg,
.business_hours svg {
	color: #3B82F6;
}

.social_media {
	display: flex;
    gap: 1rem;
}

.footer_bottom {
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	background: #1B1F23;
    color: white;
	margin-top: 2.5rem;
}

.footer_bottom p {
	font-size: 0.9rem;
	font-weight: 500;
}

.subscribe {
	display: flex;
    flex-direction: column;
	max-width: 30%;
	gap: 1rem;
	background: #e2ecfd;
	padding: 1.5rem;
	border-radius: 1rem;
}

.subscribe_title {
	font-size: 1.3rem !important;
	font-weight: 620;
}

.subscribe p {
	font-size: 0.9rem;
}

.subscribe button {
    font-family: 'Montserrat';
    font-size: 1.2rem;
    font-weight: 600;
    background: #3B82F6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 10px 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 20;
    padding: 0.5rem 0.5rem 0.5rem 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
	header {
		flex-direction: row-reverse;
	}
	
	.hamburger {
        display: flex;
    }
	
	.menu-comp {
	    display: none;
    }
	
	.menu-mob {
        position: absolute;
        top: 75px;
        left: 20px;
	    width: 70%;
        flex-direction: column;
        background: #3B82F6;
        padding: 20px;
        border-radius: 10px;
        z-index: 9999;
    }

    .menu {
        display: none;
    }

    .menu-mob.show {
        display: flex !important;
	    flex-direction: column;
    }
	
	.menu-mob a {
		color: #ffffff;
	}
	
	.cart-button-mob {
	    display: unset !important;
    }
	
	.cart-button {
		display: none !important;
	}
	
	main {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
	h1 {
	    font-size: 2.5rem;
    }
		
	.footer_bottom p {
		font-size: 0.6rem;
	}
	
	.menu {
		display: none;
	}
	
	.product-card {
		flex-direction: column;
	}
	
	.slider-container {
		max-width: 100%;
	}
	
	.product-description {
		width: 100%;
	}
	
	.game-description-cards {
		flex-direction: column;
	}
	
	.game-description-card {
		max-width: 100%;
		gap: 1rem;
	}
	
	.game-description-card p {
	    font-size: 1.2rem;
    }
}

@media (max-width: 321px) {
	.label {
		flex-direction: column;
		align-items: unset;
	}
	
	.delivery-and-payment,
    .product-price,
    .footer_bottom	{
		flex-direction: column;
	}
	
	a,
	div,
    p,
    button,
	h1,
    h3,
    h2{
		word-break: break-all;
	}
}

@media (max-width: 500px) {
	.logo-img {
		width: 25%;
	}
	
	.footer_row {
		flex-direction: column;
		align-items: unset;
		gap: 4rem;
	}
	
	.footer_row_info {
		flex-direction: column;
	}
	
	.subscribe {
		max-width: unset;
	}
	
	.footer_col {
		max-width: unset;
	}
	
	.footer-logo img {
		width: 22%;
	}
	
	.email_support svg,
	.business_hours svg {
		display: none;
	}
	
	.prev,
	.next {
		background-color: rgba(0, 0, 0, 0.7);
	}
	
	.slider {
		border-radius: 1rem;
	}
	
	.thumb {
		width: 2.4rem;
        height: 2.4rem;
		border-radius: 0.5rem;
	}
	
	.dot {
		width: 0.5rem;
        height: 0.5rem;
	}
	
	h1,
	h3,
	h2 {
		font-size: 1.4rem;
	}
	
	.product-description p {
		font-size: 1.2rem;
	}
	
	.product-price span {
		font-size: 1.4rem;
	}
	
	.product-price-button {
        gap: 0.5rem;
    }
	
	
	.delivery-and-payment button {
		gap: 0.2rem;
	}
	
	.delivery-and-payment button svg {
		width: 30px;
        height: 30px;
	}
	
	.game-banner {
		display: none;
	}
	
	.title-reviews {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.3rem;
	}
	
	.card-reviews {
		flex: 0 0 250px;
	}
	
	.top-of-review-img {
		font-size: 1rem;
		width: 20px;
        height: 20px;
	}
	
	.top-of-review p {
		font-size: 1rem;
	}
	
	.top-of-review-user-date {
		font-size: 0.9rem !important;
	}
	
	.card-reviews-feedback {
		font-size: 0.8rem;
	}
}

@media screen and (min-width: 500px) and (max-width: 768px) {
	.logo-img {
		width: 15%;
	}
	
	.footer_row {
		flex-direction: column;
		align-items: unset;
		gap: 4rem;
	}
	
	.footer_row_info {
		flex-direction: column;
	}
	
	.subscribe {
		max-width: 70%;
	}
	
	.footer_col {
		max-width: unset;
	}
	
	.footer-logo img {
		width: 14%;
	}
	
	.email_support svg,
	.business_hours svg {
		display: none;
	}
	
	.slider {
		height: 400px;
	}
	
	.content-overlay p {
		max-width: 50%;
        margin: 0 1.5rem 0 0;
	}
}

@media screen and (min-width: 500px) and (max-width: 1024px) {
	.prev,
	.next {
		background-color: rgba(0, 0, 0, 0.7);
	}
	
	.slider {
		border-radius: 1.5rem;
	}
	
	.thumb {
		width: 3rem;
        height: 3rem;
		border-radius: 0.5rem;
	}
	
	.dot {
		width: 0.5rem;
        height: 0.5rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.slider {
		height: 500px;
	}
	
	.game-description-cards {
        flex-wrap: wrap;
		flex-direction: unset;
    }
	
	.game-description-card {
		max-width: 40%;
	}
	
	.content-overlay p {
		max-width: 40%;
	}
	
	.email_support svg,
	.business_hours svg {
        display: none;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3b82f612;
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 2.5rem;
  cursor: pointer;
}

.modal-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    max-width: 80%;
    width: 70%;
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
}

.modal-content-text-delivery,
.modal-content-text-payment {
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	min-height: 95%;
    scroll-snap-align: start;
}

.modal-content-text-delivery h3,
.modal-content-text-payment h3 {
	font-size: 1.8rem;
}

.modal-content-text-delivery p,
.modal-content-text-delivery li,
.modal-content-text-payment p,
.modal-content-text-payment li {
	font-size: 1.2rem;
}

@media (max-width: 600px) {
	.modal-content {
		padding: 2rem 1rem;
		width: 85%;
		max-width: 95%;	
		max-height: 80vh;
	}
	
	.modal-content-text-delivery p:last-child,
    .modal-content-text-payment p:last-child {
	    padding-bottom: 2rem;
    }
}

@media (max-height: 570px) {
	.modal-content {
		padding: 2rem 1rem;
		width: 85%;
		max-width: 95%;	
		max-height: 80vh;
	}
	
	.modal-content-text-delivery p:last-child,
    .modal-content-text-payment p:last-child {
	    padding-bottom: 2rem;
    }
}

.fs-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fs-modal.active {
    display: flex;
}

.fs-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 1001;
    user-select: none;
}

.fs-slider {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    overflow: hidden;
    border-radius: 10px;
}

.fs-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.fs-slide {
    min-width: 100%;
    height: 100%;
}

.fs-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: black;
}

.fs-prev,
.fs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.6);
    color: white;
    font-size: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    z-index: 10;
}

.fs-prev { left: 20px; }
.fs-next { right: 20px; }

.fs-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 90vw;
    padding: 0 20px;
}

.fs-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s;
}

.fs-thumb.active {
    opacity: 1;
    border-color: white;
    transform: scale(1.1);
}