/* Responsive */
@media (max-width: 992px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #1f2937;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;

  }

  .product-card {
    flex: 1 1 calc(50% - 20px);
    /* 2 columns */
  }

  .blog-card {
    flex: 1 1 calc(50% - 20px);
  }

  .category-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Responsive */
@media (max-width: 768px) {

  .footer-top-wrapper,
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-right img {
    margin: 10px 5px 0 5px;
  }

  .subscribe-wrapper {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .blog-card {
    flex: 1 1 100%;
  }

  .btnhidden {
    display: none;
  }

  .category-card {
    flex: 1 1 100%;
  }

  .category-text h2 {
    font-size: 20px;
  }

  .product-card {
    flex: 1 1 100%;
    /* 1 column */
  }

}


/* Responsive */
@media (min-width: 992px) {
  .product-main {
    flex-direction: row;
  }

  .product-images {
    flex: 1;
  }

  .product-details {
    flex: 1;
  }

  .main-image img {
    height: 480px;
    object-fit: cover;
  }
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content {
    align-items: flex-start;
    text-align: left;
    padding: 6rem 0;
  }

  .image {
    height: auto;
  }
}
