.swiper-container-shopping-paths {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto 50px;
}
.swiper-shopping-paths {
    position: relative;
    margin-bottom: 20px;
}
.categorySwiper .swiper-wrapper {
    justify-content: flex-start;
}
.categorySwiper .swiper-slide {
    width: auto;
    white-space: nowrap;
    padding: 10px 0px;
}
.categorySwiper .swiper-slide.active .content-brightwhite-btn {
    color: white;
    background-color: var(--night);
    cursor: pointer;
}
.categorySwiper .swiper-slide.active .content-brightwhite-btn:hover {
    text-decoration: underline;
}
.productSwiper .swiper-slide {
    width: 360px;
    min-height: 360px;
    box-sizing: border-box;
}
.productSwiper .swiper-slide:hover img {
    scale: 1.03;
    transition: all 300ms ease-in-out;
}
.productCard {
    padding: 10px 20px 30px;
    background-color: var(--brightwhite);
    min-height: 380px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.productCard picture {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.productCard img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.promoCard {
    height: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.promoCard img {
    display: block;
    width: 100%;
    min-height: 380px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.skeleton {
    height: 380px;
    background: #eee;
    border-radius: 8px;
    animation: pulse 1.2s infinite ease-in-out;
}
@keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0.4;
}
100% {
opacity: 1;
}
}
.swiper-btn-shopping-paths {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-image: none;
    color: var(--night);
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s ease;
    margin: 0;
}
.swiper-btn-shopping-paths:after {
    font-size: 14px;
    font-weight: bold;
    color: navy;
}
.category-prev {
    left: 10px;
}
.category-next {
    right: 10px;
}
.product-prev {
    left: 10px;
}
.product-next {
    right: 10px;
}
.categorySwiper:hover .category-prev:not(.is-hidden), .categorySwiper:hover .category-next:not(.is-hidden), .productSwiper:hover .product-prev:not(.is-hidden), .productSwiper:hover .product-next:not(.is-hidden) {
    opacity: 1;
    pointer-events: auto;
}
.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}
.swiper-btn-shopping-paths:hover {
    transform: translateY(-50%) scale(1.05);
}

@media screen and (max-width: 1500px) {
.swiper-container-shopping-paths {
    padding: 0 20px;
}
}

@media (max-width: 767px) {
.category-prev, .category-next {
    display: none;
}
}


.hpg-sp-container {
    display: flex;
    grid-gap: 20px;
    background-color: inherit;
    overflow: inherit;
}

.hpg-sp-content {
    width: 100%;
	max-width:454px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto 30px;
}

.hpg-sp-content:hover .hpg-sp-content-copy h5{
	text-decoration: underline;
}
.hpg-sp-content img {
    width: 100%;
	aspect-ratio:360/380;
}
.hpg-sp-content-copy {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
}
.hpg-sp-content-copy-gradient-night{
	width: 100%;
	height: 100%;
	background: rgba(10,38,66,.2);
    background: linear-gradient(180deg, rgba(10,38,66,0) 10%, rgba(10,38,66,.5) 100%);
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
}
.hpg-sp-content-copy-gradient-black{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
    background: linear-gradient(180deg, rgba(0,0,0,0) 10%, rgba(0,0,0,.5) 100%);
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
}
.hpg-sp-content-copy-shadow{
	-webkit-filter: drop-shadow(1px 2px 5px #000);
    filter: drop-shadow(1px 2px 5px #000);
}
.hpg-sp-content-copy h5 {
    font-size: 16px;
    margin: 0;
	position:relative;
	z-index:1;
}
.hpg-sp-content-copy p {
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    margin: 0;
	position:relative;
	z-index:1;
}
.hpg-sp-content-brightwhite-copy h5 {
    color: var(--brightwhite);
}
.hpg-sp-content-brightwhite-copy p {
    color: var(--brightwhite);
}
.hpg-sp-content-night-copy h5 {
    color: var(--night);
}
.hpg-sp-content-night-copy p {
    color: var(--night);
}
.hpg-sp-content-white-copy h5 {
    color: var(--white);
}
.hpg-sp-content-white-copy p {
    color: var(--white);
}
/*@media screen and (max-width:991px) {
.hpg-sp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width:450px) {
.hpg-sp-content-copy {
    padding: 10px;
}
.hpg-sp-content-copy h5, .hpg-sp-content-copy p {
    font-size: 12px;
}
}*/