* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body {
	background: #1d2538;
	color: #fff;
	overflow-x: hidden;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
.navbar {
	background: #141c2d;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.container {
	max-width: 1180px;
}
.navbar-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
}
.navbar-brand:hover {
	color: #fff;
}
.navbar-brand i {
	color: #ff313d;
	font-size: 22px;
}
.brand-red {
	color: #ff313d;
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.size-chart {
	color: #d9deeb;
	font-size: 13px;
	font-weight: 500;
}
.size-chart:hover {
	color: #fff;
}
.cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    border: 1px solid rgb(106 99 99);
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 13px;
    transition: .3s;
}
.cart-text {
    font-size:12px;  
    font-weight:500;
    line-height:1;
}
.cart-btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, .05);
}
.cart-btn i {
	font-size: 12px;
}
.cart-badge {
    position: absolute;
    top: -12px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #ff2a36;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid #141c2d;
}
.hero {
	padding: 55px 0 45px;
	text-align: center;
}
.hero h1 {
	font-size: 40px;
	font-weight: 800;
	line-height: 1.1;
}
.hero h1 span {
	color: #ff313d;
}
.hero p {
	margin: 22px auto 0;
	max-width: 760px;
	color: #98aed0;
	font-size: 14px;
	line-height: 1.8;
}
.stores {
	padding-bottom: 80px;
}
.stores .container {
	max-width: 1100px;

}
.stores .row {
	justify-content: flex-start;
	/* gap: 18px; */
}
.store-card {
	position: relative;
	width: 100%;
	height: 230px;
	overflow: hidden;
	border-radius: 18px;
	background: #111827;
	border: 1px solid rgba(255, 255, 255, .08);
	transition: .3s;
}
.store-card img {
	width: 100%;
	height: 210px;
}
.store-card::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 90px;
	background: linear-gradient(to top, rgba(0, 0, 0, .82), transparent);
}
.banner-overlay {
	position: absolute;
	bottom: 18px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 5;
}
.banner-overlay h3 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}
.banner-overlay p {
    font-size: 14px;
    color: #fff;
    margin: 10px 0px 0px 0px;
}
footer {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding: 22px 0;
	text-align: center;
	color: #8ea2c4;
	font-size: 12px;
	margin-top: 30px;
}
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-track{
    background:#f1f1f1;
}
::-webkit-scrollbar-thumb{
    background:#b5b5b5;
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover{
    background:#8d8d8d;

}
@media (max-width:1200px) {
	.container {
		max-width: 1000px;
	}
	.hero h1 {
		font-size: 52px;

	}
	.store-card {
		height: 205px;
	}
	.store-card img {
		height: 205px;

	}
	.banner-overlay h3 {
		font-size: 22px;
	}
	.banner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin: 30px 0 0 120px;
    border-radius: 6px;
}
}
@media (max-width:991px) {
	.navbar {
		padding: 12px 0;
	}
	.navbar-brand {
		font-size: 16px;
	}
	.hero {
		padding: 45px 0;

	}
	.hero h1 {
		font-size: 42px;
	}
	.hero p {
		font-size: 15px;
		max-width: 600px;
	}
	.stores .row {
		justify-content: center;
		gap: 10px;
	}
	.store-card {
		height: 210px;
	}
	.store-card img {
		height: 210px;
	}
	.banner-overlay h3 {
		font-size: 22px;
	}
	.banner-overlay p {
		font-size: 14px;
	}
	.team-colors{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:10px;
}

.color-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.5);
    box-shadow:0 2px 6px rgba(0,0,0,.3);
}
.store-card{
    position:relative;
}

.store-lock{
    position:absolute;
    top:15px;
    right:15px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffc107;
    z-index:99;
}

.store-deadline{
    margin-top:8px;
    color:#ffc107;
    font-size:13px;
    font-weight:600;
}

.store-deadline i{
    margin-right:5px;
}
.banner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin: 30px 0 0 120px;
    border-radius: 6px;
}
}
@media (max-width:767px) {
	.hero {
		padding: 35px 15px;
	}
	.hero h1 {
		font-size: 34px;
	}
	.hero p {
		font-size: 14px;
		line-height: 1.6;
	}
	.nav-right {
		gap: 12px;
	}
	.size-chart {
		font-size: 12px;
	}
	.cart-btn {
		padding: 6px 12px;
		font-size: 12px;
	}
	.cart-btn i {
		font-size: 13px;
	}
	.cart-badge {
		width: 17px;
		height: 17px;
		font-size: 9px;
		top: -6px;
		right: -6px;
	}
	.stores .container {
		max-width: 100%;
	}
	.stores .row {
		justify-content: center;
	}
	.store-card {
		height: 190px;
		margin-bottom: 15px;
	}
	.store-card img {
		height: 190px;
	}
	.banner-overlay {
		bottom: 20px;
	}
	.banner-overlay h3 {
		font-size: 20px;

	}
	.banner-overlay p {
		font-size: 13px;
	}
	footer {
		font-size: 13px;
	}
	.team-colors{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:10px;
}

.color-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.5);
    box-shadow:0 2px 6px rgba(0,0,0,.3);
}
.store-card{
    position:relative;
}

.store-lock{
    position:absolute;
    top:15px;
    right:15px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffc107;
    z-index:99;
}

.store-deadline{
    margin-top:8px;
    color:#ffc107;
    font-size:13px;
    font-weight:600;
}

.store-deadline i{
    margin-right:5px;
}
}
@media (max-width:575px) {
	.navbar-brand {
		font-size: 15px;
	}
	.hero h1 {
		font-size: 30px;
	}
	.hero p {
		font-size: 13px;
	}
	.store-card {
		height: 230px;
	}
	.store-card img {
		height: 180px;
	}
	.banner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin: 30px 0 0 120px;
    border-radius: 6px;
}
	.banner-overlay h3 {
		font-size: 18px;
	}
	.banner-overlay p {
		font-size: 12px;
	}
	.team-colors{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:10px;
}

.color-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.5);
    box-shadow:0 2px 6px rgba(0,0,0,.3);
}
.store-card{
    position:relative;
}

.store-lock{
    position:absolute;
    top:15px;
    right:15px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffc107;
    z-index:99;
}

.store-deadline{
    margin-top:8px;
    color:#ffc107;
    font-size:13px;
    font-weight:600;
}

.store-deadline i{
    margin-right:5px;
}
}
.store-card img {
	object-position: center;
}
.col-lg-5,
.col-md-6 {
	padding-left: 10px;
	padding-right: 10px;
}
.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #dc3545;
    text-align: center;
    padding: 8px;
}
.no-image i {
    font-size:24px;
    margin-bottom:6px;
    color:#ff4d4f;
}
.no-image span{
    font-size:11px;
    font-weight:600;
    line-height:1.3;
}

