#product_indise_container {
  padding-top: 3rem;
  min-height: 81vh;
}
.price{
  font-size: 1.5rem;
}
#product-card-section {
  background: white;
  overflow: hidden;
}

/* Left Side - Product Image */
#product-image-card {
  height: 100%;
  min-height: 300px;
  position: relative;
  width: 100%;
}

#image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#product-image {
  width: 100%;
  height: 78%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
}

#heart-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#heart-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

#heart-icon i {
  font-size: 1.2rem;
  color: #e53e3e;
  transition: all 0.3s ease;
}

#heart-icon:hover i {
  color: #c53030;
}

/* Right Side - Product Details */
#product-details {
  padding-top: 0 !important;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  min-height: 300px;
}

#phone-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: #212529;
  letter-spacing: 1px;
}

#carrier-name {
  font-size: 1.1rem;
  color: #007bff;
  font-weight: 500;
  text-transform: capitalize;
}

#rating-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#carrier-divider{
    margin:0 !important;
}
#stars {
  display: flex;
  gap: 2px;
}

#stars i {
  color: #ffd700;
  font-size: 1.1rem;
}

#review-count {
  color: #718096;
  font-size: 0.95rem;
  font-weight: 500;
}

#price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #212529;
}

#action-btn {
  background-color: #1D4ED8;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(66, 153, 225, 0.3);
  align-self: flex-start;
}

#action-btn:hover {
  background-color:#1E40AF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.action-btn:active {
  transform: translateY(0);
}
#similar-products{
    padding-top:0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-image-card {
    min-height: 220px;
  }
  #phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  letter-spacing: 1px;
}
  
  .heart-icon {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
  
  .heart-icon i {
    font-size: 1rem;
  }
  
  .product-details {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    min-height: auto;
  }
  
  .phone-number {
    font-size: 1.75rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .action-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-details {
    padding: 1.5rem 1rem;
  }
  
  .phone-number {
    font-size: 1.5rem;
  }
  
  .price {
    font-size: 1.2rem;
  }
  #product-details{
      padding: 1rem;
  }
}

/* Smooth transitions */
* {
  transition: all 0.2s ease;
}

/* Focus states for accessibility */
.action-btn:focus {
  outline: 2px solid #4299e1;
  outline-offset: 2px;
}
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 45%;
    }
}