:root {
  --brand-green: #28a745;
  --brand-green-dark: #1f7d36;
  --brand-orange: #fd7e14;
  --brand-orange-hover: #e67312;
  --brand-text: #343a40;
  --brand-light-bg: #f8f9fa;
  --brand-white: #ffffff;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #444;
  background-color: #f8f9fa;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "El Messiri", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.navbar-brand {
  font-weight: 600;
}

.marketplace-header h1,
.hero-title,
.section-title-clean {
  font-weight: 700;
}

.btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-section h1,
.hero-section p {
  color: var(--brand-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar {
  background-color: var(--brand-white) !important;
  border-bottom: 3px solid var(--brand-green);
}

.navbar-brand strong {
  color: var(--brand-green) !important;
}

.navbar-nav .nav-link {
  color: #555 !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--brand-green) !important;
}

.navbar-nav .btn-primary {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  padding: 6px 15px;
  border-radius: 20px;
  margin-left: 10px;
}

.navbar-nav .btn-primary:hover {
  background-color: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
}

.btn-primary {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--brand-white) !important;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
  color: var(--brand-white) !important;
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: white;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  overflow: hidden;
  margin-top: -20px;
}

.hero-section .btn-primary {
  padding: 12px 30px;
  font-size: 1.2rem;
}

.service-card {
  border: none;
  border-top: 4px solid var(--brand-green);
  border-radius: 10px;
  background-color: var(--brand-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.service-card .card-body {
  padding: 30px;
}

.service-card i {
  color: var(--brand-green);
}

.service-card.orange-top {
  border-top-color: var(--brand-orange);
}

.service-card.orange-top i {
  color: var(--brand-orange);
}

.service-card.orange-top h5 {
  color: var(--brand-orange);
}

.why-us-section {
  background-color: var(--brand-white) !important;
}

.list-group-item i {
  color: var(--brand-green);
}

.testimonial-card {
  border-left: 4px solid var(--brand-orange);
  border-radius: 10px;
  background-color: var(--brand-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-card .card-body {
  padding: 25px;
}

footer.main-footer {
  background-color: var(--brand-green) !important;
  color: var(--brand-white);
  padding: 40px 0 20px 0;
  margin-top: 50px;
}

footer.main-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-card {
  background-color: var(--brand-white);
  border-top: 5px solid var(--brand-orange);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-card i {
  color: var(--brand-orange);
}

.list-group-item i {
  color: var(--brand-green);
}

.chat-widget #chat-toggle {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-widget #chat-toggle:hover {
  transform: scale(1.1);
  background: none;
}

.chat-widget #chat-box .card-header {
  background-color: var(--brand-green);
  color: var(--brand-white);
}

.chat-bubble {
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-block;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 5px;
  text-align: left;
}

.chat-bubble-orange {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #e67e22 100%);
  color: white;
  border-bottom-right-radius: 2px;
}

.chat-bubble-blue {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: white;
  border-bottom-left-radius: 2px;
}

.chat-bubble-user {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #e67e22 100%);
  color: white;
  border-bottom-right-radius: 2px;
  float: right;
  clear: both;
}

.chat-bubble-admin {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: white;
  border-bottom-left-radius: 2px;
  float: left;
  clear: both;
}

.chat-scroll-area {
  background-color: #f0f2f5;
  background-image: url("https://www.transparenttextures.com/patterns/subtle-white-feathers.png");
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-toggle-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: pointer;
  padding: 0;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
}

.chat-toggle-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chat-box-card {
  position: absolute;
  bottom: 85px;
  right: 0;
  width: 380px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  animation: fadeInUp 0.3s ease;
}

.chat-box-header {
  background: var(--brand-green);
  color: white;
  padding: 15px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-sidebar {
  background: #fff;
  border-right: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

html {
  overflow-y: scroll;
}

.admin-nav-sticky {
  position: sticky;
  top: 68px;
  z-index: 1010;
  background: var(--brand-light-bg, #f8f9fa);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.glass-card .btn-primary {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
}

.glass-card .btn-primary:hover {
  background-color: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
}

.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999 !important;
}

#chat-box {
  width: 350px;
  bottom: 80px;
  right: 0;
  position: absolute;
}

.list-group-item.active {
  background-color: var(--brand-green) !important;
  border-color: var(--brand-green) !important;
  color: white !important;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  color: var(--brand-green);
  background-color: #e9ecef;
}

.list-group-item.active:hover {
  background-color: var(--brand-green-dark) !important;
  border-color: var(--brand-green-dark) !important;
  color: white !important;
}

.chat-app-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  height: 600px;
}

.chat-list-sidebar {
  height: 100%;
  background-color: #f8f9fa;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.chat-list-header {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.user-list-item {
  padding: 15px 20px;
  border-bottom: 1px solid #f9f9f9;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none !important;
  color: var(--brand-text);
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-list-item:hover,
.user-list-item.active {
  background-color: #f0fdf4;
}

.user-avatar-circle {
  width: 45px;
  height: 45px;
  background: #eee;
  color: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.chat-user-list {
  flex-grow: 1;
  overflow-y: auto;
}

.chat-user-item {
  padding: 15px 20px;
  border-bottom: 1px solid #f1f1f1;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  color: var(--brand-text);
  text-decoration: none;
}

.chat-user-item:hover {
  background-color: #e9ecef;
  color: var(--brand-green);
}

.chat-user-item.active {
  background-color: #e8f5e9;
  border-left: 4px solid var(--brand-green);
}

.user-avatar {
  width: 45px;
  height: 45px;
  background-color: var(--brand-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.chat-window {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.chat-window-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 70px;
}

.chat-messages-area {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: #fdfdfd;
}

.chat-input-area {
  padding: 15px;
  border-top: 1px solid #eee;
  background-color: #fff;
}

.chat-input-wrapper {
  background: white;
  padding: 15px;
  border-top: 1px solid #eee;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.empty-chat-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #aaa;
}
.empty-chat-state i {
  font-size: 4rem;
  margin-bottom: 15px;
  color: #eee;
}

.table-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  margin-bottom: 2rem;
}

.custom-table thead th {
  background-color: #f8f9fa;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 15px 20px;
  border-bottom: 2px solid #eee;
  vertical-align: middle;
}

.custom-table tbody td {
  padding: 15px 20px;
  vertical-align: middle;
  color: var(--brand-text);
  border-bottom: 1px solid #f1f1f1;
  font-size: 0.95rem;
}

.custom-table tbody tr:last-child td {
  border-bottom: none;
}

.custom-table tbody tr:hover {
  background-color: #fcfcfc;
}

.avatar-sm {
  width: 35px;
  height: 35px;
  background-color: var(--brand-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.proof-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.2s;
}
.proof-thumb:hover {
  transform: scale(1.5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
}

.filter-btn-group .btn {
  border-radius: 20px;
  margin-right: 5px;
  font-size: 0.9rem;
  padding: 6px 16px;
  font-weight: 500;
}
.filter-btn-group .btn.active-filter {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-outline-orange {
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  background-color: transparent;
}

.btn-outline-orange:hover,
.btn-outline-orange:active,
.btn-outline-orange.active,
.btn-outline-orange.active-filter {
  color: #fff !important;
  background-color: var(--brand-orange) !important;
  border-color: var(--brand-orange) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.form-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 30px;
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.product-thumb-table {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-action {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.btn-action:hover {
  transform: translateY(-2px);
}

.stat-card-clean {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s;
  height: 100%;
}

.stat-card-clean:hover {
  transform: translateY(-3px);
}

.border-left-green {
  border-left: 5px solid var(--brand-green);
}
.border-left-orange {
  border-left: 5px solid var(--brand-orange);
}

.stat-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bg-green-soft {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--brand-green);
}
.bg-orange-soft {
  background-color: rgba(253, 126, 20, 0.1);
  color: var(--brand-orange);
}

.table-header-clean {
  background-color: var(--brand-green);
  color: #fff;
}
.table-header-clean th {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: none;
}

.admin-header-bg {
  background: linear-gradient(135deg, var(--brand-green) 0%, #1e7e34 100%);
  height: 250px;
  border-radius: 0 0 30px 30px;
  margin-bottom: -150px;
  position: relative;
  z-index: 0;
}

.admin-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.admin-chat-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 75vh;
  min-height: 500px;
  border: 1px solid #e0e0e0;
}

.control-panel-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border: none;
}

.product-row-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}

.product-row-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.stock-safe {
  border-left-color: var(--brand-green);
}
.stock-low {
  border-left-color: #dc3545;
}

.img-stack {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-tag-lg {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-text);
  background: #f8f9fa;
  padding: 5px 15px;
  border-radius: 30px;
}

.card-product-premium {
  border: none;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-product-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.premium-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.premium-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card-product-premium:hover .premium-img-wrapper img {
  transform: scale(1.1);
}

.premium-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-green);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.premium-price {
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 1.2rem;
}

.btn-order-block {
  width: 100%;
  background-color: var(--brand-green);
  color: white;
  font-weight: 600;
  border: none;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-order-block:hover {
  background-color: #1e7e34;
  color: white;
}

.admin-view-badge {
  background: #eee;
  color: #777;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.admin-table-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.admin-product-row {
  transition: background 0.2s;
}
.admin-product-row:hover {
  background-color: #f9f9f9;
}

.admin-thumb-lg {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 0.85rem;
  color: #6c757d;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-features-list i {
  color: var(--brand-green);
  margin-right: 8px;
  margin-top: 3px;
  font-size: 0.8rem;
}

.card-product-premium {
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.card-product-premium:hover {
  border-color: var(--brand-green);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}

body {
  background-color: #f4f7f6;
}

.marketplace-header {
  position: relative;
  background: url("/assets/img/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0 120px 0;
  text-align: center;
  color: white;
  margin-bottom: -60px;
  border-radius: 0 0 40px 40px;
}

.marketplace-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 90, 50, 0.9),
    rgba(40, 167, 69, 0.7)
  );
  border-radius: 0 0 40px 40px;
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
}

.filter-pill-container {
  display: inline-flex;
  background: #ffffff;
  padding: 8px;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  border: 1px solid #e0e0e0;
}

.filter-pill {
  color: #555555 !important;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.filter-pill:hover {
  color: var(--brand-green) !important;
  background-color: #f0fdf4;
}

.filter-pill.active {
  background-color: var(--brand-green) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  transform: scale(1.05);
}

.product-card-ultra {
  background: white;
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-ultra:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.ultra-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f8f9fa;
}

.ultra-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  margin: 0;
  transition: transform 0.6s ease;
}

.product-card-ultra:hover .ultra-img-box img {
  transform: none !important;
}

.category-ribbon {
  position: absolute;
  top: 15px;
  left: 0;
  background: var(--brand-orange);
  color: white;
  padding: 5px 15px 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 20px 20px 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.ultra-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name-ultra {
  font-size: 1.2rem;
  font-weight: 800;
  color: #2d3436;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-list-ultra {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 0.9rem;
  color: #636e72;
}
.feature-list-ultra li {
  margin-bottom: 6px;
  display: flex;
  align-items: start;
}
.feature-list-ultra i {
  color: var(--brand-green);
  margin-right: 8px;
  margin-top: 4px;
}

.ultra-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-ultra {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-green);
}

.btn-add-cart {
  background: var(--brand-orange);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(253, 126, 20, 0.3);
  text-decoration: none;
}

.btn-add-cart:hover {
  background: #e67e22;
  transform: scale(1.1) rotate(10deg);
  color: white;
}

.filter-pill-container {
    display: flex;
    gap: 0.5rem; /* jarak antar pill */
    overflow-x: auto; /* scroll horizontal jika melebihi lebar */
    padding: 0.5rem; /* jarak dalam container */
    -webkit-overflow-scrolling: touch; /* agar scroll lebih smooth di iOS */
}

.filter-pill-container::-webkit-scrollbar {
    display: none;
}


.filter-pill {
    flex: 0 0 auto; /* supaya pill tidak menyusut */
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    white-space: nowrap; /* supaya teks tidak wrap */
    transition: background-color 0.3s, color 0.3s;
}

.filter-pill:hover {
  color: var(--brand-green) !important;
  background-color: #f0fdf4;
}

.filter-pill.active {
    background-color: #016BA3; /* ganti sesuai tema */
    color: white;
}

.order-wrapper {
  padding-top: 30px;
  padding-bottom: 50px;
}

.product-summary-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--brand-green);
  position: sticky;
  top: 100px;
}

.summary-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.summary-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-orange);
  margin: 10px 0;
}

.order-form-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.upload-area {
  border: 2px dashed #cbd5e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
  transition: all 0.3s;
  cursor: pointer;
}

.upload-area:hover {
  border-color: var(--brand-green);
  background: #f0fff4;
}

.order-card-modern {
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.2s;
}

.order-header {
  background-color: #f8f9fa;
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-body {
  padding: 25px;
}

.bank-info-box {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  background: #fdfdfd;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.bank-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-green);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
}

.nav-cart-btn {
  position: relative;
  color: #555;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.2s;
}
.nav-cart-btn:hover {
  color: var(--brand-orange);
}

.btn-cart-modern {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f1f3f5;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin-right: 15px;
  text-decoration: none;
}

.btn-cart-modern:hover {
  background-color: var(--brand-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--brand-orange);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bank-logo-wrapper {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-right: 15px;
  padding: 10px;
  border: 1px solid #f0f0f0;
}

.bank-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section-padding {
  padding: 80px 0;
}

.bg-soft-green {
  background-color: #f4fcf6;
}

.section-title-clean {
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title-clean::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--brand-orange);
  margin-top: 10px;
  border-radius: 2px;
}

.service-box-clean {
  padding: 30px;
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-box-clean:hover {
  border-color: var(--brand-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--brand-green);
  margin-bottom: 20px;
}

.counter-section {
  background: var(--brand-green);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.counter-label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-simple {
  background: white;
  border-left: 5px solid var(--brand-green);
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hero-modern {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-img-box {
  position: relative;
  z-index: 1;
}

.hero-img-main {
  border-radius: 30px;
  box-shadow: 20px 20px 0px rgba(40, 167, 69, 0.1);
  transform: rotate(2deg);
  transition: transform 0.5s;
}

.hero-img-main:hover {
  transform: rotate(0deg) scale(1.02);
}

.icon-box-modern {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
  text-align: center;
}

.icon-box-modern:hover {
  border-color: var(--brand-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-modern-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f4fcf6;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.cta-section {
  background: linear-gradient(135deg, var(--brand-green) 0%, #1e7e34 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
  border-radius: 20px;
  margin: 50px 0;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
