/* =====================================
   WIZARD CONTENT
   ===================================== */

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

/* =====================================
   STEP 1: PRODUCTS
   ===================================== */

.product-card {
  border: none !important;
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  min-height: 320px;
  transition: box-shadow 0.3s ease;
}

.hover:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

@media (max-width: 767px) {
  .hover:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }
}

.image-container {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.image-container .flower-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  border-top: 1px solid #f5f5f5;
}

.product-title {
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 20px;
  max-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-order-container {
  margin-top: 10px;
  //padding-top: 10px;
  border-top: inherit;
  min-height: 88px;
}

.price-text {
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.order-btn {
  width: 100%;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
}

/* =====================================
   STEP 2: ADDRESS SELECTION
   ===================================== */

/*If address not available*/
.no-data {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 15px;
}

/* Address Card */
.address-card {
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.address-card:hover {
    border-color: #bbb;
}

.address-card.selected {
    border-color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}

/* Address Content */
.address-content {
    padding: 20px;
}

.address-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.address-header .radio-container {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.address-header input[type="radio"] {
    accent-color: {{ Session::get('default_settings.button_bg_color') }};
    margin: 0;
    width: 18px;
    height: 18px;
}

.address-label {
    margin: 0;
}

.address-details {
    margin-left: 33px;
}

.address-line {
    margin-bottom: 5px;
    line-height: 1.5;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* overrides */
.custom-placeholder {
    top: 7px !important;
}

input, textarea {
    border-bottom: 1px solid #37474f !important;
}

.pagination > li > a, .pagination > li > span {
  color: inherit !important;
}

.products-header {
  overflow: visible !important;
}