@media (min-width: 768px) {
  /* === Set your desired dimensions here === */
  :root {
    --card-width: 220px;    /* Width of the card */
    --card-height: 350px;   /* Total height of the card */
    --image-height: 220px;  /* Height of image container */
  }

  /* Remove background */
  .product-card,
  .product-card-image-container,
  .product-card-image {
    background: transparent !important;
    background-color: transparent !important;
  }

  /* Product Card */
  .product-card {
    width: var(--card-width) !important;
    height: var(--card-height) !important;
    box-shadow: none !important;
    margin: 10px !important;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 6px;
    overflow: hidden;
  }

  /* Image Container */
  .product-card-image-container {
    width: 100%;
    height: var(--image-height) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Product Image */
  .product-card-image {
    object-fit: contain !important;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
  }

  /* Product Info */
  .product-card-info {
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
    flex-grow: 1;
  }

  /* Optional: Truncate long names */
  .product-card-info h2,
  .product-card-info .product-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.logo-title h1{
    text-transform: uppercase;
    font-family: italiana;
}