.product-card, .btn-primary, .hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover, .btn-primary:hover, .hover-effect:hover {
  transform: translateY(-5px);
}

body {
  min-height: 100vh;
  flex-direction: column;
}

.hover-effect:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #CE5E5B !important;
  border-color: #CE5E5B !important;
}
.btn-primary:hover {
  background-color: rgb(189.4084507042, 60.0563380282, 56.5915492958) !important;
  border-color: rgb(189.4084507042, 60.0563380282, 56.5915492958) !important;
}

main {
  flex: 1;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 5px;
}

.fas,
.modal-title {
  color: #CE5E5B;
}

form {
  margin: 10px;
}

.navbar {
  background-color: #fef7f0;
}
.navbar .navbar-brand {
  font-size: 1.5rem;
  color: #CE5E5B;
  font-weight: 600;
}
.navbar .nav-link.active {
  color: #CE5E5B !important;
  font-weight: 600;
  border-bottom: 2px solid #CE5E5B;
}
.navbar .nav-link:hover {
  color: #DD8E8C;
}

.footer {
  background-color: #fef7f0;
}
.footer .newsletter-input {
  color: #CE5E5B;
  padding: 0.75rem 1rem;
}
.footer .newsletter-input::-moz-placeholder {
  color: #DD8E8C;
}
.footer .newsletter-input::placeholder {
  color: #DD8E8C;
}
.footer .newsletter-button {
  padding: 0.75rem 1rem;
}

.product-card {
  border: 1px solid #DD8E8C;
}
.product-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-card img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

#heroCarousel .carousel-item img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  #heroCarousel .carousel-item img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  #heroCarousel .carousel-item img {
    height: 500px;
  }
}

.login-page {
  background-image: url("../images/login-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  z-index: 1;
}
.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 186, 186, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 0;
}

.benefit-box {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-hero {
  background: linear-gradient(135deg, #fef7f0 0%, rgb(244.2751677852, 219.355704698, 218.7248322148) 100%);
}
.contact-page .contact-hero h1 {
  color: #CE5E5B;
}
.contact-page .contact-card {
  border: none;
  border-left: 4px solid #CE5E5B;
  transition: all 0.3s ease;
}
.contact-page .contact-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-page .contact-card a {
  color: #CE5E5B;
  transition: color 0.3s ease;
}
.contact-page .contact-card a:hover {
  color: rgb(189.4084507042, 60.0563380282, 56.5915492958);
}
.contact-page .contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #CE5E5B, #DD8E8C);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page .contact-icon i {
  color: white;
  font-size: 1.25rem;
}
.contact-page .social-btn {
  width: 45px;
  height: 45px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #CE5E5B;
  color: #CE5E5B;
  transition: all 0.3s ease;
}
.contact-page .social-btn:hover {
  background-color: #CE5E5B;
  border-color: #CE5E5B;
  color: white;
  transform: translateY(-3px);
}
.contact-page .social-btn i {
  font-size: 1.1rem;
}

#user-checkout .form-control:focus {
  border-color: #DD8E8C;
  box-shadow: 0 0 0 0.25rem rgba(221, 142, 140, 0.25);
}
#user-checkout fieldset legend {
  color: #CE5E5B !important;
  font-size: 1.1rem;
  border-bottom: 1px solid white;
  padding-bottom: 0.5rem;
}
#user-checkout .form-check-label {
  color: #495057;
  transition: color 0.3s ease;
}
#user-checkout .form-check-label:hover {
  color: #CE5E5B;
}

.card-header {
  background-color: #CE5E5B;
  color: white;
  padding: 1rem 1.5rem;
  border-bottom: none;
}

.checkout-summary {
  position: sticky;
  top: 20px;
  border-radius: 10px;
  border: none;
  overflow: hidden;
}
.checkout-summary .list-group-item:last-child {
  border-bottom: none;
}
.checkout-summary .cart-item-detail {
  padding: 0.75rem 0;
}
.checkout-summary .cart-item-detail .btn-outline-danger {
  color: #CE5E5B;
  border-color: #CE5E5B;
}
.checkout-summary .cart-item-detail .btn-outline-danger:hover {
  background-color: #CE5E5B;
  color: white;
}
.checkout-summary .cart-item-detail h6 {
  color: #343a40;
}
.checkout-summary #order-total {
  color: #CE5E5B;
}