/* --------------------------------------------------------------
# Base styles
-------------------------------------------------------------- */
body {
    font-family: "Poppins", sans-serif !important;
    margin: 0;
    padding: 0;
  }
  
  input[type="search"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  
  /* Back button */
  .back-button-container {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 10px;
  }
  .back-button {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  .back-button:hover {
    background-color: #333;
    color: #fff !important;
  }
  
  /* Flickity dots */
  .flickity-page-dots {
    bottom: -25px;
  }
  .flickity-page-dots .dot {
    width: 15px;
    height: 4px;
    margin: 0 3px;
    border-radius: 0;
    background: #ccc;
  }
  .flickity-page-dots .dot.is-selected {
    background-color: rgba(255,165,50,1);
  }
  
  /* --------------------------------------------------------------
  # Package card styles
  -------------------------------------------------------------- */
  .package-container {   
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    justify-content: flex-start;
  }
  
  .package {
    flex: 1 1 220px;
    max-width: 250px;
    background: #fff;
    border: 1px solid rgba(0,70,90,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }
  
  .package:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }
  
  .package img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  
  .nameitem a {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    color: rgba(0,0,0,0.7);
    display: block;
    text-decoration: none;
  }
  .nameitem a:hover {
    color: rgba(255,95,50,1);
  }
  
  #priceitem {
    font-weight: bold;
    color: #000;
    opacity: 0.8;
    font-size: 14px;
    padding: 5px 10px;
  }
  
  .locitem {
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    padding: 0 10px 10px;
    display: block;
  }
  
  .package .d-flex {
    padding: 0 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .share, .cart-outline {
    margin-left: 10px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
  }
  .share:hover, .cart-outline:hover {
    color: rgba(255,95,50,1);
  }
  
  /* --------------------------------------------------------------
  # Responsive package layout
  -------------------------------------------------------------- */
  @media (max-width: 768px) {
    .package-container {
      justify-content: center;
    }
    .package {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  
  /* --------------------------------------------------------------
  # Footer
  -------------------------------------------------------------- */
  .footer {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(192,192,192,0.5);
  }
  .footer h6 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footer p {
    font-size: 14px;
  }
  .footer img {
    width: 140px;
  }
  .footer button {
    font-size: 13px;
    border: none;
    background-color: rgba(0,0,0,0.6);
    color: white;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 4px;
  }
  