section.buy-section.buy {
    padding-top: 90px;
}

.buy-section.buy .wherebuy-section.desctop {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    padding: 0;
}

.buy-section.buy h1.section-title {
    font-size: 40px;
    line-height: 100%;
	margin-bottom: 15px;
}

.buy-section.buy .wherebuy-header p {
    margin: 15px 0;
    line-height: 125%;
    font-size: 24px;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-title {
    font-size: 24px;
    line-height: 100%;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    font-family: 'GaretWebBook';
    margin: 0;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-title .ellipse {
    width: 16px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-grid-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 55%;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-grid-item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-item {
    display: flex;
    width: 100%;
    max-width: 225px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 250px;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-image {
    width: 194px;
    height: 194px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.buy-section.buy .wherebuy-section .wherebuy-name {
    font-size: 16px;
    line-height: 125%;
    color: #2D2D2D;
    text-align: center;
    font-family: 'GaretWebBook';
}

.buy-section.buy .wherebuy-section.desctop .wherebuy-name:hover {
    color: #BA5A42;
}

@media (max-width: 1440px) {
    .buy-section.buy .wherebuy-section.desctop {
        padding: 0 40px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-title {
        font-size: 42px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-item {
        width: 300px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-image {
        height: 330px;
    }
	
}

@media (max-width: 1200px) {
    .buy-section.buy .wherebuy-section.desctop {
        padding: 0 30px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-title {
        font-size: 36px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-item {
        width: 280px;
        height: auto;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .buy-section.buy .wherebuy-section.desctop {
        padding: 0 20px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-title {
        font-size: 32px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-item {
        width: 250px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-image {
        height: 270px;
    }
    
    .buy-section.buy .wherebuy-section.desctop .wherebuy-name {
        padding: 12px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
	
    .buy-section.buy .wherebuy-section.mobile {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
	.buy-section.buy .wherebuy-section.mobile .wherebuy-header {
        font-size: 16px;
        line-height: 125%;
        height: 17px;
		font-family: 'GaretWebBook';
    }
	
	.buy-section.buy .wherebuy-section.mobile .wherebuy-header span.ellipse {
		width: 16px;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		margin-right: 6px;
	}
    
	.buy-section.buy h1.section-title {
		display: none;
	}
	
    .buy-section.buy .wherebuy-section.mobile  .wherebuy-title {
        font-size: 28px;
    }
	
	.buy-section.buy .wherebuy-section.mobile .marketplace-item:hover span {
        color: #BA5A42;
    }
	 
    .buy-section.buy .wherebuy-section.mobile  .wherebuy-item {
        width: 220px;
    }
    
    .buy-section.buy .wherebuy-section.mobile  .wherebuy-image {
        height: 240px;
    }
    
    .buy-section.buy .wherebuy-section.mobile  .wherebuy-name {
        font-size: 14px;
    }
	
}

@media (max-width: 576px) {
    .buy-section.buy .wherebuy-section.mobile {
        padding: 0;
    }
    
    .buy-section.buy .wherebuy-section.mobile .wherebuy-title {
        font-size: 24px;
    }
    
	.buy-section.buy .marketplaces-grid {
        place-items: center;
    }
	
	.buy-section.buy .wherebuy-section.mobile .marketplace-item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		color: #2D2D2D;
		font-size: 10px;
		font-family: 'GaretWebBook';
		min-height: 94px;
	}
	
	.buy-section.buy .wherebuy-section.mobile .marketplace-item img {
		width: 73px;
		height: 73px;
		object-fit: contain;
	}
	
    .buy-section.buy .wherebuy-section.mobile .wherebuy-item {
        width: 200px;
    }
    
    .buy-section.buy .wherebuy-section.mobile .wherebuy-image {
        height: 220px;
    }
    
    .buy-section.buy .wherebuy-section.mobile .wherebuy-name {
        padding: 10px;
        font-size: 13px;
    }
	
}