@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,700,900&display=swap);
body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #f1f3f5;
  padding: 0;
  margin: 0;
  overflow: hidden; }

.container {
  width: 1540px;
  margin: 0 auto; }
  .container.center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; }
  .container .title {
    position: relative;
    width: 350px; }
    .container .title h1 {
      font-size: 2rem;
      margin: 8px 0; }
  .container .product-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0 80px; }
    .container .product-row .card {
      box-sizing: border-box;
      position: relative;
      border-radius: 12px;
      padding: 24px;
      cursor: pointer;
      background: #ffffff;
      width: 425px;
      height: 425px;
      margin: 24px; }
      .container .product-row .card .category {
        font-size: 0.875rem;
        color: #424550;
        font-weight: 500;
        text-align: center;
        width: 100%;
        margin-bottom: 32px;
        display: block; }
      .container .product-row .card img {
        display: flex;
        margin: 0 auto; }
      .container .product-row .card .product-info {
        position: absolute;
        width: 375px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 24px; }
        .container .product-row .card .product-info h4 {
          color: #282828;
          font-size: 1.1rem; }
        .container .product-row .card .product-info span {
          display: block; }

.fullscreen {
  height: 100vh; }
  .fullscreen .product {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .fullscreen .product .img {
      width: 50%;
      height: 100%;
      background: #dfdfdf;
      display: flex;
      align-items: center;
      justify-content: center; }
      .fullscreen .product .img img {
        cursor: move;
        width: 500px; }
    .fullscreen .product .product-details {
      width: 50%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      .fullscreen .product .product-details .inner {
        width: 480px;
        position: relative; }
        .fullscreen .product .product-details .inner .go-back {
          cursor: pointer;
          color: #282828;
          text-decoration: none;
          text-align: left;
          position: absolute;
          top: -124px;
          left: 0; }
        .fullscreen .product .product-details .inner .category {
          font-size: 1rem;
          color: #424550;
          font-weight: 500;
          text-align: center;
          width: 100%;
          margin-bottom: 32px; }
        .fullscreen .product .product-details .inner p {
          color: #424550;
          font-weight: 300; }
        .fullscreen .product .product-details .inner .additonals {
          margin: 24px 0 48px; }
          .fullscreen .product .product-details .inner .additonals span {
            margin-right: 16px;
            color: #424550; }
        .fullscreen .product .product-details .inner .qty-price {
          display: flex;
          align-items: center;
          justify-content: space-between; }
          .fullscreen .product .product-details .inner .qty-price .qty {
            display: flex;
            align-items: center; }
            .fullscreen .product .product-details .inner .qty-price .qty .add,
            .fullscreen .product .product-details .inner .qty-price .qty .minus {
              padding: 6px;
              margin: 8px 16px;
              height: 24px;
              width: 24px;
              display: flex;
              justify-content: center;
              align-items: center;
              border-radius: 100px; }
            .fullscreen .product .product-details .inner .qty-price .qty .add {
              border: 1px solid #282828;
              cursor: pointer; }
            .fullscreen .product .product-details .inner .qty-price .qty .minus {
              margin-left: 0;
              background: #dfdfdf;
              color: #787878; }
          .fullscreen .product .product-details .inner .qty-price .price {
            color: #282828;
            font-weight: 700;
            font-size: 1.4rem; }
        .fullscreen .product .product-details .inner .btn-row {
          margin-top: 72px;
          display: flex;
          align-items: center; }
          .fullscreen .product .product-details .inner .btn-row button {
            cursor: pointer;
            border: none;
            border-radius: 8px;
            height: 48px;
            padding: 0 48px;
            font-size: 0.875rem;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 0.06rem; }
            .fullscreen .product .product-details .inner .btn-row button.add-to-cart {
              background: #2d89fa;
              color: #fff;
              margin-right: 24px; }
            .fullscreen .product .product-details .inner .btn-row button.subscribe {
              background: transparent;
              color: #424550; }

