:root {
	--green: #15CB5E;
	--lightgreen: #E6FFB7;
	--cream: #F8F9FA;
}


.shopping-container{
	position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.product-wrapper{
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.product-list .product-item{
    list-style: none;
}

.product-list .product-item .product-link{
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.product-list .product-item .product-link:active{
    cursor: grabbing;
}

.product-list .product-item .product-link:hover{
    border-color: var(--green);
}

.product-list .product-link .product-image{
    width: 100%;
    aspect-ratio: 16 / 9; /* 1:1 비율 유지 */
    object-fit: cover;
    border-radius: 10px;
}

.product-list .product-link .badge{
    color: var(--green);
    margin: 16px 0 18px;
    padding: 8px 10px;
    font-weight: 500;
    font-size: 0.95rem;
    background: var(--lightgreen);
    width: fit-content;
    border-radius: 50px;
}




.product-list .product-link .product-title{
    font-size: 1.5em;
    color: #000;
    font-weight: 100;
}
.product-description{
	font-size: 1.2em;
    color: #000;
    font-weight: 100;
}

.product-list .product-link .product-button{
    height: 35px;
    width: 35px;
    color: var(--green);
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    transform: rotate(-45deg);
    border: 2px solid var(--green);
    transition: 0.4s ease;
}

.product-list .product-link:hover .product-button{
    color: #fff;
    background:var(--green);
}
.card-rate{
	position: absolute;
	top: 28px;
	left: 25px;
	text-shadow: -1px 0px black, 0px 1px black, 1px 0px black, 0px -1px black;
}

.card-views{
	position: absolute;
	top: 10px;
	right: 23px;
}

.card-views.badge {
    color: var(--green);
    padding: 6px 12px;
    font-weight: 500;
    font-size: 0.95rem;
    background: var(--lightgreen);
    width: fit-content;
    border-radius: 50px;
}

.img-container{
	cursor: pointer;
}

.product-image {
	width: 100%;
	height: 200px;
	background-color: #e0e0e0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
}

.product-wrapper .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: var(--green);
}

.product-wrapper .swiper-pagination-bullet-active{
    opacity: 1;
}

.product-wrapper .swiper-slide-button{
    color: var(--green);
    margin-top: -35px;
} 

@media screen and (max-width: 768px){
    .product-wrapper{
        margin: 0 10px 25px;
    }

    .product-wrapper .swiper-slide-button{
        display: none;
    }
}

#shopping .tagify {
	--tags-border-color: none;
	--tags-hover-border-color: none;
	--tags-focus-border-color: none;
	--tag-bg: var(--lightgreen);
	--tag-hover: var(--lightgreen);
	--tag-text-color: var(--green);
		min-height: 75.51px;
}

@media screen and (max-width: 1730px) {

	#shopping{
		left:0;
	}
}
