
.product__inner {
    display: flex;
    margin-top: 30px;
    column-gap: 30px;   
}
.product__imgs {
    display: flex;
    flex: 50%;
    column-gap: 10px;

}
.product__titles {
   
    flex: 40%;
}
.product__titles h2 { 
    font-weight: bold;
}
.product__describe {
    margin-top: 10px;
    font-size: 15px;
    font-weight: normal;
}
.row {
   display: flex;
   flex-direction: column;
  
   row-gap: 10px;
}
/* The grid: Four equal columns that floats next to each other */
.column {
    border-radius: 8px;
    background-color: #f9f9f9;
   
    width: 150px;
    height: 150px;
}
.column:last-child {
    margin-bottom: 0;
}
/* Style the images inside the grid */
.column img {
    
    width: 150px;
    height: 150px;
    opacity: 0.8; 
    cursor: pointer; 
    border-radius: 8px;
    object-fit: cover;
}
#expandedImg {
    width:100vh;
    height: 100%;
    max-height:550px;
    background-color: #f9f9f9;
    border-radius: 8px;
    object-fit: cover;
    
}
.column img:hover {
  opacity: 1;
}

/* The expanding image box */
.box {
  position: relative;
  display: block;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
  display: none;
}

/* Closable button inside the expanded image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 70px;
  color: white;
  font-size: 35px;
  cursor: pointer;
  color: red;
  display: none;
}
.old__price, .actual__price {
    font-family: 'lumen__extrabold', sans-serif;
    font-size: 18px;
    font-weight: bold;
}
.price-bigger {
    font-family: 'lumen__extrabold', sans-serif;
    font-size: 28px;
}

.cart {
    margin-top: 20px;
}
.product__titles h2 {
    font-size: 20px;
    font-family: 'lumen__regular', sans-serif;
    margin-bottom: 10px;
}
.product__titles span {
    margin: 0;
    padding: 0;
}

/* in stock*/
 .stock-status {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 15px;
       
    }
     .stock-status p {
     	font-family: lumen__medium;
     	font-feature-settings: "case" on;
     	 font-weight: bold;
     	font-size: 12px;

     }

    .status-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        display: inline-block;
        position: relative;
    }

    /* Glow effect for in stock */
    .in-stock .status-dot {
        background-color: #4CAF50; /* Green color */
        box-shadow: 0 0 8px 4px rgba(76, 175, 80, 0.5); /* Initial glow */
        animation: glow-green 1.5s infinite alternate;
    }

    /* Glow effect for out of stock */
    .out-of-stock .status-dot {
        background-color: #F44336; /* Red color */
        box-shadow: 0 0 8px 4px rgba(244, 67, 54, 0.5); /* Initial glow */
        animation: glow-red 1.5s infinite alternate;
    }

    /* Text color */
    .in-stock p {
        color: #4CAF50; /* Green text */
    }

    .out-of-stock p {
        color: #F44336; /* Red text */
    }

    /* Keyframes for glowing animations */
    @keyframes glow-green {
        0% {
            box-shadow: 0 0 2px 1px rgba(76, 175, 80, 0.5);
        }
        100% {
            box-shadow: 0 0 5px 2px rgba(76, 175, 80, 0.9);
        }
    }

    @keyframes glow-red {
        0% {
            box-shadow: 0 0 2px 1px rgba(244, 67, 54, 0.5);
        }
        100% {
            box-shadow: 0 0 5px 2px rgba(244, 67, 54, 0.9);
        }
    }
/* +-counter */
.counter {
    height: 40px;
    display: flex;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    width: 130px;
}
.count {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    height: 40px;
    width: 50px;
    padding-top: 4px;
    font-family: bpg_mtavruli;
    
    border: solid 1px rgba(0, 0, 0, .125);
    border-left: none;
    border-right: none;
}
.plus {
    cursor: pointer;
    display: inline-block;
    height: 40px;
    width: 40px;
    padding: 15px;
    /*border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;*/
    border:solid 1px rgba(0, 0, 0, .125);
    }
.minus {
    cursor: pointer;
    display: inline-block;
    cursor: pointer;
    height: 40px;
     width: 40px;
    color: #000;
    /*border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;*/
    border: solid 1px rgba(0, 0, 0, .125);
   
}

.minus:hover{
    background-color: #ffb700 !important;
    border: solid 1px #ffb700;
}
.plus:hover{
    background-color: #ffb700 !important;
     border: solid 1px #ffb700;
}
/*Prevent text selection*/
span{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
input{  
    border: 0;
    width: 2%;
}
nput::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input:disabled{
    background-color:white;
}
.form__submit-btn {
    width: 200px;
    border: solid 2px #000;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 0;
    color: #000;
    text-align: center;
    font-family: bpg_supersquare;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.form__submit-btn:hover {
    color:#000;
    border: 2px solid #ffb700;   
}

.cart {
    display: flex;
   }   
   .cart a {
    margin: 0;
    width: 190px;
    border-radius: 0;
    margin-left: 20px;
    color: #fff;
    font-size: 13px;
    font-family: bpg_supersquare;
    background-color: orange;
    padding: 10px;
   }  
   .cart a:hover {
    border: solid 2px orange;

   }
   .cart a:before {
  content: "";
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  z-index: -1;
 
  -webkit-transition: top 0.3s ease-in; 
}
/* product details */
.product__detail {
    display: flex;
    column-gap: 20px;
    /*margin-top: 30px;*/
    font-size: 14px;
    font-family: 'tahoma', sans-serif;
    text-transform: capitalize;
    
}
.product__detail-name {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    font-family: var(--menu__font);
    opacity: 1;
}
.product__detail-data {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    opacity: 0.6;
    font-family: var(--menu__font);
}
/* product color  */
.product__color {
    display: flex;
  
    padding: 20px 0 0 0;
    margin-left: -10px;
    
}
.product__color span {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    margin-left: 10px;
   
}
.product__label {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-top: 7px;
  cursor: pointer;
  font-size: 13px!important;
  font-family: 'bpg_mtavruli', sans-serif;";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*checkmarks */
/* Hide the browser's default checkbox */
.product__label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;

}

/* On mouse-over, add a grey background color */
.product__label:hover input ~ .checkmark {
  background-color: #ffb700;

}

/* When the checkbox is checked, add a blue background */
.product__label input:checked ~ .checkmark {
  background-color: #ffb700;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.product__label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.product__label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid green;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* REVIEW SECTION =============================== */

.product__review {
    margin-top: 80px;
    min-height: 150px;
}
.product__tabs {
    font-family: 'bpg_mtavruli', sans-serif;
    border-bottom: solid 1px rgba(0,0,0,0.3);
    padding: 0 15px;
    display: block;
}
.product__btn:first-child {
    border-right: solid 1px rgba(0,0,0,0.3);
    padding-right: 15px;
    margin-right: 15px;
    height: 30px;
}
.product__btn:hover {
    font-weight: bold;
    cursor: pointer;
}
.product__active {
    color: #ffb700;
    font-weight: bold;
}
.product__tab {
    margin-top: 20px;
    font-size: 14px;
}

/* SIMILAR =============================== */
.products__more {
    position: relative;
    margin-top: 50px;
    padding-bottom: 20px;
    overflow: hidden;
    text-transform: uppercase;
}
.subtitle--size {
    height: 25px;
    margin-top: 10px;
    font-size: 24px;

}


.products__control {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 105px;
}
:root {
    --swiper-navigation-size: 15px;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  border-radius: 3px;
  color: #000;
  background-color: #f9f9f9;
  padding: 20px;
  transition: .25s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #ffb700;
}

.swiper-scrollbar3 {
    bottom: 0px!important;
}
/* change default tab style for swiper*/
.tab__inner {
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 30px;
}
.tab__link {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 24.3%;
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .stock-status {
        margin-left:4px;
    }
   .product__inner {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 0px;
   }
   .product__imgs {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 5px;
   }
   #expandedImg {
    width: 100%;
    height: auto;
    max-height: 430px;
    }
   .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 10px;
   }
   .column img {
    max-width: 100%;
    height: auto;
   }
   .column {
    margin: 0;
   }

   .product__titles {
    margin-left: 0px;
    flex: 100%;
   }

   .tab__link {
    flex-basis: 191px;
    margin: 0;
    }
    .swiper-slide {
    height: auto;
    }
    .tab__box {
    height: 191px;
   
    }
    .products__control {
    top: 10px;
    right: 0px;
    width: 105px;
    }

}

/*share button*/
.hidden {
  display: none;
}

.share-button svg {
	height: 30px;
	width: 30px;
 padding: 5px;
margin-left: -2px;
margin-top: 2px;
opacity: 0.7;
}

.share-button {
  min-height: 40px;
  min-width: 40px;
  border: solid 1px rgba(0, 0, 0, .125);
  border-radius: 5px;
  cursor: pointer;
  /*margin-left: 10px;*/
  transition: 0.25s;
  text-align: center;
  fill: #000;

}

.share-button:hover {
  border-color: #ffb700;

}
.share-button, .copy-link {
  
}
.share-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.share-dialog {
  display: none;
  width: 95%;
  max-width: 500px;
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
  z-index: -1;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 4px;
  background-color: #fff;
}

.share-dialog.is-open {
  display: block;
  z-index: 2;
}

.shar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.targets {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.close-button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.close-button svg {
  margin-right: 0;
}

.share__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background-color: #eee;
}

.pen-url {
  margin-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}