.product {
    display: flex;
    gap: 60px;
}
.product__gallery {
    flex: 0 0 60%;
    height: max-content;
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}
.product__photo {
    width: 50%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;

	padding-bottom: 66.67%;
    height: 0;
}
.product__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, transform-origin 0.1s ease;

	position: absolute;
    top: 0;
    left: 0;
}
.product__swiper {
    display: none;
}
.product__swiper-pagination {
    bottom: 10px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.product__swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    background: #281D18;
    border-radius: 0;
    margin: 0 !important;
    opacity: 0.2;
    transition: all .4s ease;
}
.product__swiper-pagination .swiper-pagination-bullet-active {
    width: 125px;
}
.product__info {
    width: 100%;
    max-width: 655px;
    height: max-content;
    position: sticky;
    top: 0;
    padding: 20px 0;
    padding-right: 20px;
}
.product__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(40,29,24,0.5);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.product__breadcrumbs a {
    color: rgba(40,29,24,0.8);
    text-decoration: none;
}
.product__title {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.product__price {
    display: block;
    font-size: 22px;
    margin-bottom: 20px;
}
.product__dolyami {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(40,29,24,0.8);
    font-size: 14px;
    margin-bottom: 40px;
}
.product__dolyami-total {
    border: 1px solid rgba(40,29,24,0.8);
    border-radius: 20px;
    padding: 5px 10px;
}
.product__colors {
    color: rgba(40,29,24,0.8);
    font-size: 14px;
    margin-bottom: 30px;
}
.product__colors-title-value {
    color: #281D18;
}
.product__colors-options {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    align-items: center;
}
.product__colors-option {
    width: 24px;
    height: 24px;
    position: relative;
    border-radius: 50%;
}
.product__colors-option:after {
    content: '';
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 50%;
}
.product__colors-option--active:after {
    border: 1px solid #D9D9D9;
}
.product__sizes {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.product__sizes-title {
    color: rgba(40,29,24,0.8);
    font-size: 14px;
    margin-bottom: 15px;
}
.product__sizes-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.product__sizes-options li {
    flex: 1;
    max-width: 100px;
    height: 45px;
}
.product__sizes-options input {
    display: none;
}
.product__sizes-options input:checked ~ .product__sizes-option {
    border: 1px solid #281d18;
}
.product__sizes-option {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid rgba(40,29,24,0.2); */
    cursor: pointer;
    transition: all .4s ease;
}
.product__sizes-option:hover {
    /* border: 1px solid #281d18; */
}

/* .product-item-scu-item-text-container {
    border: 1px solid transparent;
} */

.product__sizes-option:hover ~ *,
.product__sizes-option:hover + *,
.product-item-scu-item-text-container:hover {
    border-color: #281d18;
}


.product__sizes__info {
    color: rgba(40,29,24,0.8);
    font-size: 14px;
    margin-bottom: 10px;
}
.product__sizes-link {
    color: rgba(40,29,24,0.8);
    font-size: 14px;
}
.product__buttons {
    height: 55px;
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.product__add-to-cart {
    width: 100%;
    max-width: 500px;
    height: 100%;
    position: relative;
    color: #FFFEF9;
    text-transform: uppercase;
    background: rgba(40,29,24,0.9);
    border: 1px solid rgba(40,29,24,0.9);
    cursor: pointer;
}
.product__add-to-cart:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFEF9;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s ease;
}
.product__add-to-cart span {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}
.product__add-to-cart:hover:after {
    transform: scaleX(1);
}
.product__add-to-cart:hover span {
    color: rgba(40,29,24,0.9);
}
.product__favorite {
    aspect-ratio: 1;
    background: none;
    border: 1px solid rgba(40,29,24,0.9);
    cursor: pointer;
}
.product__favorite path {
    fill: transparent;
    transition: all .4s ease;
}
.product__favorite:hover path{
    fill: #281D18;
}
.product__link-custom {
    display: block;
    color: #281D18;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.product__link-custom:hover {
    text-decoration: none;
}
.product__description {
    max-width: 560px;
    border-bottom: 1px solid rgba(62,52,47,.1);
    padding-bottom: 20px;
}
.product__description-title {
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.product__description-content {
    font-size: 14px;
}
.product__tabs {
    max-width: 560px;
    margin-bottom: 50px;
}
.product__tab {
    border-bottom: 1px solid rgba(62,52,47,.1);
}
.product__tab--active .product__tab-content {
    max-height: 500px;
    opacity: 1;
}
.product__tab--active .product__tab-icon {
    transform: rotate(-90deg);
}
.product__tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}
.product__tab-header h4 {
    font-weight: 400;
    text-transform: uppercase;
}
.product__tab-icon {
    transform-origin: center;
    transition: all .4s ease;
}
.product__tab-content {
    max-height: 0;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease;
}
.product__tab-content--inner {
    padding-bottom: 20px;
}
.product__additional-title {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.product__additional-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.small-card {
    width: 145px;
    min-width: 145px;
}
.small-card__photo {
    position: relative;
    aspect-ratio: 0.65;
    background: #F3EFE4;
    margin-bottom: 12px;
}
.small-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.small-card__add-to-cart {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all .4s ease;
}
.small-card__add-to-cart:hover {
    transform: scale(1.1);
}
.small-card__title {
    max-width: 135px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.small-card__price {
    font-size: 14px;
}
@media (max-width: 1024px) {
    .product {
        flex-direction: column;
        gap: 10px;
    }
    .product__gallery {
        display: none;
    }
    .product__swiper {
        width: 100%;
        display: block;
    }

	.product__swiper-slide {
		position: relative;
		width: 100%;
		padding-bottom: 133.33%; /* 3:4 соотношение */
		height: 0;
		overflow: hidden;
		flex-shrink: 0; 
	}
	.product__swiper-slide img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		user-select: none;
		-webkit-user-drag: none;
	}
	.product__swiper .swiper-wrapper {
		transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}

    .product__info {
        position: static;
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
	.product__photo {
		padding-bottom: 133.33%;
	}

    .product__info {
        padding: 0;
    }
    .product__breadcrumbs {
        gap: 12px;
        font-size: 10px;
        padding: 0 8px;
        margin-bottom: 25px;
    }
    .product__title {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 10px;
    }
    .product__price {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 10px;
    }
    .product__dolyami {
        gap: 7px;
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 35px;
    }
    .product__colors {
        padding: 0 15px;
    }
    .product__colors-options {
        gap: 20px;
        margin-top: 15px;
    }
    .product__colors-option:after {
        width: 30px;
        height: 30px;
    }
    .product__sizes {
        padding: 0 15px;
        margin-bottom: 35px;
    }
    .product__sizes-options label {
        max-width: 90px;
        font-size: 14px;
    }
    .product__buttons {
        padding: 0 15px;
    }
    .product__add-to-cart {
        font-size: 14px;
    }
    .product__link-custom {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 35px;
    }
    .product__description {
        margin: 0 15px;
        padding-bottom: 20px;
    }
    .product__description-title {
        font-size: 14px;
    }
    .product__tabs {
        padding: 0 15px;
        margin-bottom: 60px;
    }
    .product__tab-header h4 {
        font-size: 14px;
    }
    .product__additional-title {
        font-size: 16px;
        text-align: center;
    }
    .product__additional-cards {
        flex-wrap: nowrap;
        gap: 10px;
        padding-left: 15px;
        overflow-y: auto;
        scrollbar-width: none;
    }
    .small-card__add-to-cart {
        width: 35px;
        height: auto;
        right: 10px;
        bottom: 10px;
    }
    .small-card__title {
        max-width: 100%;
        font-size: 12px;
        margin-bottom: 2px;
    }
    .small-card__price {
        font-size: 12px;
    }
}
.selected&gt;.product__sizes-option{
    border-color: black;
}