
body { font-family: 'Segoe UI', system-ui, sans-serif; background-color: #F4F9FC; }
.navbar-custom { background: rgba(255, 255, 255, 0.95); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
.brand-tree-logo { height: 50px; }
.brand-monogram-img { height: 45px; }
.hero-section { background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%); color: white; padding: 80px 0; }
.btn-contact-nav { background: #D32F2F; color: white; border-radius: 25px; }
.feature-card { background: white; border-radius: 20px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.ph-badge { background: #10B981; color: white; padding: 6px 16px; border-radius: 20px; font-weight: 700; }
.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 16px; /* Smooth rounded corners */
  overflow: hidden;    /* Clips the iframe corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.products-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .products-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .products-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
  }

  .products-header p {
    font-size: 16px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }

  .product-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  /* Image Container Fixes */
  .product-image-wrapper {
    width: 100%;
    height: 260px;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-bottom: 1px solid #f3f4f6;
  }

  .product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .product-tag {
    align-self: flex-start;
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .product-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
  }

  .product-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.5;
    flex-grow: 1;
  }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
  }

  .btn-order {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .btn-order:hover {
    background-color: #1d4ed8;
  }