
    .containerddd {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      padding: 20px;
    }

    .image-section,
    .details-section {
      min-width: 280px;
      flex: 1 1 200px;
      max-width: 100%;
    }

    .image-section img {
      width: 100%;
      border-radius: 6px;
      height: auto;
    }

    .thumbnails {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .thumbnail {
      width: 70px;
      height: 50px;
      object-fit: cover;
      border: 2px solid transparent;
      cursor: pointer;
      border-radius: 4px;
      transition: border-color 0.2s ease;
    }

    .thumbnail.active {
      border-color: #5cba47;
    }

    h2 {
      font-size: 24px;
      margin-bottom: 10px;
      color: #333;
    }

    p.description {
      margin-bottom: 20px;
      color: #555;
      font-size: 16px;
      line-height: 1.5;
    }

    .product-info {
      border-top: 1px solid #ccc;
      margin-top: 15px;
      padding-top: 15px;
    }

    .info-row {
      display: flex;
      justify-content: space-between;
      padding: 6px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 16px;
    }

    .available-size {
      margin-top: 15px;
      font-size: 15px;
      color: #333;
    }

    .buttons {
      margin-top: 25px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .buttons button {
      background-color: #31475e;
      color: white;
      padding: 10px 18px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      transition: background 0.3s ease;
      flex: 1 1 200px;
      font-size: 15px;
    }

    .buttons button:hover {
      background-color: #e97d50;
    }

    /* Tablet View */
    @media (max-width: 992px) {
      .containerddd {
        flex-direction: column;
        padding: 15px;
      }

      h2 {
        font-size: 22px;
      }

      p.description {
        font-size: 15px;
      }

      .info-row {
        font-size: 15px;
      }

      .available-size {
        font-size: 14px;
      }

      .buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .buttons button {
        width: 100%;
        flex: unset;
      }
    }

    /* Mobile View */
    @media (max-width: 576px) {
      h2 {
        font-size: 20px;
      }

      p.description {
        font-size: 14px;
      }

      .info-row {
        flex-direction: column;
        align-items: flex-start;
        font-size: 14px;
      }

      .thumbnail {
        width: 60px;
        height: 40px;
      }

      .buttons {
        gap: 8px;
      }

      .buttons button {
        font-size: 14px;
        padding: 9px 16px;
      }
    }
