
    @import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;500;600&display=swap');

    .grill-instructions-wrapper {
      --pink: #E9098D;
      --grey-text: #6C6C6C;
      --border-color: #656565;
      font-family: 'Kanit', sans-serif;
      max-width: 1221px;
      margin: 40px auto;
    }

    /* New Quick Start Guide Title */
    .guide-title {
      font-family: 'Kanit', sans-serif;
      font-weight: 500;
      font-size: 27px;
      line-height: 100%;
      letter-spacing: 0%;
      color: #000000;
      text-align: center;
      margin-bottom: 30px;
    }

    .grill-instructions-grid {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      overflow: hidden;
    }

    .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
      text-align: center;
      position: relative;
    }

    /* Vertical Dividers */
    .step-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 1px;
      background-color: var(--border-color);
    }

    .step-img {
      width: 170px;
      height: 170px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      margin-bottom: 24px;
    }

    .step-title {
      color: var(--pink);
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .step-text {
      color: var(--grey-text);
      font-weight: 300;
      font-size: 14px;
      line-height: 21px;
      max-width: 200px;
    }

    /* Mobile Responsive View */
    @media (max-width: 1024px) {
      .guide-title {
        font-size: 22px; /* Slightly smaller for mobile screens */
        padding: 0 15px;
      }

      .grill-instructions-wrapper{
          padding: 0 15px;
      }

      .grill-instructions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }
      
      .step-item:not(:last-child)::after {
        right: auto;
        bottom: 0;
        top: auto;
        width: 100%;
        height: 1px;
      }
      
      .step-item {
        padding: 30px 15px;
      }
    }
    /*
@media (max-width: 766px) {

  .Similar-section .product_list{
     display: grid;
     grid-template-columns: 1fr;
     gap: 16px;
  }
  .Similar-section .product-item{
     width: 100%;
  }
}*/

     /* Base Section Styling */
.combo-section {
    background: #FFFFFF;
    font-family: 'Kanit', sans-serif;
}

.combo-container {
    max-width: 1440px;
    margin: 0 auto;
}

.combo-main-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    color: #000000;
    margin-bottom: 40px;
}

/* Flexbox Grid: 4 items per row */
.combo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust gap to fit 4 items nicely */
    justify-content: center;
}

.combo-card {
    flex: 0 0 calc(25% - 20px); /* Exactly 4 per row */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

/* Image scaling per your request */
.combo-img-wrapper {
    width: 135px; /* Based on image 352 */
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.combo-img-wrapper img {
    width: auto;
    height: 168px;
    object-fit: contain;
}

/* Typography from Figma */
.combo-name {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 5px 0;
    text-decoration: none;
}

.combo-price {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #6C6C6C; /* From All Artists secondary color */
    margin-bottom: 12px;
}

/* Quantity Box - Exact Figma Dimensions */
.combo-qty-container {
    box-sizing: border-box;
    display: flex;
    width: 113.56px;
    height: 31.07px;
    border: 1px solid #E6E6E6;
    background: #FFFFFF;
    justify-content: center;
    margin: 0 auto; /* Perfectly center horizontally */
}

.qty-btn {
    flex: 1;
    background: none;
    border: none;
    font-family: 'Kanit';
    font-weight: 300;
    font-size: 20px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.qty-btn:first-child {
    border-right: 1px solid #E6E6E6;
}

.qty-btn:last-child {
    border-left: 1px solid #E6E6E6;
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-family: 'Kanit';
    font-weight: 300;
    font-size: 14px;
    color: #000000;
    outline: none;
    background: transparent;
    line-height: 31.07px;
}

/* Perfect centering for combo info section */
.combo-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.combo-info a {
    text-decoration: none;
    display: block;
    text-align: center;
}

/* Mobile View: 2 items per row or 1 */
@media (max-width: 1024px) {
    .combo-card {
        flex: 0 0 calc(50% - 20px); /* 2 items per row */
    }
    
    .combo-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .combo-card {
        flex: 0 0 100%; /* 1 item per row */
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .combo-main-title {
        font-size: 22px;
    }
    
    .combo-img-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .combo-qty-container {
        width: 120px;
        height: 36px;
    }
    
    .qty-input {
        line-height: 36px;
        font-size: 15px;
    }
    
    .qty-btn {
        font-size: 22px;
        min-width: 40px;
    }
}