@font-face {
  font-family: "PlusJakartaSans-Regular";
  src: url(../fonts/PlusJakartaSans-Regular.woff2) format("woff2"),
    url(../fonts/PlusJakartaSans-Regular.woff) format("woff");

  font-weight: 400;
  font-style: normal;
}

:root {
  --gra-primary: #080239;
  --gra-primary-light: #d0baa2;
  --section-padding-y: 130px;
  --color-gray-1: #697582;

  --transition-default: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  --ease-default: cubic-bezier(0, 0, 0.58, 1);
  --ease-out-long: cubic-bezier(0, 0.5, 0, 1);
  --ease-out-medium: cubic-bezier(0, 0.57, 0.55, 1);
  --ease-out-short: cubic-bezier(0.15, 0.7, 0.78, 1);
  --ease-elastic-1: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --ease-elastic-2: cubic-bezier(0.68, -3, 0.27, 5);

  --footer-font: "PlusJakartaSans-Regular";
  --primary-hyperlink-color: #333;
}

body {
  font-family: var(--footer-font);
}

.a-bg-dark {
  background-color: var(--gra-primary);
}
.text-primary-light {
  color: var(--gra-primary-light);
}

header.a-bg-dark,
header.bi-whatsapp {
  color: var(--gra-primary-light);
}
nav .nav-item a {
  color: var(--gra-primary-light);
  font-size: 18px;
}
.nav-link:hover { color: #FFF; }

.a-bg-dark .whatsapp {
  color: var(--gra-primary-light);
  font-weight: bold;
  font-size: 18px;
}
.offcanvas-body .nav-link {
  color: var(--gra-primary);
  font-size: 18px;
}
.social-icons i {
  color: var(--gra-primary-light);
}

.category-card {
  background-color: lightblue;
  font-size: 18px;
  font-weight: 600;
}

.scroll-category {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px;
  cursor: grab;
}

.scroll-category::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 auto;
  width: 200px; /* Adjust width to show 7–10 items depending on screen size */
  text-align: center;
  background: rgb(228, 219, 205);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.category-card:hover {
  transform: scale(1.05);
}

.quick-shop {
  background-color: #dc3545;
  color: white !important;
  padding: 5px 10px;
  border-radius: 5px;
}
.hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.category-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}
.feature-box {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  height: 100%;
}
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #28a745;
  color: white;
  font-size: 24px;
  text-decoration: none;
}

.floating-buttons a.call {
  background-color: #007bff;
}
.floating-buttons a.order {
  background-color: #ffc107;
  color: black;
  font-size: 14px;
  width: auto;
  padding: 10px 20px;
  border-radius: 30px;
}

.hero-banner {
  line-height: 0; /* removes tiny space below image */
}

header,
.navbar {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.eco-banner {
  background: linear-gradient(135deg, #f7ebe0 0%, #ffffff 100%);
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.eco-banner h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1b5e20;
}

.eco-banner h4 {
  font-size: 1.5rem;
  color: #388e3c;
  margin-bottom: 20px;
}

.eco-banner p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.eco-banner .btn-success {
  background-color: #2e7d32;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.eco-banner .btn-success:hover {
  background-color: #1b5e20;
}

@media (max-width: 768px) {
  .eco-banner {
    text-align: center;
  }
  .eco-banner img {
    margin-bottom: 30px;
  }
}

.page-section {
  width: 100%;
  display: block;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.bg-shape-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.bg-shape-4 img {
  width: 100%;
}

.fw-title {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 15px;
}
ul.fw-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.fw-menu li a {
  line-height: 30px;
  color: var(--primary-hyperlink-color);
}

embed,
img:not([draggable]),
object,
video {
  max-width: 100%;
  height: auto;
}
img,
svg {
  vertical-align: middle;
}
ol,
p,
ul {
  margin: 0 0 1.5em;
}
a {
  text-decoration: none;
}

footer {
  font-family: var(--footer-font);
}
footer p,
footer a {
  line-height: 25px;
  font-size: 16px;
}
footer:not(.light-content) .text-gray a {
  color: var(--color-gray-1);
  transition: all 0.17s var(--ease-default);
}

.guid_cat {
  background-color: #f0f0f0; /* Background color */
  color: #333; /* Text color */
  border: 1px solid #ccc; /* Optional: Border color */
  padding: 8px; /* Optional: Padding inside the select */
  border-radius: 4px; /* Optional: Rounded corners */
  width: 100%; /* Ensure it takes full width of the container */
  box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
}
.guid_cat option {
  background-color: #f0f0f0; /* Background color of options */
  color: #333; /* Text color of options */
}
.form-control.cart_product_quantity {
  font-size: 14px;
  padding: 0px !important;
}

#airTable th {
  line-height: 30px;
  height: 40px;
  padding: 5px 10px;
}

#airTable tr.category td {
  line-height: 30px;
  height: 40px;
  padding: 5px 10px;
}

#airTable td {
  line-height: 30px;
  height: 40px;
  padding: 5px 10px;
}

#airTable input {
  width: 75px;
  height: 25px;
  text-align: center;
}

h3 {
  font-size: 20px;
  padding: 0;
  margin: 0;
}

span#net_total,
span#you_save,
span#payable {
  padding: 5px 20px;
  border-radius: 25px;
  margin-left: 10px;
}

.bill-bar {
  padding: 10px;
  z-index: 1030;
}

.bill-input-group .form-select,
.bill-input-group .form-control {
  border-radius: 0;
}

.bill-input-group .form-select:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.bill-input-group .form-control:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.bill-summary span {
  font-weight: 600;
  font-size: 16px;
  margin-right: 15px;
}

.bill-cart-icon a {
  color: #fff;
  position: relative;
}

.bill-cart-icon .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ffc107;
  color: #000;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

.mobile-payable-box {
  background: #fff;
  color: #333;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .bill-input-group-mobile {
    flex-wrap: nowrap;
  }

  .bill-input-group-mobile .form-select,
  .bill-input-group-mobile .form-control {
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 6px !important;
  }

  .bill-cart-icon {
    text-align: right;
  }
}

.custom-container {
  padding-left: 0px;
  padding-right: 0px;
}

@media (min-width: 768px) {
  .custom-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}



@media (max-width: 767.98px) {
  .mobile-font {
    font-size: 12px !important;
  }
  
  #airTable td {
    line-height: 15px;
    padding: 5px 5px;
  }

  #airTable input {
    width: 50px;
    height: 25px;
    text-align: center;
  }

  .hide-mobile {
    display: none !important;
  }
}

.offcanvas-header { padding: 1rem 0.5rem 0.5rem 0.5rem; }
.offcanvas-body { padding: 0.5rem 1rem; }
#offcanvasRightLabel { font-family: 'PlusJakartaSans-Regular'; font-weight: bold; padding: 0 0 0 1rem; }

.contact-card {
  display: flex;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-info {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
}

.contact-form {
  flex: 1;
  padding: 40px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info .section-title {
  color: white;
}

.info-text {
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-details {
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.detail-icon {
  margin-right: 15px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.detail-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.detail-content p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.social-section {
  margin-top: 40px;
}

.social-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2575fc;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
}

.map-container {
  height: 400px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
  background: repeating-linear-gradient(
      45deg,
      #f0f0f0,
      #f0f0f0 10px,
      #e0e0e0 10px,
      #e0e0e0 20px
  );
}

@media (max-width: 768px) {
  .contact-card {
      flex-direction: column;
  }
  
  .contact-info, .contact-form {
      padding: 30px;
  }
}

/* Footer Wrapper */
.mn-footer {
  background: var(--gra-primary);
  color: #ccc;
  font-size: 15px;
  padding: 60px 0 20px;
  position: relative;
}

.mn-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mn-footer a:hover {
  color: #ffcc33;
}

/* Logo & Text */
.mn-footer-logo img {
  max-width: 150px;
}
.mn-footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.mn-footer-contact p {
  margin: 4px 0;
}
.mn-footer-contact a {
  font-weight: 500;
}

/* Titles */
.mn-footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}
.mn-footer-title::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #ffcc33;
  display: block;
  margin-top: 6px;
}

/* Links */
.mn-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mn-footer-links li {
  margin-bottom: 8px;
}
.mn-footer-links a:hover {
  color: #ffcc33;
}

/* Social */
.mn-footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}
.mn-footer-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.mn-footer-social li a:hover {
  background: #ffcc33;
  color: #000;
}

/* Bottom Bar */
.mn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}
.mn-footer-to-top {
  margin-left: 15px;
  color: #ffcc33;
  font-size: 18px;
}
.mn-footer-to-top:hover {
  color: #fff;
}
