* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Outfit, sans-serif;
}

p,
ul,
li,
a, div {
  font-family: Roboto, sans-serif;
}

p {
  line-height: 1.75;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  position: fixed;
  z-index: 1;
  background-color: rgba(88, 0, 0, 0.7254901961);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header .logo img {
  width: 70%;
  height: -moz-fit-content;
  height: fit-content;
}
header .pleosc {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  background-color: rgba(56, 0, 0, 0.9803921569);
  padding: 2rem;
  align-content: center;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}
header .pleosc ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
}
header .pleosc ul li a {
  text-decoration: none;
  color: white;
}
@media (width > 768px) {
  header .pleosc {
    transform: translateX(0);
    position: static;
    height: 100%;
    background-color: transparent;
  }
  header .pleosc ul {
    flex-direction: row;
    justify-content: flex-end;
  }
  header .pleosc ul li a {
    transition: all 0.5s ease-in-out;
  }
  header .pleosc ul li a:hover {
    color: red;
  }
}
header .haipleosc {
  transform: translateX(0);
}
@media (width >= 768px) {
  header {
    width: 100%;
    padding: 1.2rem 10vw;
    justify-content: space-evenly;
  }
  header > * {
    flex: 1;
  }
  header .logo img {
    width: 40%;
  }
  header .ham {
    display: none;
  }
}

.ham {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: transparent;
}

.hamburger-menu {
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.hamburger-menu .bar {
  width: 1.5rem;
  height: 1px;
  border-radius: 2px;
  background-color: white;
  transition: 0.5s;
  position: relative;
}

.hamburger-menu .bar::before, .hamburger-menu .bar::after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: white;
  transition: 0.5s;
}

.hamburger-menu .bar::before {
  transform: translateY(-6px);
}

.hamburger-menu .bar::after {
  transform: translateY(6px);
}

.ham.active .bar {
  transform: rotate(360deg);
  background-color: transparent;
}

.ham.active .bar::before {
  transform: translateY(0) rotate(45deg);
}

.ham.active .bar::after {
  transform: translateY(0) rotate(-45deg);
}

.ham.active .main {
  animation: main-animation 0.5s ease;
  cursor: pointer;
  transform: perspective(1300px) rotateY(20deg) translateY(10px) translateZ(310px) scale(0.5);
}

header .headerDreapata {
  display: flex;
}

header .headerDreapata .login img {
  width: 15vh;
}

.ham {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hamburger-menu {
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.hamburger-menu .bar {
  width: 1.5rem;
  height: 1px;
  border-radius: 2px;
  background-color: white;
  transition: 0.5s;
  position: relative;
}

.hamburger-menu .bar::before, .hamburger-menu .bar::after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: white;
  transition: 0.5s;
}

.hamburger-menu .bar::before {
  transform: translateY(-6px);
}

.hamburger-menu .bar::after {
  transform: translateY(6px);
}

.ham.active .bar {
  transform: rotate(360deg);
  background-color: transparent;
}

.ham.active .bar::before {
  transform: translateY(0) rotate(45deg);
}

.ham.active .bar::after {
  transform: translateY(0) rotate(-45deg);
}

.ham.active .main {
  animation: main-animation 0.5s ease;
  cursor: pointer;
  transform: perspective(1300px) rotateY(20deg) translateY(10px) translateZ(310px) scale(0.5);
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  transform: translate-y(-50%);
  z-index: 100;
  width: 70vw;
  height: 100vh;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.815);
  padding: 1.5rem;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}
@media (width > 768px) {
  .cart {
    padding: 10vw;
  }
}
.cart i {
  position: absolute;
  top: 2.5vh;
  right: 2.5vh;
}
.cart h2 {
  position: absolute;
  top: 5%;
  font-size: 4vw;
}
@media (width > 768px) {
  .cart h2 {
    font-size: 2vw;
  }
}
.cart .cart-items {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width > 768px) {
  .cart .cart-items {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.cart .cart-items .cart-item {
  border-bottom: 1px solid red;
  padding-bottom: 0.5rem;
}
.cart .cart-items .cart-item > *:not(:first-child) {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}
.cart .cart-items .cart-item .img-cos-content {
  background-color: white;
  text-align: center;
}
.cart .cart-items .cart-item .img-cos-content img {
  height: 5vh;
}
.cart .cart-items .cart-item button {
  width: 100%;
  margin-top: 2rem;
  background-color: rgba(255, 0, 0, 0.247);
  border: none;
  color: white;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  padding: 0.25rem 2rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.cart .cart-items .cart-item button:hover {
  background-color: rgba(255, 0, 0, 0.527);
  transform: translate(-2px, -2px);
}
.cart .total {
  margin-top: 2rem;
}
.cart .clear-cart {
  margin-top: 2rem;
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
}
.cart .go-to-checkout {
  margin-top: 2rem;
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
}

.active {
  transform: translateX(0);
}

.arata-cos {
  display: block;
}

.hero {
  padding: 10vh 0;
  position: relative;
  height: 100vh;
}
.hero .img {
  width: 100%;
  height: 35vh;
  background-image: url("./bg-hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (width > 768px) {
  .hero .img {
    background-image: url("./bg-hero-desk.webp");
  }
}
.hero .scris {
  padding: 0 5vw;
}
.hero .scris h1 {
  font-size: 2rem;
  color: red;
  font-weight: 900;
}
.hero .scris h1 span {
  color: white;
  font-size: 1.5rem;
}
.hero .scris p {
  line-height: 1.75;
  margin-top: 5vh;
}
@media (width > 768px) {
  .hero .scris {
    display: flex;
    gap: 5vw;
    align-items: start;
    padding: 0 10vw;
  }
  .hero .scris > * {
    flex: 1;
  }
  .hero .scris h1 {
    font-size: 3.5vw;
  }
  .hero .scris h1 span {
    font-size: 2.5rem;
  }
  .hero .scris p {
    font-size: 1.5rem;
    margin-top: 2.5vh;
  }
}
.hero .marq {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  background: red;
  overflow: hidden;
  font-family: Outfit, sans-serif;
}
.hero .marq-wrapp {
  display: flex;
  width: 100%;
  height: auto;
  padding: 8px 70px;
}
.hero .marq-txt {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  padding-right: 55px;
  text-transform: uppercase;
  color: black;
  font-size: 35px;
  font-weight: 900;
}
.hero .marq-star {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 5px;
}
.hero .marq-star img {
  display: block;
  width: 100%;
  height: 100%;
}

.magazin {
  width: 100%;
  padding: 5vh 5vw;
  position: relative;
}
.magazin .scris {
  margin-bottom: 1.5rem;
}
.magazin .scris h2 {
  font-size: 2rem;
  color: red;
  font-weight: 900;
}
@media (width > 768px) {
  .magazin .scris h2 {
    font-size: 5rem;
  }
  .magazin .scris p {
    font-size: 1.5rem;
  }
}
.magazin .produse {
  margin-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
.magazin .produse .prod {
  border-bottom: 1px solid red;
  margin-bottom: 1rem;
}
.magazin .produse .prod .img-container {
  background-color: white;
  height: 20;
  overflow: hidden;
}
.magazin .produse .prod .img-container .img {
  width: 100%;
  height: 20vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.5s ease-in-out;
  transform-origin: center;
}
@media (width > 768px) {
  .magazin .produse .prod .img-container .img:hover {
    transform: scale(1.15);
  }
}
.magazin .produse .prod .info {
  margin-top: 2rem;
  background-color: black;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.magazin .produse .prod .info > * {
  margin-top: 0.5rem;
}
.magazin .produse .prod .info h3 {
  font-size: 1.5rem;
  color: red;
}
.magazin .produse .prod .info button {
  margin-top: 2rem;
  background-color: rgba(255, 0, 0, 0.247);
  border: none;
  color: white;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.magazin .produse .prod .info button:hover {
  background-color: rgba(255, 0, 0, 0.527);
  transform: translate(-2px, -2px);
}
.magazin .produse .prod .info .cantitate-cos {
  display: none;
}
@media (width > 768px) {
  .magazin .produse {
    display: flex;
    gap: 5vw;
    flex-wrap: wrap;
    justify-content: center;
  }
  .magazin .produse > * {
    width: 20vw;
  }
}
.magazin .simbolCos {
  position: fixed;
  top: 50%;
  right: 0;
  background-color: rgba(88, 0, 0, 0.7254901961);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 1.2rem;
  border-radius: 5px 0 0 5px;
  align-content: center;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.magazin .haiSimbolCos {
  transform: translateX(0);
}
@media (width > 768px) {
  .magazin {
    padding: 5vh 5vw;
  }
}

.comanda {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-content: center;
  background-color: #580000;
  padding: 2rem;
  display: none;
}
.comanda .scris h2 {
  cursor: pointer;
}
@media (width > 768px) {
  .comanda {
    padding: 5vw;
  }
  .comanda .scris {
    padding: 0 20vw;
  }
  .comanda .scris h2 {
    font-size: 2.5vw;
  }
  .comanda .scris p {
    font-size: 1vw;
  }
}
.comanda i {
  position: absolute;
  top: 5vw;
  right: 5vw;
  font-size: 1rem;
}
@media (width > 768px) {
  .comanda i {
    top: 2.5vw;
    right: 2.5vw;
    font-size: 1.5rem;
  }
}
.comanda form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (width > 768px) {
  .comanda form {
    padding: 0 20vw;
  }
}
.comanda form input {
  padding: 0.25rem 0.5rem;
}
.comanda form input::-moz-placeholder {
  font-size: 0.75rem;
  color: white;
}
.comanda form input::placeholder {
  font-size: 0.75rem;
  color: white;
}
@media (width > 768px) {
  .comanda form input::-moz-placeholder {
    font-size: 1rem;
  }
  .comanda form input::placeholder {
    font-size: 1rem;
  }
}
.comanda form input:not(:last-child) {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.418);
}
@media (width > 768px) {
  .comanda form input:not(:last-child) {
    padding: 1rem 1.5rem;
  }
}
.comanda form input:last-child {
  width: 25%;
  margin: auto;
}
.comanda form textarea {
  height: 25vh;
  margin: 1rem 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.418);
  color: white;
  font-family: roboto, sans-serif;
}
@media (width > 768px) {
  .comanda form textarea {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    height: 15vh;
  }
}
.comanda form textarea::-moz-placeholder {
  font-size: 0.75rem;
  color: white;
}
.comanda form textarea::placeholder {
  font-size: 0.75rem;
  color: white;
}
@media (width > 768px) {
  .comanda form textarea::-moz-placeholder {
    font-size: 1rem;
  }
  .comanda form textarea::placeholder {
    font-size: 1rem;
  }
}

.arata-comanda {
  display: block;
}

.despre {
  background-image: url("./assets/img/bg3-mobil.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5vh 5vw;
}
.despre::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 0, 0, 0.267);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}
.despre .scris {
  position: relative;
}
.despre .scris h2 {
  font-size: 2rem;
  color: white;
}
@media (width > 768px) {
  .despre {
    padding: 15vh 10vw;
  }
  .despre .scris {
    display: flex;
    gap: 5vw;
  }
  .despre .scris > * {
    flex: 1;
  }
  .despre .scris h2 {
    font-size: 5rem;
  }
  .despre .scris p {
    margin: 0;
    font-size: 1.5rem;
  }
}

section {
  padding: 5vh 5vw;
  display: flex;
  flex-direction: column;
  gap: 5vh;
}
section .scris h2 {
  color: red;
}
@media (width > 768px) {
  section .scris h2 {
    font-size: 3.5rem;
  }
}
section .poza {
  width: 100%;
  height: 25vh;
  background-image: url("./assets/img/bg3-desk.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (width > 768px) {
  section .poza {
    height: initial;
  }
}

@media (width > 768px) {
  .descopera {
    padding: 15vh 10vw;
    flex-direction: row;
  }
  .descopera > * {
    flex: 1;
  }
  .descopera .scris h2 {
    font-size: 3.5rem;
  }
  .descopera .scris p {
    font-size: 1.5rem;
  }
}

.descriere {
  background-color: rgb(44, 0, 0);
}
.descriere h2 {
  color: red;
  font-size: 2rem;
}
.descriere .treicasute {
  display: flex;
  flex-direction: column;
  gap: 5vh;
}
@media (width > 768px) {
  .descriere {
    padding: 15vh 10vw;
  }
  .descriere h2 {
    font-size: 3.5rem;
    text-align: center;
  }
  .descriere .treicasute {
    margin-top: 5vh;
    flex-direction: row;
    gap: 7.5vw;
  }
}

.descriere2 .scris .douacasute {
  margin-top: 5vh;
  display: flex;
  flex-direction: column;
  gap: 5vh;
}
.descriere2 .poza {
  width: 100%;
  height: 25vh;
  background-image: url("./assets/img/bg3-desk.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (width > 768px) {
  .descriere2 .poza {
    height: initial;
  }
}
@media (width > 768px) {
  .descriere2 {
    padding: 15vh 10vw;
    flex-direction: row;
  }
  .descriere2 .scris .douacasute {
    flex-direction: row;
  }
}

.contact {
  padding: 5vh 5vw;
  border-top: 1px solid red;
}
.contact .scris .date {
  display: flex;
  flex-direction: column;
  gap: 2.5vh;
}
.contact .scris .date > * a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}
.contact .scris .date > * a span {
  margin-left: 1rem;
}
.contact .scris .harta {
  margin-top: 2.5vh;
  max-width: 100%;
  height: 25vh;
}
.contact .scris .harta iframe {
  width: 100%;
  height: 25vh;
}
@media (width > 768px) {
  .contact .scris .harta {
    margin-top: 0;
  }
}
@media (width > 768px) {
  .contact .scris {
    display: flex;
  }
  .contact .scris > * {
    flex: 1;
  }
}

footer {
  padding: 5vh 5vw;
  border-top: 1px solid red;
  position: relative;
}
footer .logo {
  text-align: center;
}
footer .logo img {
  width: 75%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (width > 768px) {
  footer .logo img {
    width: 25%;
  }
}
footer nav {
  margin: 5vh auto 15vh;
}
footer nav ul {
  list-style: none;
  display: flex;
  gap: 5vw;
  justify-content: center;
}
footer nav ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.5s ease-in-out;
}
footer nav ul li a:hover {
  color: red;
}
footer .jos {
  padding: 2.5vh 2.5vw;
  position: absolute;
  z-index: 1;
  background-color: rgba(88, 0, 0, 0.726);
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5vh;
  justify-content: center;
  align-items: center;
}
footer .jos a {
  text-decoration: none;
  color: white;
}
@media (width > 768px) {
  footer {
    padding: 5vh 10vw 7.5vh;
  }
  footer nav {
    margin: 5vh auto;
  }
  footer .jos {
    flex-direction: row;
    justify-content: space-around;
  }
}/*# sourceMappingURL=style.css.map */