/******* Bootstrap Theming ********/
/*!
 * Bootstrap v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #065494;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  /*#C4A484*/
  --primary: #0A3F73;
  --secondary: #62C3E7;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #FFFFFF;
  --dark: #333333;
  --bs-secondary: #fea116;
  --bs-primary: #81c408;
  --bs-white: #ffffff;
  --bs-light: #f5f5f5;
  --bs-dark: #212529;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Poppins", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555555;
  text-align: left;
  background-color: #F3F6FF;
}
a {
  color: #0A3F73;
  text-decoration: none;
  background-color: transparent;
}

.bg-primary {
  background-color: #0A3F73 !important;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #F3F6FF;
  border-color: #dee2e6 #dee2e6 #F3F6FF;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 5px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0A3F73;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0A5ED7;
}



.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  
}


.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
.nav-bar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: #0A3F73;
  z-index: 0;
}

.navbar-light .navbar-nav .nav-link {
  padding: 30px 15px;
  color: #333333;
  font-size: 17px;
  font-weight: 500;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #0A3F73;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    border-radius: 60px;
  }
  #header-carousel,
  .page-header {
    margin-top: -45px;
  }
}

/* ===============================
   Navbar – Mobile Optimization
   =============================== */
@media (max-width: 576px) {

  /* Hilangkan efek rounded & wrapper visual */
  .nav-bar {
    background: #fff;
    padding: 0;
  }

  .nav-bar .navbar {
    border-radius: 0;
    box-shadow: none;
    padding: 10px 15px;
  }

  /* Brand kiri */
  .nav-bar .navbar-brand h1 {
    font-size: 20px;
    margin: 0;
  }

  /* Hamburger kanan */
  .navbar-toggler {
    border: 1px solid #ddd;
  }

  /* Menu saat dibuka */
  .navbar-collapse {
    background: #fff;
    padding-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    font-size: 15px;
  }
}


.custom-carousel {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.custom-carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.custom-carousel img.active {
  opacity: 1;
}

.custom-carousel .prev,
.custom-carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 10;
  z-index: 20;
}

.custom-carousel .prev { left: 15px; }
.custom-carousel .next { right: 15px; }


.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/header.jpeg);
  background-size: cover;
  margin-top: -45px;

}

#about {
  margin-top: 20px;
  margin-bottom: 100px;
  padding: 100px 0px 0px 0px;
  position: relative;
}

#about .section-heading h2 {
  padding-right: 120px;
  font-family: 'Mirza', cursive;
}

#about img {
  width: 100%;
  overflow: hidden;
}
#about .section-heading h6{
  font-family: 'Mirza', cursive;
}
#about .textkiri p {
  margin-bottom: 25px;
  text-align: justify;
  font-family: 'Manjari', sans-serif;
  font-size: 20px;
}

#about .gambarkanan {
  margin-left: 30px;
}


.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}


/* Promotion Section */
.promo-section {
  overflow: hidden;
}

.promo-image {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 40px;
}


/* Gradient overlay */
.promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.25), rgba(0,0,0,0));
}

.promo-content {
  padding: 60px;
  color: #fff;
}

.promo-inner {
  max-width: 500px;
}

/* Badge Counter */
.promo-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  color: #0A3F73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}

.promo-badge small {
  font-size: 16px;
  margin-left: 4px;
}

/* Text */
.promo-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.promo-desc {
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Button */
.promo-btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.promo-btn:hover {
  transform: translateY(-3px);
}

/* Fade animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.page-header {
  padding: 120px 0;
  background:
    linear-gradient(rgba(10,63,115,0.85), rgba(10,63,115,0.85)),
    url("../img/medicine.jpg");
  background-size: cover;
  color: #fff;
}

.btn-back-floating {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  border: none;
  font-size: 18px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.btn-back-floating:hover {
  transform: scale(1.1);
}

/* ===============================
   LIVE SEARCH PRODUCT
   =============================== */
.product-search {
  max-width: 400px;
  margin: 0 auto 25px;
}

.product-search input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.product-search input:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* Desktop default */
.category-toggle {
  all: unset;              /* tombol jadi seperti teks biasa */
  display: block;
  font-size: 1.25rem;      /* setara h5 */
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: default;
}

.category-toggle .arrow {
  display: none;           /* panah HILANG di desktop */
}

.category-list {
  max-height: none;        /* kategori TERBUKA */
  overflow: visible;
}


/* ===============================
   CATEGORY COLLAPSE (MOBILE)
   =============================== */
@media (max-width: 768px) {

  .category-toggle {
    width: 100%;
    background: #fff;
    border: none;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
  }

  .category-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .category-box.active .category-list {
    max-height: 600px;
  }

  .category-box .arrow {
    transition: transform 0.3s ease;
  }

  .category-box.active .arrow {
    transform: rotate(180deg);
  }
}


/* Sidebar kategori */
.category-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Judul */
.category-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* List kategori */
.category-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
}

/* Hover */
.category-box ul li:hover {
  background-color: rgba(10, 63, 115, 0.08);
}


newproducts-w3agile {
    padding: 5em 0;
    background: #f5f5f5;
}
.breadcrumb1 li span {
    left: 0em;
    padding-right: 1em;
    color: #3399cc;
}
.breadcrumbs {
    padding: 1.5em 0;
    background: #f5f5f5;
}
.breadcrumb {
    margin-bottom: 0 !important;
  padding: 0 !important;
}
.breadcrumb1 li {
    font-size: 1em;
    color: #999;
}
.breadcrumb1 li a {
    color: #3399cc;
    text-decoration: none;
}

/*dropdown*/
ul.dropdown-menu1 li{
  display:block;
  font-size:14px;
}
ul.dropdown-menu1 li a{
  color:#212121;
  text-decoration:none;
}

ul.multi-column-dropdown h6 {
    font-size: 20px;
    color:#fe9126;
    margin: 0 0 0em;
    padding-bottom: 1em;
    border-bottom: 1px solid #E4E4E4;
    text-transform: capitalize;
}
.multi-column-dropdown li {
    list-style-type: none;
    margin: 14px 0;
}
.multi-column-dropdown li a {
    display: block;
    clear: both;
    line-height: 1.428571429;
    color: #999 !important;
    white-space: normal;
  font-weight:500 !important;
}
.dropdown-menu.columns-3 {
    min-width: 190px;
    padding: 20px 30px;
}

.agile_top_brand_left_grid1 h4,.agileinfo_single_right_snipcart h4{
  font-weight:600;
  font-size:1em;
  color:#212121;
  text-align: center;
}
.agile_top_brand_left_grid1 h4 span,.agileinfo_single_right_snipcart h4 span{
  font-weight:300;
  text-decoration:line-through;
  padding-left:1em;
}

.tag {
    position: absolute;
    top: -1%;
    right: 10%;
}
.top-brands h2,.newproducts-w3agile h3,.login h2,.register h2,.faq-w3agile h3,.brands h3{
  text-align:center;
  color:#212121;
  padding-bottom:.5em;
  position:relative;
  font-size: 2.5em;
  text-transform: uppercase;
}
.top-brands h2:after,.newproducts-w3agile h3:after,.login h2:after,.register h2:after,.faq-w3agile h3:after,.brands h3:after{
  content: '';
    background: #3399cc;
    height: 2px;
    width: 15%;
    position: absolute;
    bottom: 0%;
    left: 43%;
}
.agile_top_brand_left_grid{
  background: #FFFFFF;
    padding: .5em;
  position:relative;
}
.agile_top_brand_left_grid_pos{
  position:absolute;
  top:0%;
  right:0%;
}
.agile_top_brand_left_grid1{
  padding:1em;
}
.agile_top_brand_left_grid1 img{
  margin:0 auto;
}
.top-brands{
    background: #f5f5f5;
  padding:5em 0;
}
.agile_top_brand_left_grid1 p{
  color:#212121;
  margin:1.5em 0 1em;
  line-height:1.5em;
  text-transform:capitalize;
  font-size:14px;
  text-align: center;
}
.agile_top_brand_left_grid1 h4,.agileinfo_single_right_snipcart h4{
  font-weight:600;
  font-size:1em;
  color:#212121;
  text-align: center;
}
.agile_top_brand_left_grid1 h4 span,.agileinfo_single_right_snipcart h4 span{
  font-weight:300;
  text-decoration:line-through;
  padding-left:1em;
}

.categories,.new-products{
  border:1px solid #999;
}
.categories h2{
  font-size: 1.5em;
    color: #212121;
    margin: 0;
    padding: .5em;
    background: #f5f5f5;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 5px;
}
.filter-price h3{
  background:none;
}
.categories ul li{
  display:block;
  color:#999;
  font-size:14px;
  margin-bottom:1em;
}
.categories ul li a{
  color:#999;
  text-decoration:none;
}
.categories ul li a:hover{
  color:#3399cc;
}
.categories ul li span{
  float:right;
}

.bg-light {
  background-color: #FFFFFF !important;
}

h2{
  font-family: 'Londrina Solid', cursive;
}
hr{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 15%;
  background-color: black;
}

.col-lg-8 p{
  font-family: 'ABeeZee', sans-serif;
  font-size: 18px;
}


.accordion-body{
  font-family: 'Kanit', sans-serif;
}
.accordion-button{
  font-family: 'Amatic SC', cursive;
  font-weight: 10;
  font-size: 25px;
}

/*-- checkout --*/
.checkout h2{
  font-size:1em;
  color:#212121;
  text-transform:uppercase;
  margin:0 0 3em;
}
.checkout h2 span{
  color:#3399cc;
}
table.timetable_sub {
  width:100%;
  margin:0 auto;
}
.timetable_sub thead {
    background: #004284;
}
.timetable_sub th {
    background: #0A3F73;
    color: #fff !important;
    text-transform: capitalize;
    font-size: 13px;
    border-right: 1px solid #0A3F73;
}
.timetable_sub th, .timetable_sub td {
    text-align: center;
    padding: 7px;
    font-size: 14px;
    color: #212121;
}
.timetable_sub td {
  border:1px solid #CDCDCD;
}
td.invert-image a img {
    width:30%;
    margin: 0 auto;
}
.rem{
  position:relative;
}
.close1,.close2,.close3 {
    background: url('../images/close_1.png') no-repeat 0px 0px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    position: absolute;
    right: 15px;
    top: -13px;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
/*-- quantity-starts --*/
 .value-minus,
.value-plus{
    height: 40px;
    line-height: 24px;
    width: 40px;
    margin-right: 3px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    color: #fff;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
  border:1px solid #b2b2b2;
      vertical-align: bottom;
}
.quantity-select .entry.value-minus:before,
.quantity-select .entry.value-plus:before{
  content: ""; 
  width: 13px;
  height: 2px; 
  background: #000;
  left: 50%;
  margin-left: -7px; 
  top: 50%;
  margin-top: -0.5px;
  position: absolute;
}
.quantity-select .entry.value-plus:after{
  content: "";
  height: 13px;
  width: 2px; 
  background: #000;
  left: 50%; 
  margin-left: -1.4px;
    top: 50%;
    margin-top: -6.2px;
  position: absolute;
}
.value  {
    cursor: default;
    width: 40px;
  height:40px;
    padding: 8px 0px;
    color: #A9A9A9;
    line-height: 24px;
    border: 1px solid #E5E5E5;
    background-color: #E5E5E5;
    text-align: center;
    display: inline-block;
  margin-right: 3px;
}
.quantity-select .entry.value-minus:hover,
 .quantity-select .entry.value-plus:hover{
  background: #E5E5E5;
}

.quantity-select .entry.value-minus{
    margin-left: 0;
}
/*-- quantity-end --*/

@media (max-width: 768px) {

  /* Grid produk jadi 2 kolom */
  .col-md-6.col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .fruite-img {
    height: 140px;
  }

  .fruite-item h6 {
    font-size: 14px;
    min-height: 38px;
    text-align: center;
  }

  .fruite-item p {
    font-size: 14px;
  }

  .fruite-item .btn {
    padding: 4px 10px;
    font-size: 13px;
  }

  .sold-overlay span {
    font-size: 12px;
    padding: 4px 8px;
  }

}

/* ===============================
   FAQ – Mobile Optimization
   Bootstrap 4 Accordion
   =============================== */
@media (max-width: 576px) {

  /* Container */
  .col-8 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* Card utama */
  .card.border-dark {
    border-radius: 18px;
    padding: 5px;
  }

  /* Judul & deskripsi */
  .card-title {
    font-size: 22px;
    font-weight: 600;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Accordion card */
  .accordion .card {
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
  }

  /* Tombol pertanyaan */
  .accordion .btn-link {
    font-size: 15px;
    font-weight: 500;
    padding: 14px 16px;
    text-align: left;
    white-space: normal;
    color: #0A3F73;
  }

  .accordion .btn-link:hover {
    text-decoration: none;
  }

  .accordion .btn-link:active {
    background-color: rgba(10, 63, 115, 0.08);
    border-radius: 10px;
  }

  /* Jawaban */
  .accordion .card-body {
    font-size: 14px;
    line-height: 1.7;
    padding: 14px 18px;
    color: #555;
  }

  /* Footer text */
  .text-center a {
    font-size: 14px;
  }
}


/* Desktop default */
@media (min-width: 992px) {
  .col-md-6.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .col-md-6.col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* HP */
@media (max-width: 576px) {
  .col-md-6.col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .fruite-item.mobile-active {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
}

@media (max-width: 576px) {
  .fruite-item .btn {
    width: 100%;
    margin-top: 8px;
    font-size: 15px;
    padding: 8px;
  }
}

@media (max-width: 576px) {
  .fruite-img {
    height: 160px;
  }
}


/*agile*/
.agileinfo_single_left {
    padding: 1em;
    box-shadow: 0px 0px 5px #b2afaf;
}
.agileinfo_single_left {
    float: left;
    width: 100%;
}
.agileinfo_single_right {
    padding-left: 2em;
    float: left;
    width: 60%;
}

.contact-container{
  min-height: 100vh;
  padding: 40px 15px;
  display: flex;
  align-items: center;
}

.contact-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-gap: 20px;
}

.contact-left-title h2{
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 5px;
  text-align: center;
}

.contact-left-title hr{
  border: none;
  width: 200px;
  height: 5px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-left-title p{
  text-align: justify;
}

.contact-inputs{
  width: 100%;
  max-width: 420px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
  margin-top: 15px;
}

@media (max-width: 576px){
  .contact-left{
    align-items: center;
    text-align: center;
  }

  .contact-left-title p{
    text-align: left;
  }
}


.contact-left textarea{
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-inputs:focus{
  border: 2px solid #ff994f;
}

.contact-inputs::placeholder{
  color: #a9a9a9;
}

.contact-left button{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  column-gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #ff994f, #fa6d86);
  cursor: pointer;
  margin-top: 25px;
}

@media (max-width: 800px){
  .contact-inputs{
    width: 80vw;
  }
  .contact-right{
    width: 80vw;
  }
}

.contact-social {
  margin-top: 50px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f1f3f5;
  color: #0A3F73;
  margin-right: 10px;
  font-size: 30px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0A3F73;
  color: #fff;
  transform: translateY(-3px);
}


/*agile*/
.site-footer {
  background-color: #0A3F73;
  color: #ffffff;
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
  margin-top: 8rem;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.fruite-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fruite-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}


.fruite .fruite-item {
  height: 100%;
  transition: 0.5s;
}

.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}
.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.category-box {
    background-color: #f8f9fa;
    border-left: 5px solid #065494;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Area gambar produk */
.fruite-img {
  height: 180px;                 /* tinggi seragam */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

/* Gambar produk */
.fruite-img img {
  transition: transform 0.3s ease;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important; /* KUNCI */
}

.fruite-item:hover .fruite-img img {
  transform: scale(1.08);
}


/* Jarak antar produk dan dari kotak kategori */
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Jarak antar produk */
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
}

.product-card {
    flex: 1 0 200px;
    max-width: 200px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 5;
    font-size: 1.2rem;
    pointer-events: none;
}

.sold-out img {
    filter: grayscale(80%) brightness(80%);
    opacity: 0.8;
}

/* Fancy Card */
.fancy-card {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    border: 1px solid rgba(13,110,253,0.1);
    transition: all 0.4s ease;
}

.fancy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(13,110,253,0.15);
}

/* Image Effects */
.zoom-hover {
    transition: transform 0.5s ease;
}

.product-image-card:hover .zoom-hover {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13,110,253,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-image-card {
    position: relative;
}

.product-image-card:hover .image-overlay {
    opacity: 1;
}

/* Title Glow */
.glow-text {
    text-shadow: 0 0 0 rgba(13,110,253,0);
    transition: text-shadow 0.4s ease;
}

.fancy-card:hover .glow-text {
    text-shadow: 0 0 12px rgba(13,110,253,0.35);
}

/* Gradient Badge */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

/* Divider */
.animated-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
    border-radius: 10px;
    animation: dividerMove 2s infinite alternate;
}

@keyframes dividerMove {
    from { width: 60px; }
    to { width: 120px; }
}

/* Price Pulse */
.pulse-price {
    animation: pulseGlow 2.5s infinite;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(25,135,84,0.05);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(25,135,84,0); }
    50% { box-shadow: 0 0 20px rgba(25,135,84,0.25); }
    100% { box-shadow: 0 0 0 rgba(25,135,84,0); }
}

/* Description Toggle */
.desc-collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.desc-expanded {
    max-height: 300px;
}

.pj-apotek-section {
    padding: 32px 0 48px;
    background: transparent;
}

/* Card */
.pj-apotek-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 28px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-width: 420px;
    justify-content: center;
}

/* Hover naik-turun */
.pj-apotek-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(13,110,253,0.22);
}

/* Foto */
.pj-photo-wrapper {
    flex-shrink: 0;
}

.pj-photo {
    width: 78px;        
    height: 78px;
    border-width: 4px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0d6efd;
    transition: transform 0.35s ease;
}



.pj-apotek-card {
    position: relative;
}


/* Foto ikut hidup saat hover */
.pj-apotek-card:hover .pj-photo {
    transform: scale(1.08);
}


/* Text */
.pj-role {
    font-size: 13px;
    color: #6c757d;
    letter-spacing: 0.4px;
}

.pj-name {
    margin: 2px 0 0;
    font-weight: 600;
    color: #212529;
    white-space: nowrap;
    font-size: 16px;
}
.pj-apotek-card {
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.stock-box {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 12px;
    display: inline-block;
}
