@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,700;0,900;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap');

:root {
    /* --primary-color: #ff6b6b; */
    --primary-color: #dc3545;
    --secondary-color: #794afa;
    --secondary-dark-color: #453c5c;
    --tes-color: #00539f;

    --white-color: #ffffff;
    --light-bg-color:#f2f3f5;
    --light-text-color: #7c899a;
    --border-color: #e5e8ec;
    --dark-color: #0a021c;

    --font-medium: 15px;
    --font-small: 13px;
    --font-smaller: 11px;

    --percent100: 100%;
    --percent80: 80%;
    --percent50: 50%;
    --percent75: 75%;

    --fw3: 300;
    --fw5: 500;
    --fw6: 600;
    --fw7: 700;
    --fw8: 800;

    --trans-background-color: background-color .3s, color .3s;
    --trans-background-color: background-color .3s;
    --trans-color: color .3s;
}
*,::before,::after{
    box-sizing: border-box;
}
html, body{
    height: 100%;
    display: flex;
    flex-direction: column;
}
body{
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-color);
    background-color: var(--white-color);
    margin: 0;
    padding: 0;
    min-height: 400px;
    /* margin-bottom: 60px; */
    clear: both;
    height: 100%;
}
a{
    text-decoration: none;
    columns: inherit;
    -webkit-tap-highlight-color: transparent;
}
ul{
    list-style: none;
}
img{
    max-width: var(--percent100);
}
strong{
    font-weight: var(--fw6);
}
table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 50%;
}
td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
tr:nth-child(even) {
    background-color: #dddddd;
}
input::placeholder{
    font: inherit;
}
h1,h2,h3,h4{
    font-family: 'Rubik';
}
h1{
    font-size: calc(1em + 1vw);
    font-weight: var(--fw6);
    line-height: 1;
}
h2{
    font-size: 2.5em;
}
h3{
    font-size: 1.2em;
    font-weight: var(--fw7);
}
h4{
    font-size: 1em;
    font-weight: var(--fw6);
}
.h35{
    font-size: 1.75em;
    font-weight: var(--fw7);
    text-align: left;
}
#page{
    min-height: 100vh; /* ✅ Ensures enough height */
    flex-grow: 1; /* ✅ Pushes the footer down naturally */
    margin-bottom: 0; /* ❌ Removes negative margin */
    display: flex;
    flex-direction: column;
}

.container{
    /* max-width: 1280px; */
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0.938em;
 }
.column{
    margin-left: -0.938em;
    margin-right: -0.983em;
    margin-bottom: 20px;
}
.column .row{
    padding: 0 0.938em;
}
.flexwrap{
    display: flex;
    flex-wrap: wrap;
}
.flexwrap .row{
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 2em;
}
.flexitem{
    display: flex;
    align-items: center;
}
.icon-small, .icon-large{
    display: flex; 
    align-items: center;
    padding: 0 0.25em;
    font-weight: normal;
}
.icon-small{
    font-size: 16px;
    margin-left: auto;
}
.icon-large{
    font-size: 1.75em;
    padding: 0 0.75em 0 0;
}
.icon-larger{
    font-size: 2em;
    padding: 0 0.75em 0 0;
}
.primary-button, .secondary-button, .light-button, .tes-button, .soldout-button{
    /* font-size: var(--font-small); */
    padding: 0.9em 2em;
    height: auto;
    width: fit-content;
    width: -moz-fit-content;
    /* border-radius: 2em; */
    transition: var(--trans-background-color);
}
.soldout-button{
    background-color: red;
    color: var(--white-color);
}
.primary-button{
    background-color: var(--tes-color);
    color: var(--white-color);
}
.primary-button:hover{
    text-decoration: underline;
}
.tes
.secondary-button{
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
}
.secondary-button:hover{
    background-color: var(--light-bg-color);
    color: var(--secondary-dark-color);
}
[type="button"], [type="reset"], [type="submit"], button {
    appearance: none;
    -webkit-appearance: button;
}
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
.mini-text{
    font-size: var(--font-medium);
    color: var(--white-color);
}
.stock-sku .mini-text, .stock-sku a{
    color: var(--light-text-color);
}
.alert{
    color:#555;
    padding:5px;
}
.error{
    background-color: var(--primary-color);
    color: var(--white-color);
    /* #f44336 */
    text-align: center;
    font-size: .8em;
}
.success{
    background:#125740;
    color: var(--white-color);
    text-align: center;
    font-size: .8em;
}
.info{
    background:#2196F3;
    color: var(--white-color);
    text-align: center;
    font-size: .8em;
}
.quantitybtnprod{
    display: none;
}
.products .content{
    display: flex;
    flex-direction: column;
}
.products.main .content{
    margin: 0;
    gap: 0.75em;
    padding-right: 5px;
    padding-left: 5px;
    width: 75%;
}
.products:where(.big, .one) .content{
    gap: 1em;
    margin-top: 1.25em;
}
.products.big 
.products :where(.image, .thumbnail) img{
    transition: transform .3s;
}
.products :where(.image, .thumbnail):hover img{
    transform: scale(1.1);
}
.products .price .current{
    font-size: calc(1em + 1vw);
    color: var(--primary-color);
    margin-right: 0.25em;
}
.products  .item{
    display: flex;
    position: relative;
}
.label{
    float: left;
    width: 20%;
    font-weight: bold;
    padding-bottom: 3px;
}
.detail{
    float: left;
    width: 80%;
    padding-bottom: 3px;
}
main{
    position: relative;
    min-height: 100vh;
    flex-grow: 1;
}
.products.main .item{
    /* flex-direction: column; */
    flex: 0 0 25%;
    /* padding: 0 0.938em;
    padding-bottom: 2em; */
    padding: 0.5em;
}
.videoprod:hover{
    color: var(--secondary-dark-color) !important;
}
.breadcrumb{
    font-size: var(--font-medium);
    margin-bottom: 2em;
    color: var(--secondary-dark-color);
}
.breadcrumb li a{
    color: var(--secondary-dark-color);
}
.breadcrumb li:not(:last-child)::after{
    content: '/';
    padding: 0 0.35em;
}
.breadcrumb li:last-child{
    display: block;
    white-space: nowwrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--light-text-color);
}
.breadcrumb li.blanks:not(:last-child)::after{
    content: '';
}
.products.one .item{
    flex-direction: column;
    width: 80%;
}
.products.one .small-image ul{
    padding-left: 0px;
    margin: 0 0;
}
.products.one :where(.big-image, .small-image){
    overflow: hidden;
}
.products.one .big-image, .products.one .small-image{
   position: relative;
   /* margin-bottom: 1em;  */
}
.products.one :where(.big-image, .small-image) img{
    object-fit: cover;
    width: var(--percent100);
    /* height: var(--percent100); */
    display: block;
    border: 1px solid white;
}
.products.one .thumbnail-show{
    position: relative;
    width: 130px;
    height: 110px;
    overflow: hidden;
    margin: 0 2em 2em 0;
}
.products :is(.swiper-button-next, .swiper-button-prev){
    outline:  0;
    color: transparent;
    transition: var(--trans-background), transform .3s;
}
.products :is(.swiper-button-next, .swiper-button-prev):hover{
    background-color: var(--tes-color);
    color: var(--light-bg-color);
    border-radius: 5px;
}
.products :is(.swiper-button-next, .swiper-button-prev)::after{
    font-size: 1.5em;
}
.products.one .available{
    font-size: var(--font-small);
    font-weight: var(--fw5);
    padding: 0.5em;
    margin-right: 1em;
    border-radius: 3px;
    color: white;
    background-color: green;
}
.products.one .outofstock {
    font-size: var(--font-small);
    font-weight: var(--fw5);
    padding: 0.5em;
    margin-right: 1em;
    border-radius: 3px;
    color: white;
    background-color: red;
}
.products.one .price{
    display: flex;
    gap: 1em;
    align-items: center;
    flex-wrap: wrap;
}
.products.one .price .current{
    font-size: 4em;
    font-weight: var(--fw6);
}
.products .actions{
    display: flex;
    flex-wrap: wrap;
}
.products .qty-control{
    /* padding: 0.5em; */
    border: 1px solid var(--light-text-color);
    /* margin: 0 2em 2em 0; */
    margin: auto !important;
}
.products .actions :where(input, button){
    font-size: 1.25em;
    outline: 0;
    border: 0;
}
.products .actions input{
    width: 75px;
    text-align: center;
    height: 50px;
}
.products .qty-control button::before{
    background-color: transparent;
}
.products .actions .button-cart{
    flex: 1;
    margin-left: 10px;
}
.products .actions .button-cart button{
    width: var(--percent100);
    cursor: pointer;
}
#videos p, #pdf p{
    padding-left: 10px;
}
#videos {
    margin-bottom: 50px;
}
.products .collapse .has-child > a{
    position: relative;
    /* font-weight: var(--fw7); */
    text-transform: uppercase;
    padding-left: 2em;
    padding-top: .5em;
    padding-bottom: .5em;
    /* padding: 1em 2em; */
    border-top: 1px solid var(--border-color);
    gap: 1em;
    align-items: flex-start;
    color: white;
    background-color: var(--tes-color);
}
.products .collapse .has-child > a::before{
    content: '+';
    position: absolute;
    left: 0;
    padding-left: 10px;
}
.products .collapse .content{
    margin: 0 0 0 2em;
    font-size: var(--font-medium);
    padding-left: 0;
}
.products .collapse .content li span:first-child{
    min-width: 50px;
    display: inline-flex;
    font-weight: var(--fw7);
    text-transform: uppercase;
}
.products .collapse .content li p:first-child{
    min-width: 50px;
    display: inline-flex;
    font-weight: var(--fw5);
}
.products .collapse table{
    line-height: 2em;
}
.products .collapse table thead th{
    vertical-align: bottom;
    border-bottom: 2px solid var(--dark-color);
}
.products .collapse table :where(th, td){
    border-bottom: 1px solid var(--border-color);
    /* padding-left: 2em; */
    border: none;
    border-bottom: 1px solid var(--border-color);
}
.detHeader{
    width: 35%;
    padding: 5px !important;
    color: #fff;
    background-color: #183444;
}
.detHeaderTxt{
    width: 65%;
    border-bottom: 1px solid #ccc;
    padding: 0 10px;
}
.products .collapse .content{
    display: none;
}
.products .collapse .expand .content{
    display: flex;
    overflow-x: auto;
    color: var(--secondary-dark-color);
    padding: 10px;
    padding-left: 10px !important;
}
.products .item h35, .products .item .label {
    color: var(--secondary-dark-color);
}
.products .collapse .expand > a::before{
    content: '-';
    padding-left: 10px;
}
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
      border-top-color: transparent;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-left-color: transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}
.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}
.btn-sm{
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}
[type="button"], [type="reset"], [type="submit"], button {
    appearance: none;
    -webkit-appearance: button;
}
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #183444;
}
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color: #fff;
}
.tab button:hover {
    background-color: #0080ff;
}
.tab button.active {
    background-color: #0080ff;
}
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
#Overview .content{
    padding:0px;
    margin:0px;
}
#Overview{
    display: block;
}
#Overview p, #Technical p, #PDF p, #Videos p, #Reviews p{
    /* font-size: 1.2em; */
    font-weight: var(--fw6);
    margin-bottom: unset;
}
#mobiletitle{
    display: none;
}
@media all and (max-width: 1230px){
    .tabs_products{
        margin: 20px;
    }

    .products.one .item{
        width: 100%;
    }
    .products .actions input{
        height: 40px;
    }
    .stock-sku .label{
        width: 30%;
    }
    .stock-sku .detail{
        width: 70%;
    }

}
@media all and (max-width: 500px){
    .page-single .tab button{
        font-size: .75rem;
        padding: 12px 14px;
    }
    .stock-sku .label, .stock-sku .mini-text{
        font-size: 12px;
    }
    .page-single .tabs_products {
        margin: 0 5px;
    }
    .products .actions :where(input, button) {
        font-size: 1rem;
    }
    .page-single .tab button{
        font-size: .75rem;
    }
    #mobiletitle{
        display: block;
    }
    #desktoptitle{
        display: none;
    }
    .h35{
        font-size: 1rem;
    }
    #addtocart{
        padding: 10px;
    }
    .products.one .price .current{
        font-size: 2rem;
    }
    .breadcrumb .flexitem{
        padding-left: unset;
    }
    #Overview .content li, #Technical .content li, #PDF .content li, #Videos .content li, #Reviews .content li, .detHeader, .detHeaderTxt, #PDF p, #Videos p, #Reviews p, .breadcrumb li{
        font-size: .75em;
    }
    .stock-sku .label {
        width: 30%;
    }
    .stock-sku .detail{
        width: 70%;
    }
    .products .actions input {
        width: 50px
    }
    .flexwrap .row {
        flex: 0 0 100%;
        width: 50%;
        margin-bottom: 2em;
    }
    #productImage .item{
        width: 70%;
    }
    table{
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%;
    }
}