:root {
  --primary-color: #fff100;
  --dark-color: #333;
  --light-bg: #ffffff;
  --green-color: #00a03d;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fbfbfb;
  overflow-x: hidden;
}
.star_colour {
  color: var(--primary-color);
}
/* TOP BANNER */
.top-banner {
  background:linear-gradient(90deg, #fff100 0%, #16914d 60%, #fff100 100%);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
  font-size: 14px;
}

.top-banner-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

.top-delivery-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-delivery-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.delivery-head-btn-mobile {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef8f1;
  border: 1px solid #cfe3d5 !important;
  color: #0f7f42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.delivery-head-btn-mobile:hover {
  color: #0f7f42;
  background: #e2f4e8;
}

/* HEADER */
header {
  background-color: #ffffff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 196px;
  height: 66px;
  aspect-ratio: 98/33;
}

nav ul li a {
  font-weight: 700;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
  text-transform: capitalize;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.cart-icon {
  cursor: pointer;
  position: relative;
}

.cart-icon img {
  width: 50.424px;
  height: 50.424px;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #000000;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.category-sticky .category-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 3px 15px;
}
.cart-badge.show {
  display: flex;
}

/* HERO SECTION */
.hero {
  background-color: #ffffff;
  padding: 40px 0 60px 0;
  text-align: center;
}

.hero h1 {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.search-bar {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  border: 2px solid #cbcbcb;
  border-radius: 50px;
  overflow: hidden;
  height: 50px;
  padding-right: 5px;
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
  color: #666;
}

.search-bar input::placeholder {
  color: #999;
}

.search-btn {
  background-color: var(--primary-color);
  border: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-left: 2px;
}

.search-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.search-btn-mobile {
  display: none;
}

/* CATEGORIES */
.categories {
  background-color: #ffffff;
  overflow: hidden;
}

.category-list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  white-space: nowrap;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  background-color: transparent;
  flex-shrink: 0;
  gap: 16px;
  max-width: 150px;
}

.category-item img {
  width: 100%;
  max-width: 100px;
  max-height: 100px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.category-item p {
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  max-width: 145px;
  white-space: normal;
}

.category-item.active {
  background-color: transparent;
}

/* PRODUCTS SECTION */
.products {
  padding: 20px 0 50px 0;
  background-color: #fff;
}

.products-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 4px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  transition: transform 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  margin-bottom: 12px;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.product-overlay img {
  width: 30px;
  height: 30px;
  background: #fff100;
  object-fit: contain;
  padding: 6px;
  border-radius: 50%;
  box-sizing: border-box;
}

.product-overlay.active {
  display: flex;
}

.product-card h3 {
  margin: 10px 0;
  color: #333;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.stars {
  color: #ffa500;
  font-size: 14px;
  line-height: 1;
}

.rating-count {
  font-size: 12px;
  color: #888;
  line-height: 1;
  padding-top: 2px;
  font-family: sans-serif;
}

.description {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.product-price {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  padding-bottom: 15px;
  font-family: Arial, sans-serif;
}

.product-price-icon {
  font-size: 16px;
  font-family: sans-serif;
}

.quantity-control {
  background-color: var(--primary-color);
  padding: 5px;
  height: 40px;
  width: calc(100% + 8px);
  margin-left: -4px;
  margin-right: -4px;
  margin-top: auto;
  border-radius: 0 0 12px 12px;
}

.quantity-control form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.qty-btn {
  background-color: #000;
  color: var(--primary-color);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  line-height: 1;
}

.qty-btn:hover {
  background-color: #333;
}

.qty-btn:first-child {
  margin-left: 12px;
}

.qty-btn:last-child {
  margin-right: 12px;
}

.quantity-control input {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #000;
}

.quantity-control input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* BASKET FOOTER */
.basket-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 12px 16px 16px 16px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.basket-footer.active {
  display: block;
}

.basket-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--green-color);
  padding: 0 20px;
  border-radius: 50px;
  height: 48px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.basket-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.basket-icon img {
  width: 25px;
  height: 25px;
}

.basket-text {
  font-weight: 300;
  font-size: 13px;
  color: white;
}

.basket-total {
  font-weight: bold;
  font-size: 13px;
  color: white;
  font-family: Arial, sans-serif;
}

/* ============== CART SIDEBAR STYLES ============== */

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1111;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

/* Cart Header */
.cart-header {
  background: linear-gradient(135deg, #00a03d 0%, #008a31 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Cart Content */
.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* Empty Cart State */
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
}

.empty-cart-icon {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-cart h3 {
  font-size: 18px;
  color: #333;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.empty-cart p {
  color: #888;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 8px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #d32f2f;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: #b71c1c;
}

.cart-item-price {
  font-size: 14px;
  color: #00a03d;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 4px 8px;
  width: fit-content;
}

.cart-qty-btn {
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cart-qty-btn:hover {
  color: #00a03d;
}

.cart-item-qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

/* Cart Footer */
.cart-footer {
  background: #f9f9f9;
  padding: 16px 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-footer.hidden {
  display: none;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.cart-total-label {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.cart-total-value {
  font-size: 20px;
  color: #00a03d;
  font-weight: 700;
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-add-to-menu {
  background: white;
  border: 2px solid #00a03d;
  color: #00a03d;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-add-to-menu:hover {
  background: #f0f0f0;
}

.btn-checkout {
  background: linear-gradient(135deg, #00a03d 0%, #008a31 100%);
  border: none;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 160, 61, 0.3);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 160, 61, 0.4);
}

.btn-checkout:active {
  transform: translateY(0);
}

/* ============== PRODUCT MODAL WITH OPTIONS CSS ============== */

/* Modal Details Container */
.modal-details-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
}

/* Modal Title */
#modalProductName {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-family: Arial, sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.modal-productimage {
  max-width: 450px;
  margin: 0px auto;
  display: block;
}

/* Rating Section */
.modal-body .rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-body .rating .stars {
  color: #ffc107;
  font-size: 20px;
  letter-spacing: 3px;
}

.modal-body .rating .rating-count {
  color: #999;
  font-size: 15px;
  font-weight: 400;
}

/* Description */
#modalProductDescription {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px !important;
}

/* Options Wrapper - Scrollable */
.modal-options-wrapper {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 0px;
  max-height: 330px;
}

.modal-options-wrapper::-webkit-scrollbar {
  width: 6px;
}

.modal-options-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-options-wrapper::-webkit-scrollbar-thumb {
  background: #00a03d;
  border-radius: 3px;
}

.modal-options-wrapper::-webkit-scrollbar-thumb:hover {
  background: #008a31;
}

/* Option Group */
.modal-option-group {
  margin-bottom: 28px;
}

.modal-option-group.has-error .modal-option-label {
  color: #d32f2f;
  font-weight: 600;
}

.modal-option-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

/* Option Item */
.modal-option-item {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-option-item:hover {
  background: #f8f8f8;
  border-color: #e0e0e0;
}

/* Hidden Radio/Checkbox Input */
.modal-radio-input,
.modal-checkbox-input {
  display: none;
}

.modal-radio-input:checked ~ .modal-option-text,
.modal-checkbox-input:checked ~ .modal-option-text {
  color: #1a1a1a;
  font-weight: 500;
}

/* Radio Circle */
.modal-radio-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2.5px solid #ddd;
  border-radius: 50%;
  margin-right: 14px;
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.modal-radio-input:checked ~ .modal-option-text .modal-radio-circle {
  border-color: #00a03d;
  background: #00a03d;
  box-shadow: inset 0 0 0 4px #ffffff;
}

/* Checkbox */
.modal-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2.5px solid #ddd;
  border-radius: 4px;
  margin-right: 14px;
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.modal-checkbox-input:checked ~ .modal-option-text .modal-checkbox {
  border-color: #00a03d;
  background: #00a03d;
}

.modal-checkbox-input:checked ~ .modal-option-text .modal-checkbox::after {
  content: "✓";
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
}

/* Option Text & Price */
.modal-option-text {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #555;
  flex: 1;
  transition: color 0.2s ease;
  user-select: none;
}

.modal-option-price {
  margin-left: auto;
  color: #00a03d;
  font-weight: 600;
  font-size: 15px;
}

/* Special Notes Textarea */
.modal-textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #333;
  resize: vertical;
  min-height: 90px;
  transition: all 0.2s ease;
}

.modal-textarea::placeholder {
  color: #aaa;
}

.modal-textarea:focus {
  outline: none;
  border-color: #00a03d;
  box-shadow: 0 0 0 3px rgba(0, 160, 61, 0.1);
}

/* Price Section - Sticky */
.modal-price-section {
  padding: 20px 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
}

.modal-product-price {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
}

.modal-product-price .product-price-icon {
  font-size: 24px;
}

/* Action Section - Sticky */
.modal-action-section {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Quantity Control */
.modal-quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border: 2.5px solid #00a03d;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  min-width: 130px;
}

.modal-qty-btn {
  background: none;
  border: none;
  color: #1a1a1a;
  cursor: pointer;
  font-size: 20px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  min-width: 44px;
  min-height: 44px;
}

.modal-qty-btn:hover {
  background: #f5f5f5;
  color: #00a03d;
}

.modal-quantity-control input {
  width: 50px;
  height: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 0;
  font-family: Arial, sans-serif;
}

.modal-quantity-control input:focus {
  outline: none;
}

.modal-quantity-control input[type="number"] {
  -moz-appearance: textfield;
}

.modal-quantity-control input::-webkit-outer-spin-button,
.modal-quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart Button */
.btn-add-to-cart {
  flex: 1;
  background: linear-gradient(135deg, #00a03d 0%, #008a31 100%);
  color: #ffffff;
  border: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 15px rgba(0, 160, 61, 0.3);
  min-height: 50px;
}

.btn-add-to-cart:hover {
  background: linear-gradient(135deg, #008a31 0%, #006b26 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 160, 61, 0.4);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

.btn-add-to-cart i {
  font-size: 20px;
}

/* ============== FOOTER CUSTOM STYLES ============== */

.footer-wrapper {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
  padding-top: 4rem;
  margin-top: 4rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Main footer content */
.footer-main {
  padding: 3rem 0;
}

.footer-column {
  margin-bottom: 2rem;
}

/* Column Heading Styles */
.footer-heading {
  font-family: "Montserrat", "Poppins", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Column 1: Location */
.footer-location-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.footer-location-address {
  color: #bdc3c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-location-address-english {
  margin-bottom: 0.5rem;
}

.footer-location-address-chinese {
  margin-bottom: 0.75rem;
}

/* Column 2: Follow Us */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid transparent;
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.social-icon:hover {
  background: #d4af37;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

.social-label {
  margin-left: 0.5rem;
  font-size: 0.95rem;
  color: #ecf0f1;
  transition: color 0.35s ease;
}

.social-link-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ecf0f1;
  transition: color 0.35s ease;
}

.social-link-wrapper:hover .social-label {
  color: #d4af37;
}

/* Column 3: Reserve & Reviews */
.reserve-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
  margin: 1rem 0 1.5rem 0;
  letter-spacing: 0.02em;
  transition: color 0.35s ease;
  text-decoration: none;
  display: inline-block;
}

.reserve-phone:hover {
  color: #e8c547;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  color: #2c3e50;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  cursor: pointer;
}

.google-review-btn:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
  color: #d4af37;
  text-decoration: none;
}

.google-logo {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Column 4: Legal */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  position: relative;
  padding-bottom: 0.25rem;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: #d4af37;
}

.footer-link:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem 0;
  text-align: center;
  color: #95a5a6;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  color: #7f8c8d;
  transition: color 0.35s ease;
}

.footer-credit:hover {
  color: #d4af37;
}

/* ============== ANIMATIONS ============== */
.footer-column {
  animation: footerFadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes footerFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll to Top Button Styles */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #d4af37;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  z-index: 999;
}

.scroll-top-btn:hover {
  background: #e8c547;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.scroll-top-btn:active {
  transform: translateY(-2px);
}

.scroll-top-btn.show {
  display: flex;
}

/* modal footer style */
.modal-footer-content {
  background: #00a03d;
  box-shadow: 0px 10px 40px 0px #7a81be29;
  padding: 10px;
  border-radius: 500px;
  margin: 0;
}

.modal-footer-content .input-group button.btn {
  border: 0px;
  padding: 0px;
}

.modal-footer-content .input-group button.btn > i {
  background: #fff100;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-footer-content .input-group .quantity {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 14px;
}

.modal-footer-content .input-group.width-auto {
  max-width: 95px !important;
}
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.no-spinner {
  -moz-appearance: textfield;
}
.modal-footer-content .input-group button.btn:hover {
  background: transparent;
  color: #00a03d;
}
.modal-footer-content .footer_price {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

.modal-footer-content > button.btn {
  width: 120px;
  height: 40px;
  border-radius: 40px;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .footer-main {
    padding: 2.5rem 0;
  }

  .footer-column {
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .footer-heading {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-location-address {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .google-review-btn {
    display: flex;
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 768px) {
  header {
    padding: 5px 0;
    margin-bottom: 10px;
    box-shadow: none;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .cart-icon {
    display: none;
  }

  nav {
    display: none;
  }

  nav.active {
    display: block;
  }

  .hero {
    padding: 0;
    padding-bottom: 0;
  }

  .hero h1 {
    display: none;
  }

  .hero .container-fluid {
    padding: 0 20px;
  }

  .search-bar {
    max-width: 95%;
    border: 1px solid #ddd;
  }

  .search-btn {
    display: none !important;
  }

  .search-btn-mobile {
    display: flex !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .search-btn-mobile img {
    width: 24px;
    height: 24px;
  }

  .categories {
    padding-top:20px;
    overflow-x: auto;
  }

  .category-list {
    justify-content: flex-start;
    gap: 4px;
    padding: 0 10px;
    flex-wrap: nowrap;
  }

  .category-item {
    min-width: auto;
    flex-shrink: 0;
    flex: 0 0 auto;
    padding: 8px 18px;
    white-space: nowrap;
    background-color: transparent;
    gap: 0;
    margin: 0;
  }

  .category-item img {
    display: none;
  }

  .category-item p {
    font-size: 14px;
    font-weight: 500;
  }

  .category-item.active {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 8px 18px;
  }

  .products {
    padding: 0;
  }

  .products .container-fluid {
    padding: 0 4px;
  }

  .products-title {
    font-size: 14px;
    padding: 0 10px;
    margin: 10px 0;
    display: block;
    text-align: left;
  }



  .product-card {
    min-height: 350px;
    padding: 8px 8px 0 8px;
  }

  .product-image-wrapper {
    height: 120px;
    padding: 10px;
  }

  .product-card img {
    height: 120px;
    padding: 5px;
  }

  .product-overlay {
    height: 120px;
  }

  .product-card h3 {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 6px;
  }

  .rating {
    margin-bottom: 6px;
  }

  .stars {
    font-size: 13px;
  }

  .rating-count {
    font-size: 10px;
  }

  .description {
    font-size: 11px;
    margin-bottom: 10px;
    min-height: 48px;
    max-height: 48px;
  }

  .product-price {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .quantity-control {
    height: 36px;
    padding: 4px 8px;
  }

  .qty-btn {
    width: 18px;
    height: 18px;
    font-size: 16px;
  }

  .qty-btn:first-child {
    margin-left: 8px;
  }

  .qty-btn:last-child {
    margin-right: 8px;
  }

  .top-banner {
    display: none;
  }

  /* Cart Sidebar Mobile */
  .cart-sidebar {
    max-width: 100%;
  }

  .cart-content {
    max-height: calc(100vh - 280px);
  }

  /* Modal Mobile */
  .modal-body {
    flex-direction: column;
  }

  .modal-body .col-md-5 {
    min-height: 300px;
    padding: 20px;
  }

  .modal-body .col-md-5 img {
    max-height: 250px;
  }

  .modal-body .col-md-7 {
    padding: 24px !important;
    height: auto;
  }

  .modal-details-container {
    height: auto;
    padding: 24px !important;
  }

  #modalProductName {
    font-size: 24px;
  }

  .modal-product-price {
    font-size: 24px;
  }

  .btn-add-to-cart {
    flex: none;
    width: 100%;
  }

  .modal-action-section {
    flex-direction: column;
  }

  .modal-quantity-control {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .footer-wrapper {
    padding-top: 2rem;
    margin-top: 2rem;
  }

  .footer-main {
    padding: 2rem 0;
  }

  .footer-heading {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
  }

  .footer-location-name {
    font-size: 1rem;
  }

  .footer-location-address {
    font-size: 0.9rem;
  }

  .reserve-phone {
    font-size: 1.3rem;
    margin: 0.75rem 0 1rem 0;
  }

  .google-review-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.8rem;
  }

  /* Modal Small Mobile */
  .modal-content {
    border-radius: 12px;
  }

  .modal-details-container {
    padding: 16px !important;
    height: auto;
  }

  .modal-body .col-md-5 {
    min-height: 250px;
    padding: 16px;
  }

  #modalProductName {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .modal-body .rating {
    margin-bottom: 12px;
  }

  .modal-option-label {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .modal-option-item {
    padding: 10px;
    margin-bottom: 10px;
  }

  .modal-option-text {
    font-size: 14px;
  }

  .modal-option-price {
    font-size: 12px;
  }

  .modal-textarea {
    font-size: 13px;
    min-height: 70px;
    padding: 10px;
  }

  .modal-product-price {
    font-size: 20px;
  }

  .btn-add-to-cart {
    padding: 12px 16px;
    font-size: 13px;
    gap: 8px;
  }

  .btn-add-to-cart i {
    font-size: 16px;
  }

  .modal-qty-btn {
    padding: 10px 12px;
    min-width: 40px;
    min-height: 40px;
  }

  .modal-quantity-control input {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .modal-content .btn-close {
    width: 28px;
    height: 28px;
    font-size: 20px;
    top: 12px;
    right: 12px;
  }

  .modal-productimage {
    max-width: 100%;
    height: 40vh !important;
  }
  .modal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
  }
  .modal-options-wrapper {
    max-height: calc(60vh - 190px);
  }
  .product-modal-dialog {
    margin: 0 !important;
    border-radius: 0 !important;
    background: #fff;
  }

  /* Cookie Consent Mobile */
  .cookie-consent {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  .cookie-consent__agree {
    width: 100%;
  }

  /* Product Overlay Mobile */
  .product-overlay i {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .product-card {
    min-height: 300px;
  }

  .product-card h3 {
    font-size: 13px;
  }

  .description {
    font-size: 10px;
    min-height: 39px;
    max-height: 39px;
  }
}

@media (min-width: 769px) {
  .basket-footer {
    display: none !important;
  }
}

/* Modal Container */
.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  overflow: hidden;
}

.modal-body {
  padding: 0;
  overflow: hidden;
}

.modal-body .row {
  min-height: 500px;
}

/* Left Side - Image */
.modal-body .col-md-5 {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 500px;
}

/* Right Side - Details */
.modal-body .col-md-7 {
  display: flex;
  flex-direction: column;
}

/* Modal Backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

/* Modal Fade Animation */
.modal.fade .modal-dialog {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.modal.show .modal-dialog {
  transform: none;
}

/* Modal Close Button */
.modal-content .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 24px;
  background: transparent;
  border: none;
  color: #999;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-content .btn-close:hover {
  color: #333;
  transform: rotate(90deg);
}

.modal-content .btn-close:focus {
  box-shadow: none;
}

/* ============== MODAL RESPONSIVE DESIGN ============== */


/* Mobile */


@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal.show .modal-dialog {
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-qty-btn i {
  transition: transform 0.3s ease;
}

.modal-qty-btn:hover i {
  transform: scale(1.1);
}

.modal-qty-btn:focus-visible {
  outline: 2px solid #333;
  outline-offset: -2px;
}

.btn-add-to-cart:focus-visible {
  outline: 2px solid #333;
  outline-offset: -2px;
}

.modal-radio-input:focus-visible ~ .modal-option-text,
.modal-checkbox-input:focus-visible ~ .modal-option-text {
  outline: 2px solid #333;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Updated Modal CSS for Better Design */

#modalProductName {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-family: Arial, sans-serif;
  letter-spacing: -0.5px;
}

.modal-body .rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-body .rating .stars {
  color: #ffd700;
  font-size: 20px;
  letter-spacing: 1px;
  display: flex;
  gap: 2px;
}

.modal-body .rating .rating-count {
  color: #888;
  font-size: 15px;
  font-weight: 500;
}

#modalProductDescription {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-options-wrapper::-webkit-scrollbar {
  width: 5px;
}

.modal-options-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.modal-options-wrapper::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.modal-options-wrapper::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.modal-option-group {
  margin-bottom: 24px;
}

.modal-option-group.has-error .modal-option-label {
  color: #d32f2f;
  font-weight: 700;
}

.modal-option-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

.modal-option-label .text-danger {
  color: #d32f2f;
  margin-left: 4px;
}

.modal-option-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-option-item:hover {
  background: transparent;
}

.modal-radio-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid #bbb;
  border-radius: 50%;
  margin-right: 12px;
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.modal-radio-input:checked ~ .modal-option-text .modal-radio-circle {
  border-color: #333;
  background: #ffffff;
  box-shadow: inset 0 0 0 4px #333;
}

.modal-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid #bbb;
  border-radius: 3px;
  margin-right: 12px;
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.modal-checkbox-input:checked ~ .modal-option-text .modal-checkbox {
  border-color: #333;
  background: #333;
}

.modal-checkbox-input:checked ~ .modal-option-text .modal-checkbox::after {
  content: "✓";
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
}

.modal-option-text {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  color: #555;
  flex: 1;
  transition: color 0.2s ease;
  user-select: none;
  padding-top: 1px;
}

.modal-option-price {
  margin-left: auto;
  color: #555;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.modal-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
  resize: vertical;
  min-height: 70px;
  max-height: 100px;
  transition: border-color 0.3s ease;
  background: #fafafa;
}

.modal-textarea::placeholder {
  color: #aaa;
}

.modal-textarea:focus {
  outline: none;
  border-color: #333;
  background: #ffffff;
}

.modal-price-section {
  padding: 24px 0;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 20px;
  text-align: center;
}

.modal-product-price {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  letter-spacing: -0.5px;
}

.modal-product-price .product-price-icon {
  font-size: 24px;
}

.modal-action-section {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.modal-quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border: 2px solid #333;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  min-width: 140px;
}

.modal-qty-btn {
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 20px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 50px;
  min-height: 48px;
}

.modal-qty-btn:hover {
  background: #f5f5f5;
}

.modal-qty-btn:active {
  background: #efefef;
}

.modal-quantity-control input {
  width: 40px;
  height: 48px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  padding: 0;
  font-family: Arial, sans-serif;
}

.modal-quantity-control input:focus {
  outline: none;
}

.btn-add-to-cart {
  flex: 1;
  max-width: 400px;
  background: #ffffff;
  color: #333;
  border: 2px solid #333;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  min-height: 48px;
}

.btn-add-to-cart:hover {
  background: #f5f5f5;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

.btn-add-to-cart i {
  font-size: 18px;
}


/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  flex-wrap: wrap; /* responsive */
}

.cookie-consent__message {
  font-size: 14px;
  line-height: 1.5;
  color: #fff !important;
}

.cookie-consent__agree {
  background: linear-gradient(135deg, #00a03d 0%, #008a31 100%);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 160, 61, 0.3);
  white-space: nowrap;
}

.cookie-consent__agree:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 160, 61, 0.4);
  background: linear-gradient(135deg, #00b344 0%, #009936 100%);
}

.cookie-consent__agree:active {
  transform: translateY(0);
}



/* Product Overlay Styles */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Dimmed background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: none;
  border-radius: inherit;
}
.product-overlay i {
  color: #fff;
  font-size:1.5rem;
  width: 55px;
  height:55px;
  background-color: rgba(255, 193, 7, 0.9); /* Yellow Circle */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Animated Headings */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  to {
    width: 50px;
  }
}
h2.fancy {
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out;
}
/* h2.fancy span,
.products-title-animated {
  background: linear-gradient(120deg, #d32f2f, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
} */

/* h2.fancy span::after,
.products-title-animated::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #ffc107;
  transition: width 0.3s;
  margin: 5px auto 0;
  animation: expandWidth 0.8s ease-out 0.2s forwards;
  border-radius: 2px;
} */

h2.fancy span,
.products-title-animated {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: #000000;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  width: 100%;
}

h2.fancy span::after,
.products-title-animated::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}
.products-title-animated {
  animation: fadeInUp 0.8s ease-out;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
  display: block !important; /* Ensure it takes width for centering */
}

/* Active Category Highlight */
.active-category {
  /* Container adjusts */
}
.active-category img {
  border: 4px solid #ffc107;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}
.active-category p {
  font-weight: 800;
  color: #d32f2f; /* Dark Red text for contrast */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contact Us Modern Design */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../assets/images/banner2024.png"); /* Ensure this image exists or use a fallback */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 50px;
  border-radius: 0 0 20px 20px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #fff3cd; /* Warning/Yellow tint matching brand */
  color: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: #ffc107;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.btn-primary.contact-submit {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-primary.contact-submit:hover {
  background-color: #e0a800;
  border-color: #d39e00;
  transform: scale(1.02);
}

.map-container iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* User Profile Modern Design */
.profile-hero {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  color: #ffc107;
  padding: 60px 0;
  margin-bottom: -50px;
  border-radius: 0 0 20px 20px;
}

.profile-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  position: relative; /* Context for avatar */
}

.profile-avatar {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;
  font-size: 3rem;
  color: #ffc107;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  position: relative; /* Ensure text visible */
  z-index: 10;
}

.profile-info-item {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-info-item:last-child {
  border-bottom: none;
}

.profile-label {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.profile-value {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.profile-actions {
  background: #f8f9fa;
  padding: 20px;
  border-top: 1px solid #eee;
}

/* Global Brand Button Override */
.btn-primary {
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
  color: #000 !important;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #e0a800 !important;
  border-color: #d39e00 !important;
  color: #000 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5) !important;
}

.btn-outline-primary {
  color: #ffc107 !important;
  border-color: #ffc107 !important;
}

.btn-outline-primary:hover {
  background-color: #ffc107 !important;
  color: #000 !important;
}

/* Wishlist Page Modern Design */
.wishlist-hero {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  color: #ffc107;
  padding: 60px 0;
  margin-bottom: 50px;
  border-radius: 0 0 20px 20px;
}

.wishlist-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wishlist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #ffc107;
}

.wishlist-card .card-body {
  padding: 25px;
  flex: 1;
}

.wishlist-title {
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
  font-size: 1.25rem;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
  display: inline-block;
}

.wishlist-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.wishlist-items li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95rem;
}

.wishlist-items li:before {
  content: "\f00c"; /* FontAwesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
}

.wishlist-actions {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
}

.btn-wishlist-view {
  background: #ffc107;
  color: #000;
  border: none;
  font-weight: 600;
  flex: 1;
}

.btn-wishlist-view:hover {
  background: #e0a800;
  color: #000;
}

.btn-wishlist-delete {
  background: #fff;
  color: #dc3545;
  border: 1px solid #dc3545;
  font-weight: 600;
}

.btn-wishlist-delete:hover {
  background: #dc3545;
  color: #fff;
}

/* Wishlist Page Modern Design */
.wishlist-hero {
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  color: #ffc107;
  padding: 60px 0;
  margin-bottom: 50px;
  border-radius: 0 0 20px 20px;
}

.wishlist-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wishlist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #ffc107;
}

.wishlist-card .card-body {
  padding: 25px;
  flex: 1;
}

.wishlist-title {
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
  font-size: 1.25rem;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
  display: inline-block;
}

.wishlist-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.wishlist-items li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95rem;
}

.wishlist-items li:before {
  content: "\f00c"; /* FontAwesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
}

.wishlist-actions {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
}

.btn-wishlist-view {
  background: #ffc107;
  color: #000;
  border: none;
  font-weight: 600;
  flex: 1;
}

.btn-wishlist-view:hover {
  background: #e0a800;
  color: #000;
}

.btn-wishlist-delete {
  background: #fff;
  color: #dc3545;
  border: 1px solid #dc3545;
  font-weight: 600;
}

/* Wishlist Details View */
.wishlist-details-card {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
}

.wishlist-table thead {
  background-color: #212529;
  color: #ffc107;
}

.wishlist-table th {
  padding: 15px;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.wishlist-table td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
}

.wishlist-product-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-qty-input {
  width: 60px;
  text-align: center;
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 5px;
  font-weight: 600;
}

.btn-qty {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  background: white;
  transition: all 0.2s;
}

.btn-qty:hover {
  background: #ffc107;
  border-color: #ffc107;
}

/* Smart Header & Sticky Category */
header {
  transition: transform 0.3s ease-in-out;
}

header.header-hidden {
  transform: translateY(-100%);
}

.secondary-nav {
  /* Ensure secondary nav (if any) doesn't interfere */
}

/* Category Sticky State */
.category-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11; /* Above header when header is hidden, but below if shown? Adjust as needed */
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  padding-bottom: 15px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-nav-strip.active {
  transform: translateY(0);
}

.sticky-nav-strip .back-icon {
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

/* Adjust Category Sticky offset when Strip is active */
.category-sticky {
  top: 0px !important; /* Height of the green strip */
  transition: top 0.3s ease;
}

/* Refined Sticky Categories (Text-only Pills) */
.category-sticky .category-item img {
  display: none;
}

.category-sticky .category-list {
  gap: 12px;
  padding: 10px 15px;
  justify-content: flex-start; /* Ensure scrollability from start */
}

.category-sticky .category-item {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 6px 16px;
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-sticky .category-item p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

.category-sticky .category-item.active-category {
  background-color: #ffc107;
  border-color: #ffc107;
}

.category-sticky .category-item.active-category p {
  color: #000;
  font-weight: 600;
}

/* Ensure horizontal scroll bar is hidden but functional */
.category-list {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.category-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}


/* MOBILE STICKY FOOTER */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00a03d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mobile-sticky-footer .cart-total-info {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-footer .cart-total-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: -2px;
}

.mobile-sticky-footer .cart-total-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.mobile-sticky-footer .cart-trigger {
  position: relative;
  cursor: pointer;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(255, 241, 0, 0.3);
}

.mobile-sticky-footer .cart-trigger:active {
  transform: scale(0.95);
}

.mobile-sticky-footer .cart-trigger img {
  width: 26px;
  height: 26px;
}

.mobile-sticky-footer .cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #fff;
}

/* Adjust page padding to avoid overlap */
@media (max-width: 767.98px) {
  body.has-mobile-footer {
    padding-bottom: 80px;
  }
  .scroll-top-btn {
    bottom: 80px;
    right: 20px;
  }
}
