.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.main-swiper {
    height: 80%;
    width: 100%;
}

.thumbs-swiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumbs-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.key {
    font-weight: bold;
    text-transform: uppercase;
}

.pdp-product-name {
    font-weight: bold;
    font-size: 26px;
}

.product-attribute-key {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

.product-attribute-value {
    font-weight: bold;
    padding: 7px;
    border: 2px solid #000;
    border-radius: 3px;
    background-color: #f8f9fa;
    transition: background-color 0.3s, color 0.3s;
    color: black;
}

.product-attribute-value:hover {
    background-color: #1475d6;
    color: white;
}

.product-attribute-value.selected {
    background-color: #1475d6;
    color: white;
}

.quantity-component {
    border: 0;
    margin: 0;
    padding: 0;
}

.quantity-component .decrement, .increment {
    border: 1px solid black;
}

.quantity-input {
    border: 1px solid black;
    text-align: center;
    padding: 0;
}

