@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: "Open Sans", sans-serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.heading_container h2 span {
  color: #16a34a;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area {
  background-color: #f8faf8;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 60px;
}

.bg-box img {
  width: 42%;
  height: auto;
  margin-top: 50px;
  object-fit: contain;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page .hero_area .bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}

.header_section {
  padding: 8px 0;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.site-logo {
  height: 50px;
  width: auto;
  display: block;
}

.navbar-brand {
  font-family: "Open Sans", sans-serif;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #111827;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  padding-left: 18%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #374151;
  text-align: center;
  text-transform: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #16a34a;
}

/* ========================================
   USER OPTION CONTAINER
======================================== */

.user_option {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

/* ========================================
   CART COUNT
======================================== */
#cartCount {
  position: absolute;
  top: -7px;
  right: -8px;
  background: #25D366;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


/* ========================================
   USER ICON, CART ICON, SEARCH ICON
======================================== */

.user_option .user_link,
.user_option .cart_link,
.custom_nav-container .nav_search-btn {
  color: #111827 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  margin: 0;
  padding: 0;
  height: 24px;
  width: 24px;
}


/* ========================================
   CART ICON SVG
======================================== */

.user_option .cart_link svg {
  width: 15px;
  height: 15px;
  fill: #111827 !important;
  margin: 0;
}


/* ========================================
   USER + SEARCH ICON SIZING
======================================== */

.user_option .user_link i,
.custom_nav-container .nav_search-btn i {
  font-size: 14px;
  line-height: 1;
}


/* ========================================
   ICON HOVER STATES
======================================== */

.user_option .user_link:hover,
.custom_nav-container .nav_search-btn:hover {
  color: #16a34a !important;
}


/* ========================================
   USER LINK SPACING
======================================== */

.user_option .user_link {
  margin-right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}


/* ========================================
   USER DROPDOWN CONTAINER
======================================== */

.user_dropdown {
  position: relative;
}


/* ========================================
   USER DROPDOWN MENU
======================================== */

.user_dropdown_menu {
  position: absolute;
  top: 42px;
  right: 0;
  background: #fff;
  min-width: 140px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  padding: 8px 0;
  display: none;
  z-index: 999;
}


/* ========================================
   DROPDOWN LINKS
======================================== */

.user_dropdown_menu a {
  display: block;
  padding: 10px 16px;
  color: #222;
  text-decoration: none;
  font-size: 13px;
}


/* ========================================
   DROPDOWN HOVER
======================================== */

.user_dropdown_menu a:hover {
  background: #f5f5f5;
}


/* ========================================
   SHOW DROPDOWN WHEN ACTIVE
======================================== */

.user_dropdown.active .user_dropdown_menu {
  display: block;
}


/* ========================================
   CART HOVER SVG COLOR
======================================== */

.user_option .cart_link:hover svg {
  fill: #16a34a !important;
}
.user_option .cart_link:hover {
  color: #16a34a !important;
}


/* ========================================
   WHATSAPP ORDER BUTTON
======================================== */

.user_option .order_online {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 14px;
  line-height: 1;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  height: 36px;
}

@media (min-width: 992px) {
  .custom_nav-container .navbar-brand {
    order: 1;
  }

  .custom_nav-container .navbar-collapse {
    order: 2;
  }

  .custom_nav-container .user_option {
    order: 3;
    margin-left: auto;
  }

  .custom_nav-container .navbar-toggler {
    order: 4;
  }
}

@media (max-width: 991px) {

  .user_option {
    margin-left: auto;
    margin-right: 12px;
    display: flex;
    align-items: center;
    position: relative;
    top: -2px;
  }

  .slider_section .detail-box h1 {
    font-size: 2.6rem;
    line-height: 1.15;
  }

  .bg-box img {
    width: 58%;
    opacity: 0.18;
    position: relative;
    top: 60px;
  }

}

@media (max-width: 576px) {

  .slider_section .detail-box h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .slider_section .detail-box p {
    font-size: 15px;
  }

  .bg-box {
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
  }

  .bg-box img {
    width: 58%;
    opacity: 0.14;
    object-fit: contain;
  }

}

.user_option .order_online:hover {
  background-color: #1ebe5d;
  color: #ffffff !important;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #111827;
  margin: 5px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler {
  margin-left: 12px;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #111827;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 80px 0 40px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #111827;
  margin-bottom: 60px;
}

.slider_section .detail-box h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

.slider_section .detail-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 600px;
}

.slider_section .detail-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  margin-top: 18px;
  font-weight: 600;
}

.slider_section .detail-box a:hover {
  background-color: #1ebe5d;
  color: #ffffff;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #16a34a;
}
/* end slider section */


/* how it works section */
.how_section {
  background-color: #ffffff;
  padding: 80px 0;
}

.how_section .heading_container {
  margin-bottom: 50px;
}

.how_section .heading_container h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.how_section .heading_container p {
  color: #6b7280;
  font-size: 17px;
}

.how_box {
  background: #f8fafc;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.how_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.how_box .img-box {
  width: 78px;
  height: 78px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how_box .img-box i {
  font-size: 32px;
  color: #ffffff;
}

.how_box h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.how_box p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}
/* end how it works section */

/* popular categories section */
.category_section {
  background-color: #f8fafc;
  padding: 80px 0;
}

.category_section .heading_container {
  margin-bottom: 50px;
}

.category_section .heading_container h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.category_section .heading_container p {
  color: #6b7280;
  font-size: 17px;
}

.category_box {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.category_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.category_box img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.category_box h5 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
/* end popular categories section */


/* Featured section */
.featured_section {
  background-color: #ffffff;
  padding: 80px 0;
}

.featured_section .heading_container {
  margin-bottom: 50px;
}

.featured_section .heading_container h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.featured_section .heading_container p {
  color: #6b7280;
  font-size: 17px;
}

.product_box {
  background: #f8fafc;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.product_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product_box img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
}

.product_box h5 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.product_box p {
  color: #6b7280;
  margin-bottom: 20px;
}

.product_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_bottom h6 {
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
  margin: 0;
}

.product_bottom a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.product_bottom a:hover {
  background-color: #1ebe5d;
  color: #ffffff;
}
/* End of featured section */


/* contact section */
.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container .form-group {
  margin-bottom: 25px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
  background-color: transparent;
  border: 1px solid #ccc;
  outline: none;
  color: #000000;
  border-radius: 5px;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #222222;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::placeholder {
  color: #222222;
}

.contact_section .form_container input.message-box {
  height: 120px;
  border-radius: 5px;
}

.contact_section .form_container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: #16a34a;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: #12823b;
}
/* end contact section */


/* cart section */
.cart_summary_box {
  background-color: #f8fafc;
  border-radius: 20px;
  padding: 35px;
  margin-top: 40px;
}

.cart_summary_box h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

#cartItems p {
  color: #6b7280;
  margin-bottom: 10px;
}

.cart_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.cart_item strong {
  color: #111827;
}

.cart_actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.clear_cart_btn {
  border: none;
  background-color: #e5e7eb;
  color: #111827;
  padding: 12px 22px;
  border-radius: 45px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear_cart_btn:hover {
  background-color: #d1d5db;
}

.send_cart_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: 45px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.send_cart_btn:hover {
  background-color: #1ebe5d;
}

.cart_link {
  position: relative;
}

.cart_total {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 2px solid #d1d5db;
  font-size: 18px;
}
/* end of cart section */

/* ========================================
   CHECKOUT PAGE
======================================== */

.checkout_section {
  padding: 70px 0;
  background: #ffffff;
}

.checkout-wrap {
  max-width: 880px;
}
.checkout-wrap h1 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.checkout-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 28px;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 24px;
}

.checkout-card-title {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.checkout-card-title h3,
.new-address-card h3 {
  color: #15803d;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

/* ========================================
   ADDRESS
======================================== */
.saved-address-preview {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 24px;
}

.saved-address-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #15803d;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.saved-address-preview p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}


.orders_page .container {
  max-width: 1420px;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.address-form-panel,
.address-map-panel {
  min-height: 100%;
}

.orders_page {
  padding: 52px 0 90px;
}
@media (max-width: 991px) {

  .address-grid {
    grid-template-columns: 1fr;
  }

  #addressMap {
    height: 360px;
  }

}

.address-form-panel .form-control {
  height: 56px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  font-size: 16px;
  padding: 0 18px;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

.address-form-panel .form-control:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08) !important;
}

.address-form-panel .form-group,
.address-form-panel select.form-control {
  margin-bottom: 20px;
}

.address-form-panel label {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.address-form-panel,
.address-map-panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.coordinates-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 18px;
  margin-top: 6px;
}

.coordinates-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.coordinates-box .form-group {
  margin-bottom: 0;
}

.address-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.address-save-btn,
.address-gps-btn {
  height: 52px;
  border-radius: 14px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.address-save-btn {
  background: linear-gradient(135deg, #16a34a, #047857);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);
}

.address-save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.28);
}

.address-gps-btn {
  background: #ffffff;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.address-gps-btn:hover {
  background: #f0fdf4;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.address-map-panel {
  min-height: 100%;
}

#addressMap {
  height: 520px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.leaflet-container {
  font-family: "Open Sans", sans-serif;
}

.address-map-panel {
  background: #f8fafc;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e5e7eb;
}

.map-header h5 {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.map-header p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 14px;
}

#addressMap {
  height: 420px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.map-helper {
  margin-top: 16px;
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  color: #166534;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.map-open-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #15803d;
  font-size: 14px;
  font-weight: 700;
}

.map-open-link:hover {
  color: #166534;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #16a34a;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  flex-shrink: 0;
}

.panel-header h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.panel-header p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 15px;
}


@media (max-width: 991px) {
  .address-grid {
    grid-template-columns: 1fr;
  }

  #addressMap {
    height: 320px;
  }
}

/* ========================================
   CHECKOUT
======================================== */
.checkout-icon,
.mini-icon {
  background: #ecfdf5;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 30px;
}

.checkout-address-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.checkout-address-row:last-child {
  margin-bottom: 0;
}

.mini-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  font-size: 22px;
  flex: 0 0 54px;
}

.checkout-address-row span {
  display: block;
  color: #64748b;
  font-size: 15px;
  margin-bottom: 2px;
}

.checkout-address-row strong {
  display: block;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
}

.checkout-option {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 16px;
  color: #0f172a;
  transition: all 0.2s ease;
}

.checkout-option input {
  width: 22px;
  height: 22px;
  accent-color: #16a34a;
}

.checkout-option .fa-check {
  margin-left: auto;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  padding: 10px;
  font-size: 14px;
}

.checkout-option.active-option {
  border-color: #16a34a;
  background: #f0fdf4;
}

.checkout-pay-btn {
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 15px;
  font-weight: 700;

  width: 100%;

  background: linear-gradient(135deg, #16a34a, #047857);
  color: #ffffff;
  border: none;

  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);

  transition: all 0.2s ease;
}

.secure-note {
  margin-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 17px;
}

.secure-note i {
  color: #16a34a;
  margin-right: 8px;
}

.new-address-card {
  margin-top: 20px;
}

/* ========================================
   MY ORDERS PAGE
======================================== */

.orders_page {
  padding: 48px 0 80px;
  background: #ffffff;
}

.orders_header h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0f172a;
  margin-bottom: 8px;
}

.orders_header p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 28px;
}

.orders_card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
}

.orders_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.orders_table thead th {
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 18px 22px;
  border-bottom: 1px solid #e5e7eb;
}

.orders_table tbody td {
  color: #0f172a;
  font-size: 16px;
  padding: 24px 22px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

.orders_table tbody td:nth-child(2) {
  color: #64748b;
}

.orders_table tbody td:first-child {
  font-weight: 600;
  color: #0f172a;
}

.orders_table tbody tr:last-child td {
  border-bottom: none;
}

.orders_table tbody tr:hover {
  background: #f9fafb;
}

.orders_table tbody tr {
  transition: background 0.2s ease;
}

.status_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.status_paid,
.status_confirmed {
  background: #dbeafe;
  color: #2563eb;
}

.status_pending,
.status_placed {
  background: #fef3c7;
  color: #b45309;
}

.status_packing,
.status_out_for_delivery {
  background: #ede9fe;
  color: #6d28d9;
}

.status_delivered {
  background: #dbeafe;
  color: #1d4ed8;
}

.status_cancelled {
  background: #fee2e2;
  color: #b91c1c;
}

/* ========================================
   LOGIN PAGE
======================================== */

.login_section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.login-card {
  max-width: 420px;
  margin: auto;
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.login-card .form-group {
  margin-bottom: 18px;
}

.login-card label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #374151;
}

.login-card .form-control {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 12px;
}

.login-btn {
  height: 48px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 10px;
}

/* footer section*/
.footer_section {
  background-color: #0f172a;
  color: #ffffff;
  padding: 70px 0 25px;
}

.footer_section h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: "Open Sans", sans-serif;
}

.footer_section p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
}

.footer-col {
  margin-bottom: 30px;
  text-align: center;
}

.footer_whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #ffffff !important;
  padding: 12px 22px;
  border-radius: 45px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer_whatsapp:hover {
  background-color: #1ebe5d;
}

.footer-info {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 35px;
  padding-top: 20px;
  text-align: center;
}

.footer-info p {
  margin: 0;
  color: #94a3b8;
}
/* end footer section */


/* footer socials*/
.footer_social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.footer_social a {
  width: 42px;
  height: 42px;
  border-radius: 30%;
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer_social a:hover {
  background-color: #25D366;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer_social .tiktok_icon svg {
  width: 14px;
  height: 14px;
}
/* end footer socials */


/* floating whatsapp section */
.floating_whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating_whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.08);
}
/* end floating whatsapp section */


/*# sourceMappingURL=style.css.map */

