
    .main-wrapper {
      /* background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%); */
      /* overflow-x:auto; */
      padding: 40px 0px;
    }

    .product-card-container {
      max-width: 1600px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 16px;
      /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
      overflow: hidden;
    }

   .product-image-wrapper {
    position: relative;
    background: #ededed;
    padding: 40px;
    
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border-radius: 10px;
}
    .roast-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: #2c3e50;
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

  .product-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 400px;
    /* background: linear-gradient(145deg, #8b6b47, #6b4e31); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
}

    .coffee-bag-svg {
      width: 180px;
      height: 280px;
    }

   .product-details {
    padding: 0px 40px;
}

    .product-title {
    font-size: 46px;
    font-weight: 700;
    color:  #403933 !important;
    margin: 0px 0px 10px 0px;
    line-height: 1.2;
    font-family: "Geograph",system-ui,sans-serif !important;
}
    .product-description {
      font-size: 16px;
      color: #6c757d;
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .rating-container {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
      gap: 8px;
    }

    .stars {
      display: flex;
      gap: 4px;
    }

    .star {
      color: #ffc107;
      font-size: 18px;
    }

    .star.empty {
      color: #dee2e6;
    }

    .rating-text {
      font-size: 14px;
      color: #6c757d;
      margin-left: 8px;
    }

    .price-container {
      margin-bottom: 24px;
    }

    .product-price {
      font-size: 36px;
      font-weight: 700;
      color: #000000 !important;
      display: inline-block;
    }

    .options-section {
      margin-bottom: 24px;
    }

    .option-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .quantity-section {
      margin-bottom: 24px;
    }

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #ddd;
    width: 150px;
}
    .quantity-btn {
      width: 40px;
      height: 40px;
      border: 2px solid transparent;
      background: #ffffff;
      border-radius: 8px;
      font-size: 20px;
      font-weight: 600;
      color: #2c3e50;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

   
    .quantity-btn:active {
      transform: scale(0.95);
    }

    



    .quantity-display {
      font-size: 18px;
      font-weight: 600;
      color: #2c3e50;
      min-width: 40px;
      text-align: center;
    }

    .radio-options {
    display: flex;
    flex-direction: row;
    gap: 5px;
    white-space: nowrap;
    flex-wrap: wrap;
}
    .radio-option {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      background-color: #ffffff;
      position: relative;
    }

    .radio-option:hover {
      border-color: #f68626;
      background-color: #f8f9fa;
    }

    .radio-option.selected {
      border-color: #f68626;
      background-color: #f6862614;
    }

    .radio-option input[type="radio"] {
    width: 100%;
    height: 100%;
    margin-right: 12px;
    cursor: pointer;
    position: absolute;
    opacity: 0;
}
.block  input[type=radio]:checked + .subscription-option {
  background-color: red !important; /* Change background color when checked */
  color:#fff !important;
}
.display-flex {
    display: flex;
    align-items: baseline;
    width: 100%;
    gap: 10px;
}
    .radio-option-label {
      font-size: 15px;
      color: #2c3e50;
      cursor: pointer;
      margin: 0;
      font-weight: 500;
    }

    .subscription-option {
    background: #e8f5e9;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    /* display: flex; */
    
    gap: 12px;
    width: 100%;
    color: #000;
}

    .subscription-checkbox {
      width: 20px;
      height: 20px;
      cursor: pointer;
    }

    .subscription-text {
      font-size: 15px;
      color: #27ae60;
      font-weight: 600;
      margin: 0;
    }

    .add-to-cart-btn {
      width: 100%;
      padding: 10px 5px;
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
      background: red;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 10px;
    }

    .add-to-cart-btn:hover {
      background:#f68626;
      transform: translateY(-2px);
      /* box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4); */
    }

    .add-to-cart-btn:active {
      transform: translateY(0);
    }.d-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}
    .success-message {
      display: none;
      background: #d4edda;
      color: #155724;
      padding: 12px;
      border-radius: 8px;
      margin-top: 16px;
      text-align: center;
      font-weight: 600;
    }

    .success-message.show {
      display: block;
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 767px) {
      .product-image-wrapper {
        min-height: 300px;
        padding: 30px 20px;
      }

      .product-image-placeholder {
        max-width: 200px;
        height: 250px;
      }

      .coffee-bag-svg {
        width: 140px;
        height: 220px;
      }

      .product-details {
        padding: 30px 20px;
      }

      .product-title {
        font-size: 26px;
      }

      .product-price {
        font-size: 30px;
      }

      .roast-badge {
        font-size: 11px;
        padding: 6px 12px;
      }
    }
@view-transition { navigation: auto; }
/* Style the dropdown to make it look more polished */
#beanType {
  color:#000;
  width:100%;  padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    appearance: none;  /* Removes default dropdown arrow in some browsers */
}

/* Custom arrow style */
#beanType::-ms-expand {
    display: none;  /* Hides the dropdown arrow in IE */
}

#beanType:focus {
    outline: none;
    border-color: #dd8955 !important;
}

/* Add a custom arrow for better styling */
.dropdown-options {
    position: relative;
    width: 200px;  /* Adjust this to your preferred width */
}

#beanType::after {
    content: '\25BC'; /* Unicode for a downward arrow */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    pointer-events: none;
    color: #007bff;  /* Arrow color */
}

/* Style the option list */
#beanType option {
  padding: 20px;
  font-size: 14px;
  color: #222;
  background: #ffffff;
  font-family: "Geograph", system-ui, sans-serif !important;

}
