a{
    text-decoration: none;
    color:inherit;
}
ul{
    list-style-type: none;
}
button,a.button{
    font-family: "Kanit", sans-serif;
    background-color: transparent;
    border-radius:35px;
    padding:10px 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
/* start number input of quantity */
.cart input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    background-color: transparent;
    color: white;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
.number-input {
    border: 2px solid white;
    display: inline-flex;
}
.number-input button {
    outline:none;
    --webkit-appearance: none;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.number-input button:after {
    display: inline-block;
    position: absolute;
    font-family: "Font Awesome 6 Pro"; 
    font-weight: 700;
    content: '\f068';
    transform: translate(-50%, -50%);
}
.number-input button.plus:after {
    content: "\2b";
}
.number-input input[type=number] {
    font-family: sans-serif;
    max-width: 25px;
    padding: 4px;
    border-width: 0 2px;
    font-size:medium;
    text-align: center;
}
/* end number input of quantity */

/*  */
.productPageContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height:500px;
}

/* productPageImgContainer */
.productPageImgContainer {
    flex-basis: clamp(14px, 60%, 60%);
    height: 450px;
    display: flex;
    position: relative;
}
.productPageImagesBar {
    flex-basis: 18%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.productPageImgContainer img {
    width: 100%;
    object-fit: cover;
    height:100%;
}
.image {
    height: 24%;
    opacity: 0.5;
    transition: .3s;
    border-radius: 10px;
    margin-bottom: 10px;
}
.image img{
    border-radius:0px;
}
.image:hover {
    scale: 1.0;
    opacity: 1;
}
.image.selected {
    opacity: 1;
    scale: 1.01;
    margin-bottom: 13px;
}
.imgDots {
    /* background: rgba(0,0,0,.3); */
    /* padding: 5px; */
    position: absolute;
    bottom: 37px;
    right: 151px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    transform: rotate(270deg);
}
.productPageFullImage {
    flex-basis: 82%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 3px solid white;
    position: relative;
    --img: url("");
    --display: none;
    --zoom-x: 0%;
    --zoom-y: 0%;
}
.productPageFullImage::after {
    content: "";
    display: var(--display);
    background-image: var(--img);
    background-size: 200%;
    background-position: var(--zoom-x) var(--zoom-y);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}   
.imgDots i {
    color: rgba(128, 128, 128, 0.4);
    border: 2px solid white;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 20px;
}
/* .imgDots i.selected {
    color: white;
    scale: 1.1;
} */
.imgDots i:hover {
    color: white;
    cursor: pointer;
    scale: 1.1;
}
.imgDots .grey{
    color: #4b4b4b;
}
.imgDots .grey:hover{
    color: #4b4b4b;
}
.imgDots .brown {
    color: #722015;

}
.imgDots .brown:hover{
    color: #722015;
}
.imgDots .silver{
    color: #c0c5cc;
}
.imgDots .silver:hover{
    color: #c0c5cc;
}
.accessories-text{
    font-size: 16px;
    font-weight: 500;
    padding: 6px 2px 0px;
}
/* productPageInfoContainer */
.productPageInfoContainer {
    box-shadow: 1px 1px 15px #00000045, -3px -2px 20px whitesmoke;
    background-color: var(--white-color);
    flex-basis: 30%;
    height: 450px;
    padding: 13px 13px;
    border-left: 4px solid #002c5b;
}
.productPageInfo {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 21px 19px 14px 26px;
    background: #116ab1;
    /* /* border: 1px #002c5b69 solid; */
}
.productPagePrice {
    display: flex;
    justify-content: space-between;
}
.productPagePrice span{
    font-weight: 700;
}
.productPageSize,.productPageColor,.productPageQuantity {
    display: flex;
    gap: 30px;
    align-items: center;
  margin-bottom:5px;
}
.productPageColor .colorsAvailable {
    background-color: transparent;
}
.productPageColor .colorsAvailable span {
    margin-right: 2px;
    border: 2px solid #f8f9fa;
}
.priceAfter {
    text-decoration: line-through;
}
.productPageButton {
    display: flex;
    justify-content: center;
}
.productPageButton button{
    flex-basis: 70%;
    letter-spacing: 1px;
    background-color: var(--black-color);
    color: var(--white-color);
}
.subTitles {
    width: clamp(0px, 46%, 50%);
    font-weight: 700;
    font-size: large;
    font-size: 15px;
    color: aliceblue;
}

.productPageContainer .productSizes span{
    font-weight: 700;
    border: 2px solid var(--black-color);
    text-align: center;
}
.productPageContainer .number-input {
    border-color: black;
}
.productPageContainer .choosedColor {
    scale: 1.2;
    border-color: var(--whitepink-color) !important;
    box-shadow: 0 0 0 2px var(--black-color) !important;
}

/* */
.colorsAvailable{
    bottom: 10px;
    left:10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 0, 0,0.5);
    padding: 5px;
}
.colorsAvailable span{
    width: 25px;
    height: 25px;
    outline: 2px solid transparent;
    border:4px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
}

.productSizes {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.productSizes span{
    cursor: pointer;
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 7px;
    width: 40px;
    border: 2px solid transparent;
    transition: .5s;
}
.productSizes span:hover, .productPrice:hover{
    background-color: var(--whitepink-color);
}
.choosedSize {
    box-shadow: 1px 1px 5px #e9e3e3;
    background-color: var(--black-color) !important;
    color: var(--white-color) !important;
    border-color:var(--white-color) !important;
}
.choosedColor {
    outline-color: white !important;
    scale: 1.1;
}

.productPageInfo h3{
    font-size: 22px;
    font-weight: 500;
    color: #f8f9fa;
}
.productPageInfo h3 span{
    font-size: 14px;
    font-weight: 500;
    color: #f8f9fa;
}
.productPageDescription ul li{
    list-style: circle;
    color: #f8f9fad6;
    font-size: 14px;
    font-weight: 300;
}    
.productPageDescription p{
    font-size: 14px;
    color: #f8f9fafc;
}


#portfolio {  
    margin: 1rem 0;
    -webkit-column-count: 2; 
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%;
    /* display: inline-flex; */
    grid-template-columns: 1fr 1fr;
    display: grid;
}
.tile { 
display: none;
}
.scale-anm {
    margin: 0 0 1.125rem;
    width: 100%; 
    border: 1px solid #ccc;
}
.tile img {
    max-width: 100%; 
    height: auto;
    display: block; 
      width: 100%;
}
.btn {
    font-family: Lato;
    font-size: 1rem;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: .5rem 1rem;
    margin: 0; 
    height: auto;
        border: 1px solid #ccc; 
    vertical-align: middle;
    -webkit-appearance: none;
    color: #555;
    background-color: rgba(0, 0, 0, 0);
}

.gallery{
    padding: 100px 0px;
}

.scale-anm .text-content-box{
    padding-top: 23px;
    padding-bottom: 10px;
    background: #116ab1;
}
.scale-anm .text-content-box h6{
    color: aliceblue;
    font-size: 18px;
    font-weight: 500;
}






























.img-display{
    overflow: hidden;
}
.img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}
.img-showcase img{
    min-width: 100%;
}
.img-select{
    display: flex;
}
.img-item{
    margin: 0.3rem;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3),
div.img-item:nth-child(4){
    margin-right: 0;
    width: 58px;
    height: 58px;
    background: blue;
}
.img-item:hover{
    opacity: 0.8;
}
.product-content{
    padding: 2rem 1rem;
}
.product-title{
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #002c5b;
    margin: 1rem 0;
    margin-top: 25px;
}
.product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}
.product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #002c5b;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}
.product-link:hover{
    opacity: 0.9;
    color: #fff;
}
.product-rating{
    color: #ffc107;
}
.product-rating span{
    font-weight: 600;
    color: #252525;
}
.product-price{
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
}
.product-price span{
    font-weight: 400;
}
.last-price span{
    color: #f64749;
    text-decoration: line-through;
}
.new-price span{
    color: #256eff;
}
.product-detail h2{
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
}
.product-detail p{
    font-size: 17px;
    padding: 0.3rem;
}
.product-detail h6{
    font-size: 15px;
    font-weight: 600;
}
.product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}
.product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(./img/products/trafford/range-icon.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}
.product-detail ul li span{
    font-weight: 400;
}
.purchase-info{
    margin: 1.5rem 0;
}
.purchase-info input,
.purchase-info .btn{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}
.purchase-info input{
    width: 60px;
}
.purchase-info .btn{
    cursor: pointer;
    color: #fff;
}
.purchase-info .btn:first-of-type{
    background: #256eff;
}
.purchase-info .btn:last-of-type{
    background: #f64749;
}
.purchase-info .btn:hover{
    opacity: 0.9;
}
.social-links{
    display: flex;
    align-items: center;
}
.social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}
.social-links a:hover{
    background: #000;
    border-color: transparent;
    color: #fff;
}

.card-wrapper{
    padding-top: 50px
}

@media screen and (min-width: 992px){
    .card{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    /* .card-wrapper{
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    } */
    .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .product-content{
        padding-top: 0;
    }
}

.product-content h6{
    font-size: 18px;
    font-weight: 600;
    margin: 40px 2px 0;
}