/* ========= Colors ========= */

:root {
    --black: #222;
    --white: #fff;
    --default: #0751a5;
    --orange: #ff7417;
    --yellow: #d1b307;
    --grey: #a0a3ad;
    --grey2: #f9fafd;
    --warn: #e71247;
    --animate-delay: 0.5s;
      
}


/* ========= Reset ========= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    font-family: "Signika Negative", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
    background-color: var(--white);
}



h2,
h3,
h4 {
    font-weight: 400;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

.container {
    max-width: 114rem;
    margin: 0 auto;
    padding: 0 1.6rem;
}

@media only screen and (max-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 0 5rem;
    }
}


/* Navigation */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    line-height: 1rem;
    background-color: var(--black);
}

.hamburger {
    display: none;
}

.nav__center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav__logo {
    font-size: 2rem;
    color: var(--white);
}

.nav__logo span {
    color: var(--orange);
}

.nav__list {
    display: flex;
    align-items: center;
}

.login {
    display: inline-block;
    font-size: 1.7rem;
    margin-right: 2rem;
    padding: 1.3rem 1.5rem;
    color: var(--black);
    background-color: var(--yellow);
}

.login:focus {
    outline: none;
}

.cart__icon {
    position: relative;
    cursor: pointer;
}

.cart__icon h2 {
    font-weight: 700;
    color: var(--orange);
}

.cart__icon span {
    position: absolute;
    top: -1rem;
    right: -2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--warn);
    color: var(--white);
    padding: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}


/* Products Center */

.rating span svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: var(--orange);
}

.products {
    padding: 15rem 0;
}

.product__center {
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem 1rem;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.product__footer {
    padding: 1rem;
    width: 100%;
}

.product__footer h1 {
    font-size: 2rem;
}

.rating {
    margin: 1rem 0;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    border: 1px solid var(--grey);
    padding: 1rem 1.8rem;
    color: var(--black);
    font-weight: 500;
    font-size: 1.7rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.btn:hover {
    background-color: var(--orange);
    color: var(--white);
    border: 1px solid var(--orange);
}

.price {
    font-weight: 700;
    font-size: 1.8rem;
}


/* Cart */

.cart__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 300ms ease-in-out;
    background-color: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    z-index: 2;
}

.cart {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60%;
    height: 80%;
    padding: 1.6rem;
    border-radius: 2rem;
    z-index: 3;
    overflow-y: scroll;
    background-color: var(--grey2);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.cart.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.cart__overlay.show {
    visibility: visible;
}

.close__cart {
    cursor: pointer;
}

.close__cart svg {
    fill: var(--black);
    transition: all 300ms ease-in-out;
}

.close__cart:hover svg {
    fill: var(--warn);
}

.cart svg {
    width: 1.8rem;
    height: 1.8rem;
}

.cart h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.cart__item svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--orange);
}

.cart__item {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    width: 70%;
    margin: 2rem auto;
}

.cart__item div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart__item div span {
    cursor: pointer;
}

.cart__item img {
    width: 9.5rem;
    height: 9.5rem;
}

.cart__item h3 {
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cart__item .price {
    color: var(--orange);
    font-weight: 700;
}

.cart__item p {
    font-weight: 700;
}

.cart__item .remove__item {
    cursor: pointer;
}

.cart__item .remove__item svg {
    fill: var(--warn);
}

@media only screen and (max-width: 1350px) {
    .cart__item {
        width: 100%;
    }
}

@media only screen and (max-width: 996px) {
    .cart__item {
        grid-template-columns: 1fr 2fr 0.5fr 0.5fr;
    }
    .cart__item h3 {
        font-size: 1.7rem;
    }
    .cart__item .remove__item svg {
        width: 1.6rem;
        height: 1.6rem;
    }
    .cart__item img {
        width: 7.5rem;
        height: 7.5rem;
    }
}

.cart__footer {
    text-align: center;
    margin-bottom: 3rem;
}

.cart__footer h3 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.cart__footer .btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 2rem;
    background-color: var(--orange);
    border: none;
    margin-top: 2rem;
}

.cart__footer .btn:focus {
    outline: none;
}

@media only screen and (max-width: 567px) {
    .cart {
        width: 100%;
        height: 100%;
        border-radius: 0rem;
    }
    .cart__item h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.6rem;
    }
}

.goog-logo-link {
    display:none !important;
 }
 
 .goog-te-gadget {
    color: transparent !important;
 }
 
 .goog-te-gadget .goog-te-combo {
    color: transparent !important;
 }

 #google_translate_element {
    color: transparent !important;
  }
  #google_translate_element a {
    display: none !important;
  }
  .goog-te-gadget img
  {
    display: none !important;
  }

  .VIpgJd-ZVi9od-l4eHX-hSRGPd, .VIpgJd-ZVi9od-l4eHX-hSRGPd:link, .VIpgJd-ZVi9od-l4eHX-hSRGPd:visited, .VIpgJd-ZVi9od-l4eHX-hSRGPd:hover, .VIpgJd-ZVi9od-l4eHX-hSRGPd:active
{
 
  color: transparent !important;
  display: none !important;
  
}
.overlay {
    position: absolute!important;
    opacity: 0.7;
    height: 100%;
    width: 100%;
    font-weight: bold;
}
.overlay {
    background: linear-gradient(rgba(3, 6, 126, 0.85), rgba(122, 0, 147, 0.85));
    opacity: 0.8;
}
.owl-carousel .item {
    padding: 0 !important;
    height: 570px !important;
}

.owl-carousel .owl-item div {
    position: relative;
    overflow: hidden;
}
.carousel.carousel-slider {
    top: 0;
    left: 0;
}
.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 500px;
    transform-style: preserve-3d;
    transform-origin: 0% 50%;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    max-height: 1490px;
    -webkit-transition: all 20s;
    -moz-transition: all 20s;
    -o-transition: all 20s;
    transition: all 20s;
    transition-timing-function: linear;
}
.owl-carousel .owl-item:nth-child(even) img {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

.owl-carousel .owl-item:nth-child(odd) img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
}

.owl-carousel .owl-item.active:nth-child(even) img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.owl-carousel .owl-item.active:nth-child(odd) img {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
}
.owl-nav{
    display: none !important;
}

.navbar {
    position: absolute;
    width: 100%;
    z-index: 10;
    max-width: 100%;
}
