@charset "UTF-8";
/* ===================================================================
   SASS IMPORTS & VARIABLES
   =================================================================== */
/* Color Variables */
/* Font Imports */
/* Importing Montserrat (100-900)*/
@import url("https://fonts.googleapis.com/css2?family=Gruppo&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display&family=Sekuya&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* Font Variables */
/* ===================================================================
   SASS MIXINS
   =================================================================== */
/* ===================================================================
   GLOBAL BASE STYLES
   =================================================================== */
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #000000;
  background-color: #ffffff;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Force all interactive elements to inherit font properties */
button,
input,
select,
textarea,
.btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

/* Layout Padding Classes */
.layout_padding {
  padding: 50px 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: 50px;
}

/* Typography */
h1,
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

/* Common Heading Container */
.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
}
.heading_container h2 span {
  color: #AE875B;
}
.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}
.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

/* Link Styles */
a,
a:hover,
a:focus {
  text-decoration: none;
}

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

/* Button Reset */
.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/* ===================================================================
   HEADER SECTION
   =================================================================== */
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-width: 100%;
  min-height: 100%;
}
.bg-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.sub_page .hero_area {
  min-height: auto;
}
.sub_page .hero_area .bg-box img {
  object-position: right top;
}

.header_section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  background: transparent;
}
.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

/* Navigation Brand */
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand .logo-img {
  width: 70px;
  height: 70px;
  max-width: 170px;
  max-height: 170px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.navbar-brand .logo-img:hover {
  transform: translateZ(0) scale(1.05);
}

/* Custom Navigation Container */
.custom_nav-container {
  padding: 0;
}
.custom_nav-container .navbar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom_nav-container .navbar-nav .nav-item {
  position: relative;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 12px 25px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.custom_nav-container .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(174, 135, 91, 0.2), rgba(241, 214, 176, 0.1));
  border-radius: 30px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #AE875B, #F1D6B0);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #000000;
  border-color: rgba(174, 135, 91, 0.3);
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link::before {
  opacity: 0.5;
  transform: scale(1);
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after {
  width: 80%;
}
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(174, 135, 91, 0.4);
  box-shadow: 0 4px 15px rgba(174, 135, 91, 0.2);
}
.custom_nav-container .navbar-nav .nav-item.active .nav-link::before {
  opacity: 1;
  transform: scale(1);
}
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  width: 100%;
}

/* Search Button */
.custom_nav-container .nav_search-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: #ffffff;
  margin: 0 10px;
}
.custom_nav-container .nav_search-btn:hover {
  color: #AE875B;
}

.sub_page .header_section {
  background-color: #000000;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.sub_page .header_section .navbar-nav .nav-item:hover .nav-link {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* User Options */
.user_option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user_option a {
  margin: 0;
}
.user_option .user_link {
  color: #ffffff;
}
.user_option .user_link:hover {
  color: #AE875B;
}
.user_option .auth_buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
}
.user_option .auth_buttons .login_btn,
.user_option .auth_buttons .signup_btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 70px;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.user_option .auth_buttons .login_btn i,
.user_option .auth_buttons .signup_btn i {
  font-size: 11px;
}
.user_option .auth_buttons .login_btn {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.user_option .auth_buttons .login_btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.user_option .auth_buttons .signup_btn {
  color: #ffffff;
  background: #AE875B;
  border: 1px solid #AE875B;
}
.user_option .auth_buttons .signup_btn:hover {
  color: #AE875B;
  background: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.user_option .cart_link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 10px;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
}
.user_option .cart_link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.user_option .cart_link i {
  color: #ffffff;
  font-size: 20px;
}
.user_option .cart_link i:hover {
  color: #ffffff;
}
.user_option .cart_link svg {
  width: 16px;
  height: auto;
  fill: #ffffff;
}
.user_option .cart_link svg:hover {
  fill: #AE875B;
}
.user_option .cart_link .cart_count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #AE875B;
  color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.user_option .cart_link .cart_count.cart-bounce {
  animation: bounce 0.5s;
}
.user_option .order_online {
  display: inline-block;
  padding: 6px 20px;
  background-color: #AE875B;
  color: #ffffff;
  border-radius: 20px;
  transition: all 0.3s;
  border: none;
}
.user_option .order_online:hover {
  background-color: rgb(150.7795918367, 114.9234693878, 74.4704081633);
}
.user_option .order_online {
  font-size: 13px;
  font-weight: 600;
}
.user_option .order_online:hover {
  transform: translateY(-1px);
}
.user_option .order_online a {
  color: inherit;
  text-decoration: none;
  margin: 0;
}

/* Mobile Hamburger Menu */
.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
}
.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: #ffffff;
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span::before, .custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}

/* ===================================================================
   Cart Page 
   =================================================================== */
.cart_section {
  background-color: rgba(255, 255, 255, 0.97);
  min-height: 70vh;
  position: relative;
}
.cart_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #AE875B 50%, transparent 100%);
}
.cart_section .cart_container {
  max-width: 1200px;
  margin: 0 auto;
}
.cart_section .cart_container .cart_empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.cart_section .cart_container .cart_empty .empty_icon {
  font-size: 4rem;
  color: rgba(174, 135, 91, 0.4);
  margin-bottom: 20px;
}
.cart_section .cart_container .cart_empty h3 {
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}
.cart_section .cart_container .cart_empty p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}
.cart_section .cart_container .cart_empty .continue_shopping_btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #AE875B;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s;
  border: none;
}
.cart_section .cart_container .cart_empty .continue_shopping_btn:hover {
  background-color: rgb(150.7795918367, 114.9234693878, 74.4704081633);
}
.cart_section .cart_container .cart_empty .continue_shopping_btn {
  text-decoration: none;
  font-weight: 600;
}
.cart_section .cart_container .cart_empty .continue_shopping_btn i {
  margin-right: 8px;
}
.cart_section .cart_container .cart_content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}
.cart_section .cart_container .cart_content .cart_items {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.cart_section .cart_container .cart_content .cart_items .cart_item {
  display: grid;
  grid-template-columns: 100px 1fr 120px 100px 50px;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(174, 135, 91, 0.1);
  align-items: center;
  transition: background-color 0.3s ease;
}
.cart_section .cart_container .cart_content .cart_items .cart_item:hover {
  background-color: rgba(255, 255, 255, 0.97);
}
.cart_section .cart_container .cart_content .cart_items .cart_item:last-child {
  border-bottom: none;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_details h4 a.product-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_details h4 a.product-link:hover {
  color: #AE875B;
  text-decoration: none;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_details h4 a.product-link:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_details .item_options {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_details .item_options span {
  display: block;
  margin-bottom: 2px;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_details .item_price {
  font-size: 14px;
  color: #AE875B;
  font-weight: 600;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_quantity .quantity_controls {
  display: flex;
  align-items: center;
  border: 1px solid rgba(174, 135, 91, 0.2);
  border-radius: 6px;
  overflow: hidden;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_quantity .quantity_controls button {
  background: #AE875B;
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_quantity .quantity_controls button:hover {
  background: rgb(143.2489795918, 109.1836734694, 70.7510204082);
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_quantity .quantity_controls span {
  padding: 8px 15px;
  background: #ffffff;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #AE875B;
  text-align: center;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_remove .remove_btn {
  background: rgba(174, 135, 91, 0.8);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart_section .cart_container .cart_content .cart_items .cart_item .item_remove .remove_btn:hover {
  background: #AE875B;
  transform: scale(1.1);
}
.cart_section .cart_container .cart_content .cart_summary .summary_card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .summary_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .summary_row.total_row {
  font-size: 1.2rem;
  font-weight: 700;
  color: #AE875B;
  margin-top: 15px;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .summary_divider {
  height: 1px;
  background: rgba(174, 135, 91, 0.1);
  margin: 15px 0;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .clear_cart_btn,
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .checkout_btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .clear_cart_btn i,
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .checkout_btn i {
  margin-right: 8px;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .clear_cart_btn {
  background: #000000;
  color: #ffffff;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .clear_cart_btn:hover {
  background: rgba(0, 0, 0, 0.6);
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .checkout_btn {
  background: #28a745;
  color: #ffffff;
  font-size: 1.1rem;
}
.cart_section .cart_container .cart_content .cart_summary .summary_card .cart_actions .checkout_btn:hover {
  background: rgb(30.1449275362, 125.8550724638, 52);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(174, 135, 91, 0.3);
}

/* ===================================================================
   SLIDER SECTION
   =================================================================== */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 95px 0 75px 0;
}
.slider_section .row {
  align-items: center;
}
.slider_section #customCarousel1 {
  padding-top: 30px;
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 25px;
  border-radius: 12px;
  border-left: 4px solid #AE875B;
}
.slider_section .detail-box h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.7);
  color: #ffffff;
}
.slider_section .detail-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, 0.95);
}
.slider_section .detail-box .btn-box a {
  display: inline-block;
  padding: 12px 45px;
  background-color: #AE875B;
  color: #ffffff;
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
}
.slider_section .detail-box .btn-box a:hover {
  background-color: rgb(150.7795918367, 114.9234693878, 74.4704081633);
}
.slider_section .detail-box .btn-box a {
  margin-top: 10px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.slider_section .detail-box .btn-box a:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}
.slider_section .img-box img {
  width: 100%;
}
.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: flex-start;
  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: #AE875B;
}

/* ===================================================================
   FOOD SECTION
   =================================================================== */
.food_section .heading_container,
.cart_section .heading_container {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
.food_section .heading_container::after,
.cart_section .heading_container::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #AE875B, #F1D6B0);
  border-radius: 2px;
}
.food_section .heading_container h2,
.cart_section .heading_container h2 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 500;
  color: #000000;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.food_section .heading_container h2 span,
.cart_section .heading_container h2 span {
  color: #AE875B;
}
.food_section .heading_container h2::before,
.cart_section .heading_container h2::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F1D6B0, #AE875B);
  border-radius: 2px;
}
.food_section .heading_container p,
.cart_section .heading_container p {
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: #AE875B;
  margin-top: 15px;
  letter-spacing: 1px;
  text-transform: none;
  position: relative;
  display: inline-block;
}
.food_section .heading_container p::before, .food_section .heading_container p::after,
.cart_section .heading_container p::before,
.cart_section .heading_container p::after {
  content: "✦";
  color: #F1D6B0;
  font-size: 0.8rem;
  margin: 0 10px;
  opacity: 0.7;
}

.food_section {
  position: relative;
  background-color: #ffffff;
  background-size: 20px 20px;
  overflow: hidden;
}
.food_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #AE875B 20%, #F1D6B0 50%, #AE875B 80%, transparent 100%);
}
.food_section::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(174, 135, 91, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.food_section .filters_menu {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 45px 0 50px 0;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.food_section .filters_menu li {
  padding: 12px 28px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(174, 135, 91, 0.3);
  color: #000000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.food_section .filters_menu li i {
  font-size: 16px;
  color: #AE875B;
  transition: color 0.3s ease;
}
.food_section .filters_menu li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #AE875B, #F1D6B0);
  border-radius: 50px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.food_section .filters_menu li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 0;
  height: 2px;
  background: #F1D6B0;
  transform: translateY(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.food_section .filters_menu li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(174, 135, 91, 0.15);
  border-color: #AE875B;
  color: #AE875B;
}
.food_section .filters_menu li:hover::after {
  width: calc(100% - 20px);
}
.food_section .filters_menu li.active {
  background: transparent;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(174, 135, 91, 0.3);
  transform: translateY(-2px);
}
.food_section .filters_menu li.active i {
  color: #ffffff;
}
.food_section .filters_menu li.active::before {
  opacity: 1;
  transform: scale(1);
}
.food_section .filters_menu li.active::after {
  background: #ffffff;
  width: calc(100% - 20px);
}
.food_section .filters_menu li.active:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(174, 135, 91, 0.4);
}
.food_section .box {
  position: relative;
  margin-top: 25px;
  background-color: #ffffff;
  border-radius: 15px;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(241, 214, 176, 0.3) 25px, #000000 25px);
}
.food_section .box .img-box {
  background: #F1D6B0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 215px;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}
.food_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s;
}
.food_section .box .detail-box {
  padding: 25px;
  color: #ffffff;
}
.food_section .box .detail-box h5 {
  font-weight: 600;
}
.food_section .box .detail-box h5 .product-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.food_section .box .detail-box h5 .product-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #AE875B, #F1D6B0);
  transition: width 0.3s ease;
}
.food_section .box .detail-box h5 .product-link:hover {
  color: #F1D6B0;
  text-decoration: none;
  transform: translateY(-1px);
}
.food_section .box .detail-box h5 .product-link:hover::after {
  width: 100%;
}
.food_section .box .detail-box h5 .product-link:focus {
  color: #F1D6B0;
  outline: none;
  text-decoration: none;
}
.food_section .box .detail-box p {
  font-size: 15px;
}
.food_section .box .detail-box h6 {
  margin-top: 10px;
}
.food_section .box .options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.food_section .box .options h6 {
  color: #F1D6B0;
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}
.food_section .box .options .cart_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.food_section .box .options .cart_actions .btn_cart,
.food_section .box .options .cart_actions .btn_details {
  font-size: 12px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}
.food_section .box .options .cart_actions .btn_cart i,
.food_section .box .options .cart_actions .btn_details i {
  font-size: 12px;
}
.food_section .box .options .cart_actions .btn_cart:hover,
.food_section .box .options .cart_actions .btn_details:hover {
  transform: translateY(-2px);
}
.food_section .box .options .cart_actions .btn_cart:active,
.food_section .box .options .cart_actions .btn_details:active {
  transform: translateY(0);
}
.food_section .box .options .cart_actions .btn_cart.primary {
  display: inline-block;
  padding: 10px 16px;
  background-color: #AE875B;
  color: #ffffff;
  border-radius: 20px;
  transition: all 0.3s;
  border: none;
}
.food_section .box .options .cart_actions .btn_cart.primary:hover {
  background-color: rgb(150.7795918367, 114.9234693878, 74.4704081633);
}
.food_section .box .options .cart_actions .btn_cart.primary {
  flex: 1;
  box-shadow: 0 4px 15px rgba(174, 135, 91, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.food_section .box .options .cart_actions .btn_cart.primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.food_section .box .options .cart_actions .btn_cart.primary:hover {
  box-shadow: 0 6px 20px rgba(174, 135, 91, 0.5);
  transform: translateY(-3px) scale(1.03);
}
.food_section .box .options .cart_actions .btn_cart.primary:hover::before {
  width: 300px;
  height: 300px;
}
.food_section .box .options .cart_actions .btn_cart.primary:hover i {
  animation: cartBounce 0.6s ease;
}
.food_section .box .options .cart_actions .btn_cart.primary:active {
  transform: translateY(-1px) scale(0.98);
}
@keyframes cartBounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-2px);
  }
}
.food_section .box .options .cart_actions .btn_details {
  background: #000000;
  color: #ffffff;
  border: 2px solid rgba(174, 135, 91, 0.3);
  min-width: 100px;
}
.food_section .box .options .cart_actions .btn_details:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: #AE875B;
  box-shadow: 0 4px 12px rgba(174, 135, 91, 0.2);
}
.food_section .box .options .cart_actions .btn_details:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(174, 135, 91, 0.4);
  color: #ffffff;
  text-decoration: none;
}
.food_section .box .options .cart_actions .btn_details:hover::before {
  opacity: 1;
}
.food_section .box .options .cart_actions .btn_details:active {
  transform: translateY(0) scale(1);
}
.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #AE875B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}
.food_section .box:hover .img-box img {
  transform: scale(1.1);
}
.food_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.food_section .btn-box a {
  display: inline-block;
  padding: 15px 40px;
  background-color: #AE875B;
  color: #ffffff;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
}
.food_section .btn-box a:hover {
  background-color: rgb(150.7795918367, 114.9234693878, 74.4704081633);
}
.food_section .btn-box a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(174, 135, 91, 0.3);
  transition: all 0.3s ease;
}
.food_section .btn-box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(174, 135, 91, 0.4);
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.about_section {
  background: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.about_section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 190, 51, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.about_section .row {
  align-items: center;
}
.about_section .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.about_section .img-box img:hover {
  transform: scale(1.02);
}
.about_section .img-box .img-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}
.about_section .img-box .img-overlay .experience-badge {
  background: linear-gradient(135deg, #AE875B, rgb(126.1795918367, 96.1734693878, 62.3204081633));
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  min-width: 120px;
}
.about_section .img-box .img-overlay .experience-badge .number {
  display: block;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.about_section .img-box .img-overlay .experience-badge .text {
  display: block;
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-top: 5px;
}
.about_section .detail-box {
  padding-left: 30px;
}
.about_section .detail-box .heading_container {
  margin-bottom: 25px;
}
.about_section .detail-box .heading_container h2 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 0;
}
.about_section .detail-box .heading_container h2 span {
  color: #AE875B;
}
.about_section .detail-box .intro-text {
  font-size: 18px;
  font-weight: 500;
  color: #AE875B;
  margin-bottom: 20px;
  line-height: 1.6;
}
.about_section .detail-box p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.about_section .subtitle {
  color: #AE875B;
  font-size: 16px;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 400;
}
.about_section .about-cards {
  margin-top: 60px;
}
.about_section .about-cards .about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 190, 51, 0.2);
  border-radius: 15px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about_section .about-cards .about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #AE875B, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.about_section .about-cards .about-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 190, 51, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.about_section .about-cards .about-card:hover::before {
  transform: scaleX(1);
}
.about_section .about-cards .about-card h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.about_section .about-cards .about-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.about_section .about-cards .about-card p:last-child {
  margin-bottom: 0;
}

/* ===================================================================
   CLIENT/REVIEWS SECTION
   =================================================================== */
.client_section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 214, 176, 0.1) 100%);
  position: relative;
  overflow: hidden;
}
.client_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #AE875B 50%, transparent 100%);
}
.client_section .heading_container {
  margin-top: 30px;
  margin-bottom: 50px;
}
.client_section .heading_container h2 {
  color: #000000;
}
.client_section .heading_container h2 span {
  color: #AE875B;
}
.client_section .heading_container p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.client_section .review-card {
  background: #000000;
  border-radius: 20px;
  padding: 35px 30px;
  margin: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(174, 135, 91, 0.2);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.client_section .review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #AE875B, #F1D6B0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.client_section .review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(174, 135, 91, 0.3);
}
.client_section .review-card:hover::before {
  transform: scaleX(1);
}
.client_section .review-card:hover .quote-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #AE875B, #F1D6B0);
}
.client_section .review-card:hover .customer-avatar {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(174, 135, 91, 0.4);
}
.client_section .review-card .quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(174, 135, 91, 0.1), rgba(241, 214, 176, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.client_section .review-card .quote-icon i {
  color: #AE875B;
  font-size: 20px;
}
.client_section .review-card .star-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}
.client_section .review-card .star-rating i {
  color: #AE875B;
  font-size: 18px;
  transition: transform 0.2s ease;
}
.client_section .review-card .star-rating i:hover {
  transform: scale(1.2);
}
.client_section .review-card .review-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  flex: 1;
  position: relative;
  padding-left: 15px;
}
.client_section .review-card .review-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #AE875B, transparent);
  border-radius: 2px;
}
.client_section .review-card .customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(174, 135, 91, 0.2);
  margin-top: auto;
}
.client_section .review-card .customer-info .customer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #AE875B, #F1D6B0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(174, 135, 91, 0.2);
}
.client_section .review-card .customer-info .customer-avatar span {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.client_section .review-card .customer-info .customer-details {
  flex: 1;
}
.client_section .review-card .customer-info .customer-details h6 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.client_section .review-card .customer-info .customer-details .designation {
  color: rgba(241, 214, 176, 0.7);
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.client_section .review-card .customer-info .verified-badge {
  flex-shrink: 0;
}
.client_section .review-card .customer-info .verified-badge i {
  color: #4CAF50;
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}
.client_section .owl-carousel .owl-nav {
  display: none;
}
.client_section .owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
}
.client_section .owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(174, 135, 91, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
}
.client_section .owl-carousel .owl-dots .owl-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.client_section .owl-carousel .owl-dots .owl-dot.active {
  background: #AE875B;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(174, 135, 91, 0.6);
}
.client_section .owl-carousel .owl-dots .owl-dot.active::after {
  border-color: rgba(174, 135, 91, 0.3);
  animation: pulseRing 2s infinite;
}
.client_section .owl-carousel .owl-dots .owl-dot:hover:not(.active) {
  background: rgba(174, 135, 91, 0.5);
  transform: scale(1.15);
}
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* ===================================================================
   CONTACT SECTION
   =================================================================== */
.contact_section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, #ffffff 100%);
  position: relative;
}
.contact_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #AE875B 50%, transparent 100%);
}
.contact_section .heading_container {
  margin-bottom: 50px;
}
.contact_section .heading_container p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.6;
}
.contact_section .form_container {
  background: #000000;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(174, 135, 91, 0.1);
  transition: all 0.3s ease;
}
.contact_section .form_container:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.contact_section .form_container .form-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(174, 135, 91, 0.3);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.contact_section .form_container .form-group {
  margin-bottom: 25px;
}
.contact_section .form_container .form-group label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.5px;
}
.contact_section .form_container .form-group label::after {
  content: "";
  display: inline-block;
}
.contact_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
  background-color: rgba(255, 255, 255, 0.97);
  border: 2px solid transparent;
  outline: none;
  color: #000000;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}
.contact_section .form_container .form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact_section .form_container .form-control:focus {
  background-color: #ffffff;
  border-color: #AE875B;
  box-shadow: 0 0 0 3px rgba(255, 190, 51, 0.1);
}
.contact_section .form_container .form-control.message-box {
  height: 120px;
  padding-top: 15px;
  resize: vertical;
  min-height: 120px;
}
.contact_section .form_container select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}
.contact_section .form_container select.form-control:invalid, .contact_section .form_container select.form-control[value=""] {
  color: rgba(0, 0, 0, 0.4);
}
.contact_section .form_container select.form-control:valid:not([value=""]) {
  color: #000000;
}
.contact_section .form_container select.form-control option {
  color: #000000;
}
.contact_section .form_container select.form-control option:disabled {
  color: rgba(0, 0, 0, 0.4);
}
.contact_section .form_container .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 40px;
  background-color: #AE875B;
  color: #ffffff;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
}
.contact_section .form_container button:hover {
  background-color: rgb(150.7795918367, 114.9234693878, 74.4704081633);
}
.contact_section .form_container button {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact_section .form_container button i {
  font-size: 14px;
}
.contact_section .form_container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 190, 51, 0.4);
}
.contact_section .form_container button:active {
  transform: translateY(0);
}
.contact_section .contact_info {
  padding-left: 30px;
}
.contact_section .contact_info .info_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: #000000;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(174, 135, 91, 0.1);
  position: relative;
  overflow: hidden;
}
.contact_section .contact_info .info_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #AE875B, #F1D6B0);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.contact_section .contact_info .info_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(174, 135, 91, 0.3);
}
.contact_section .contact_info .info_item:hover::before {
  transform: scaleY(1);
}
.contact_section .contact_info .info_item:hover .info_icon {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(174, 135, 91, 0.4);
}
.contact_section .contact_info .info_item .info_icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #AE875B, rgb(143.2489795918, 109.1836734694, 70.7510204082));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(174, 135, 91, 0.2);
}
.contact_section .contact_info .info_item .info_icon i {
  color: #ffffff;
  font-size: 20px;
}
.contact_section .contact_info .info_item .info_detail {
  flex: 1;
}
.contact_section .contact_info .info_item .info_detail h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.contact_section .contact_info .info_item .info_detail p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px 0;
  line-height: 1.6;
  font-size: 14px;
}
.contact_section .contact_info .info_item .info_detail p.notice {
  color: #AE875B;
  font-style: italic;
  font-size: 13px;
  margin-bottom: 15px;
}
.contact_section .contact_info .info_item .info_detail .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #AE875B;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(174, 135, 91, 0.1);
}
.contact_section .contact_info .info_item .info_detail .contact-link i {
  font-size: 11px;
}
.contact_section .contact_info .info_item .info_detail .contact-link:hover {
  background: rgba(174, 135, 91, 0.2);
  color: rgb(190.8612244898, 159.9795918367, 125.1387755102);
  text-decoration: none;
  transform: translateX(3px);
}
.contact_section .contact_info .info_item .info_detail .hours-list {
  margin-top: 12px;
}
.contact_section .contact_info .info_item .info_detail .hours-list .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact_section .contact_info .info_item .info_detail .hours-list .hours-item:last-child {
  border-bottom: none;
}
.contact_section .contact_info .info_item .info_detail .hours-list .hours-item .day {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}
.contact_section .contact_info .info_item .info_detail .hours-list .hours-item .time {
  color: #AE875B;
  font-weight: 600;
  font-size: 13px;
}

/* ===================================================================
   FOOTER SECTION
   =================================================================== */
.footer_section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 0 0;
  position: relative;
}
.footer_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #AE875B 50%, transparent 100%);
}
.footer_section .footer-main {
  padding-bottom: 40px;
  border-bottom: 1px solid #222222;
}
.footer_section .footer-col {
  margin-bottom: 30px;
}
.footer_section h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-weight: 600;
  color: #AE875B;
  margin-bottom: 25px;
  position: relative;
}
.footer_section h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #AE875B;
}
.footer_section .footer-brand .footer-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  color: #AE875B;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.footer_section .footer-brand .footer-logo:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(174, 135, 91, 0.6);
}
.footer_section .footer-brand .footer-logo span {
  letter-spacing: 2px;
}
.footer_section .footer-brand .footer-tagline {
  color: #AE875B;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: -10px;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}
.footer_section .footer-brand .footer-tagline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #AE875B, transparent);
}
.footer_section .footer-brand .brand-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 14px;
}
.footer_section .footer-brand .footer-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer_section .footer-brand .footer-stats .stat-item {
  text-align: center;
}
.footer_section .footer-brand .footer-stats .stat-item .stat-number {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #AE875B;
}
.footer_section .footer-brand .footer-stats .stat-item .stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.footer_section .footer-brand .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.footer_section .footer-brand .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(174, 135, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.footer_section .footer-brand .footer-social a i {
  color: #AE875B;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer_section .footer-brand .footer-social a:hover {
  background: #AE875B;
  border-color: #AE875B;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(174, 135, 91, 0.4);
}
.footer_section .footer-brand .footer-social a:hover i {
  color: #ffffff;
}
.footer_section .footer-brand .footer-social a:active {
  transform: translateY(-1px);
}
.footer_section .footer-links .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_section .footer-links .link-list li {
  margin-bottom: 12px;
}
.footer_section .footer-links .link-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}
.footer_section .footer-links .link-list li a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #AE875B;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.footer_section .footer-links .link-list li a:hover {
  color: #AE875B;
  padding-left: 20px;
}
.footer_section .footer-links .link-list li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer_section .footer-collections .collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.footer_section .footer-collections .collection-grid .collection-item {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(174, 135, 91, 0.3);
  transition: all 0.3s ease;
}
.footer_section .footer-collections .collection-grid .collection-item:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #AE875B;
  transform: translateY(-2px);
}
.footer_section .footer-collections .collection-grid .collection-item:hover i {
  color: #AE875B;
  transform: scale(1.1);
}
.footer_section .footer-collections .collection-grid .collection-item i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.footer_section .footer-collections .collection-grid .collection-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}
.footer_section .footer-contact .contact-items .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(174, 135, 91, 0.2);
  border-left: 3px solid rgba(174, 135, 91, 0.3);
  transition: all 0.3s ease;
}
.footer_section .footer-contact .contact-items .contact-item:hover {
  background: rgba(0, 0, 0, 0.7);
  border-left-color: #AE875B;
}
.footer_section .footer-contact .contact-items .contact-item:hover i {
  color: #AE875B;
  transform: scale(1.1);
}
.footer_section .footer-contact .contact-items .contact-item i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  margin-right: 15px;
  margin-top: 2px;
  transition: all 0.3s ease;
  min-width: 20px;
}
.footer_section .footer-contact .contact-items .contact-item .contact-text {
  display: flex;
  flex-direction: column;
}
.footer_section .footer-contact .contact-items .contact-item .contact-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}
.footer_section .footer-contact .contact-items .contact-item .contact-text span:first-child {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2px;
}
.footer_section .footer-bottom {
  padding: 5px 0;
  border-top: 1px solid rgba(174, 135, 91, 0.1);
}
.footer_section .footer-bottom .footer-copyright {
  text-align: center;
}
.footer_section .footer-bottom .footer-copyright p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.6;
}
.footer_section .footer-bottom .footer-copyright .footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer_section .footer-bottom .footer-copyright .footer-link:hover {
  color: #AE875B;
}
.footer_section .footer-bottom .footer-copyright #displayYear {
  color: rgba(255, 255, 255, 0.8);
}
.footer_section .footer-bottom .footer-copyright .developer-credit {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.footer_section .footer-bottom .footer-copyright .developer-credit .dev-link {
  color: #AE875B;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer_section .footer-bottom .footer-copyright .developer-credit .dev-link:hover {
  color: #ffffff;
}

/* ===================================================================
   AUTHENTICATION SECTIONS
   =================================================================== */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
.auth-buttons .auth-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.auth-buttons .auth-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.auth-buttons .auth-btn:hover::before {
  left: 100%;
}
.auth-buttons .auth-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.auth-buttons .auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.auth-buttons .auth-btn:hover i {
  transform: scale(1.1);
}
.auth-buttons .auth-btn.login-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.auth-buttons .auth-btn.login-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.auth-buttons .auth-btn.login-btn.active {
  background: linear-gradient(135deg, #AE875B, rgb(143.2489795918, 109.1836734694, 70.7510204082));
  border-color: #AE875B;
  box-shadow: 0 4px 15px rgba(174, 135, 91, 0.3);
}
.auth-buttons .auth-btn.signup-btn {
  background: linear-gradient(135deg, #AE875B, rgb(143.2489795918, 109.1836734694, 70.7510204082));
  color: #ffffff;
  border-color: #AE875B;
}
.auth-buttons .auth-btn.signup-btn:hover {
  background: linear-gradient(135deg, rgb(190.8612244898, 159.9795918367, 125.1387755102), #AE875B);
  color: #ffffff;
}
.auth-buttons .auth-btn.signup-btn.active {
  background: linear-gradient(135deg, rgb(199.2918367347, 172.4693877551, 142.2081632653), rgb(182.4306122449, 147.4897959184, 108.0693877551));
  box-shadow: 0 4px 15px rgba(174, 135, 91, 0.4);
}

.auth_section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, #ffffff 100%);
  position: relative;
}
.auth_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #AE875B 50%, transparent 100%);
}

.auth_container {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.auth_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #AE875B, #F1D6B0);
}

.auth_header {
  text-align: center;
  padding: 40px 40px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), #ffffff);
}
.auth_header .auth_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #AE875B, rgb(143.2489795918, 109.1836734694, 70.7510204082));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(174, 135, 91, 0.3);
}
.auth_header .auth_icon i {
  font-size: 32px;
  color: #ffffff;
}
.auth_header h2 {
  color: #000000;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.auth_header p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.auth_form {
  padding: 20px 40px 40px;
}
.auth_form .form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.auth_form .form_group {
  margin-bottom: 25px;
}
.auth_form .input_wrapper {
  position: relative;
}
.auth_form .input_wrapper .input_icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  z-index: 2;
  transition: color 0.3s ease;
}
.auth_form .input_wrapper .form_control {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid rgba(174, 135, 91, 0.2);
  border-radius: 12px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.97);
  transition: all 0.3s ease;
  outline: none;
}
.auth_form .input_wrapper .form_control::placeholder {
  color: transparent;
  transition: color 0.3s ease;
}
.auth_form .input_wrapper .form_control:focus {
  border-color: #AE875B;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(174, 135, 91, 0.1);
}
.auth_form .input_wrapper .form_control:focus::placeholder {
  color: transparent;
}
.auth_form .input_wrapper .form_control:focus + .form_label {
  color: #AE875B;
  transform: translateY(-30px) scale(0.85);
  background: #ffffff;
  padding: 0 8px;
}
.auth_form .input_wrapper .form_control:focus ~ .input_icon {
  color: #AE875B;
}
.auth_form .input_wrapper .form_control:not(:placeholder-shown) + .form_label {
  transform: translateY(-30px) scale(0.85);
  color: #AE875B;
  background: #ffffff;
  padding: 0 8px;
}
.auth_form .input_wrapper .form_control:not(:focus):placeholder-shown + .form_label {
  opacity: 0;
  transform: translateY(-50%);
}
.auth_form .input_wrapper .form_control:not(:focus):placeholder-shown::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.auth_form .input_wrapper .form_label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(0, 0, 0, 0.4);
  font-size: 15px;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 3;
  opacity: 1;
}
.auth_form .input_wrapper .password_toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease;
}
.auth_form .input_wrapper .password_toggle:hover {
  color: #AE875B;
}
.auth_form .password_strength {
  margin-top: 8px;
}
.auth_form .password_strength .strength_bar {
  height: 4px;
  background: rgba(174, 135, 91, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}
.auth_form .password_strength .strength_bar .strength_fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff4757, #ffa502, #2ed573);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.auth_form .password_strength .strength_text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
.auth_form .form_options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
.auth_form .form_options .remember_me,
.auth_form .form_options .terms_checkbox,
.auth_form .form_options .newsletter_checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth_form .form_options .remember_me .custom_checkbox,
.auth_form .form_options .terms_checkbox .custom_checkbox,
.auth_form .form_options .newsletter_checkbox .custom_checkbox {
  width: 18px;
  height: 18px;
  accent-color: #AE875B;
}
.auth_form .form_options .remember_me label,
.auth_form .form_options .terms_checkbox label,
.auth_form .form_options .newsletter_checkbox label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.auth_form .form_options .forgot_password,
.auth_form .form_options .terms_link {
  color: #AE875B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.auth_form .form_options .forgot_password:hover,
.auth_form .form_options .terms_link:hover {
  color: rgb(126.1795918367, 96.1734693878, 62.3204081633);
  text-decoration: underline;
}
.auth_form .preferences_section .section_label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}
.auth_form .preferences_section .preference_options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.auth_form .preferences_section .preference_options .preference_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.auth_form .preferences_section .preference_options .preference_item:hover {
  background: rgba(241, 214, 176, 0.2);
  border-color: rgba(174, 135, 91, 0.3);
}
.auth_form .preferences_section .preference_options .preference_item .custom_checkbox {
  width: 16px;
  height: 16px;
  accent-color: #AE875B;
}
.auth_form .preferences_section .preference_options .preference_item label {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  font-weight: 500;
}
.auth_form .auth_btn_submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #AE875B, rgb(143.2489795918, 109.1836734694, 70.7510204082));
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.auth_form .auth_btn_submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.auth_form .auth_btn_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(174, 135, 91, 0.4);
}
.auth_form .auth_btn_submit:hover::before {
  left: 100%;
}
.auth_form .auth_btn_submit:active {
  transform: translateY(0);
}
.auth_form .auth_btn_submit .btn_loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.auth_form .auth_divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}
.auth_form .auth_divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(174, 135, 91, 0.2);
}
.auth_form .auth_divider span {
  background: #ffffff;
  padding: 0 20px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.auth_form .social_auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}
.auth_form .social_auth .social_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid rgba(174, 135, 91, 0.2);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.auth_form .social_auth .social_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.auth_form .social_auth .social_btn.google_btn {
  color: #db4437;
}
.auth_form .social_auth .social_btn.google_btn:hover {
  border-color: #db4437;
  background: rgba(219, 68, 55, 0.05);
}
.auth_form .social_auth .social_btn.facebook_btn {
  color: #4267B2;
}
.auth_form .social_auth .social_btn.facebook_btn:hover {
  border-color: #4267B2;
  background: rgba(66, 103, 178, 0.05);
}
.auth_form .social_auth .social_btn i {
  font-size: 16px;
}
.auth_form .auth_footer {
  text-align: center;
}
.auth_form .auth_footer p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin: 0;
}
.auth_form .auth_footer .auth_link {
  color: #AE875B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.auth_form .auth_footer .auth_link:hover {
  color: rgb(126.1795918367, 96.1734693878, 62.3204081633);
  text-decoration: underline;
}

/* ===================================================================
   ACQUISTION SECTION
   =================================================================== */
/* Delivery Note Style */
.summary_note {
  margin-top: 15px;
  margin-bottom: 5px;
  padding: 12px;
  background-color: rgba(241, 214, 176, 0.3);
  border-radius: 8px;
  border-left: 4px solid #AE875B;
}
.summary_note p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}
.summary_note p::before {
  content: "\f05a";
  /* Info circle icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #AE875B;
}

/* ===================================================================
   UTILITY COMPONENTS
   =================================================================== */
/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #AE875B, #AE875B);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.8);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-to-top:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.15s ease;
}
.scroll-to-top:hover i {
  transform: scale(1.1);
}
.scroll-to-top:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.05s ease;
}
.scroll-to-top i {
  transition: transform 0.15s ease;
  font-weight: bold;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  animation: whatsappFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}
.whatsapp-float .whatsapp-icon {
  color: #ffffff;
  font-size: 24px;
  z-index: 2;
  position: relative;
}
.whatsapp-float .whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s infinite;
}

/* Instagram Floating Button */
.instagram-float {
  position: fixed;
  bottom: 170px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
  text-decoration: none;
  animation: instagramFloat 3s ease-in-out infinite;
}
.instagram-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(228, 64, 95, 0.4);
  text-decoration: none;
}
.instagram-float .instagram-icon {
  color: #ffffff;
  font-size: 24px;
  z-index: 2;
  position: relative;
}
.instagram-float .instagram-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(228, 64, 95, 0.3);
  animation: instagramPulse 2s infinite;
}

/* TikTok Floating Button */
.tiktok-float {
  position: fixed;
  bottom: 240px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #000000 0%, #00f2ea 50%, #ff0050 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 242, 234, 0.3);
  text-decoration: none;
  animation: tiktokFloat 3s ease-in-out infinite;
}
.tiktok-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 242, 234, 0.4);
  text-decoration: none;
}
.tiktok-float .tiktok-icon {
  color: #ffffff;
  font-size: 24px;
  z-index: 2;
  position: relative;
}
.tiktok-float .tiktok-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(105, 201, 208, 0.3);
  animation: tiktokPulse 2s infinite;
}

/* ===================================================================
   KEYFRAME ANIMATIONS
   =================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes instagramFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes instagramPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes tiktokFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes tiktokPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes cartBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* ===================================================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   =================================================================== */
/* ===================================================================
   EXTRA SMALL DEVICES (Portrait Phones, less than 576px)
   =================================================================== */
@media (max-width: 575px) {
  /* Global adjustments */
  .layout_padding {
    padding: 30px 0;
  }
  .layout_padding2 {
    padding: 50px 0;
  }
  /* Header adjustments */
  .navbar-brand .logo-img {
    width: 70px;
    height: 70px;
    max-width: 100px;
    max-height: 100px;
  }
  .navbar-brand .logo-img:hover {
    transform: translateZ(0) scale(1.05);
  }
  /* Slider section */
  .slider_section .detail-box h1 {
    font-size: 1.5rem;
  }
  /* Floating buttons - all same size on mobile */
  .whatsapp-float,
  .instagram-float,
  .tiktok-float,
  .scroll-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
  }
  .whatsapp-float .whatsapp-icon,
  .whatsapp-float .instagram-icon,
  .whatsapp-float .tiktok-icon,
  .whatsapp-float i,
  .instagram-float .whatsapp-icon,
  .instagram-float .instagram-icon,
  .instagram-float .tiktok-icon,
  .instagram-float i,
  .tiktok-float .whatsapp-icon,
  .tiktok-float .instagram-icon,
  .tiktok-float .tiktok-icon,
  .tiktok-float i,
  .scroll-to-top .whatsapp-icon,
  .scroll-to-top .instagram-icon,
  .scroll-to-top .tiktok-icon,
  .scroll-to-top i {
    font-size: 20px;
  }
  .scroll-to-top {
    bottom: 20px;
  }
  .whatsapp-float {
    bottom: 75px;
  }
  .instagram-float {
    bottom: 130px;
  }
  .tiktok-float {
    bottom: 185px;
  }
  /* Food section */
  .food_section .heading_container h2 {
    font-size: 2rem;
  }
  .food_section .filters_menu {
    gap: 8px;
    margin: 25px 0 35px 0;
  }
  .food_section .filters_menu li {
    padding: 10px 15px;
    font-size: 11px;
  }
  /* Product card buttons - stack vertically on mobile */
  .food_section .box .cart_actions {
    flex-direction: column;
    gap: 8px;
  }
  .food_section .box .cart_actions .btn_cart,
  .food_section .box .cart_actions .btn_details {
    width: 100%;
    font-size: 11px;
    padding: 10px 12px;
  }
  .food_section .box .cart_actions .btn_cart i,
  .food_section .box .cart_actions .btn_details i {
    font-size: 11px;
  }
  .food_section .box .cart_actions .btn_cart.primary {
    box-shadow: 0 4px 15px rgba(174, 135, 91, 0.4);
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .food_section .box .cart_actions .btn_cart.primary:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(174, 135, 91, 0.3);
  }
  .food_section .box .cart_actions .btn_details {
    min-width: auto;
  }
  /* Auth form - single column on mobile */
  .auth_form .form_row {
    grid-template-columns: 1fr;
  }
  .preferences_section .preference_options {
    grid-template-columns: 1fr;
  }
  /* Footer adjustments */
  .footer_section {
    padding: 40px 0 0 0;
  }
  .footer_section .footer-col {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer_section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer_section .footer-stats {
    justify-content: center;
  }
  .footer_section .footer-social {
    justify-content: center;
  }
  .footer_section .footer-contact .contact-items {
    max-width: 400px;
    margin: 0 auto;
  }
  .footer_section .collection-grid {
    grid-template-columns: 1fr;
  }
  .footer_section .footer-bottom {
    padding: 25px 0;
  }
  .footer_section .footer-bottom .footer-social-center {
    margin-bottom: 25px;
  }
  .footer_section .footer-bottom .footer-social-center h5 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer_section .footer-bottom .footer-social-center .social-links {
    gap: 10px;
    justify-content: center;
  }
  .footer_section .footer-bottom .footer-social-center .social-links .social-link {
    padding: 10px 14px;
    font-size: 13px;
  }
  .footer_section .footer-bottom .footer-social-center .social-links .social-link i {
    font-size: 14px;
  }
  .footer_section .footer-bottom .footer-social-center .social-links .social-link span {
    font-size: 12px;
  }
  .footer_section .footer-bottom .footer-copyright {
    text-align: center;
  }
  .footer_section .footer-bottom .footer-copyright p {
    font-size: 12px;
  }
  .footer_section .footer-bottom .footer-copyright p.footer-tagline {
    font-size: 11px;
  }
}
/* ===================================================================
   SMALL DEVICES (Landscape Phones, 576px and up)
   =================================================================== */
@media (min-width: 576px) and (max-width: 767px) {
  /* Header adjustments */
  .navbar-brand .logo-img {
    width: 85px;
    height: 85px;
    max-width: 120px;
    max-height: 120px;
  }
  .navbar-brand .logo-img:hover {
    transform: translateZ(0) scale(1.05);
  }
  /* Floating buttons */
  .whatsapp-float,
  .instagram-float,
  .tiktok-float,
  .scroll-to-top {
    width: 45px;
    height: 45px;
    right: 20px;
  }
  .whatsapp-float .whatsapp-icon,
  .whatsapp-float .instagram-icon,
  .whatsapp-float .tiktok-icon,
  .whatsapp-float i,
  .instagram-float .whatsapp-icon,
  .instagram-float .instagram-icon,
  .instagram-float .tiktok-icon,
  .instagram-float i,
  .tiktok-float .whatsapp-icon,
  .tiktok-float .instagram-icon,
  .tiktok-float .tiktok-icon,
  .tiktok-float i,
  .scroll-to-top .whatsapp-icon,
  .scroll-to-top .instagram-icon,
  .scroll-to-top .tiktok-icon,
  .scroll-to-top i {
    font-size: 20px;
  }
  .tiktok-float {
    bottom: 200px;
  }
  .instagram-float {
    bottom: 135px;
  }
  .whatsapp-float {
    bottom: 80px;
  }
  /* Food section */
  .food_section .filters_menu {
    gap: 10px;
  }
  .food_section .filters_menu li {
    padding: 12px 20px;
    font-size: 12px;
  }
  /* Auth form - two columns */
  .auth_form .form_row {
    grid-template-columns: 1fr 1fr;
  }
  .preferences_section .preference_options {
    grid-template-columns: 1fr 1fr;
  }
}
/* ===================================================================
   MEDIUM DEVICES (Tablets, 768px and up)
   =================================================================== */
@media (min-width: 768px) and (max-width: 991px) {
  /* About and Book sections */
  .about_section .detail-box,
  .book_section .form_container {
    margin-bottom: 45px;
  }
  .about_section .row {
    flex-direction: column-reverse;
  }
  /* Offer section - revert to row layout for tablets */
  .offer_section .box {
    flex-direction: row;
    text-align: left;
  }
  .offer_section .box .img-box {
    margin-right: 15px;
    margin-bottom: 0;
  }
  /* Food section */
  .food_section .heading_container {
    margin-bottom: 40px;
  }
  .food_section .heading_container h2 {
    font-size: 2rem;
  }
  .food_section .filters_menu {
    gap: 10px;
    margin: 30px 0 40px 0;
  }
  .food_section .filters_menu li {
    padding: 10px 20px;
    font-size: 12px;
    gap: 6px;
  }
  .food_section .filters_menu li i {
    font-size: 14px;
  }
  /* Reviews section */
  .client_section .review-card {
    min-height: 350px;
    padding: 25px 20px;
  }
  .client_section .review-card .customer-info .customer-avatar {
    width: 45px;
    height: 45px;
  }
  .client_section .review-card .customer-info .customer-avatar span {
    font-size: 14px;
  }
  /* Contact section */
  .contact_section .contact_info {
    padding-left: 0;
    margin-top: 40px;
  }
  .contact_section .form_container {
    padding: 30px 20px;
  }
  .contact_section .form_container .form-title {
    font-size: 20px;
  }
  .contact_section .contact_info .info_item {
    padding: 20px;
  }
  .contact_section .contact_info .info_item .info_icon {
    width: 50px;
    height: 50px;
  }
  .contact_section .contact_info .info_item .info_icon i {
    font-size: 18px;
  }
  /* Client section */
  .client_section .box {
    height: 320px;
    margin: 10px 5px;
  }
  .client_section .box .detail-box {
    padding: 15px 20px 20px;
  }
  .client_section .box .detail-box p {
    font-size: 14px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .client_section .box .detail-box h6 {
    font-size: 16px;
  }
  /* Footer adjustments */
  .footer_section .footer-stats {
    justify-content: center;
  }
  .footer_section .collection-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================================================
   LARGE DEVICES (Desktops, 992px and up)
   =================================================================== */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Container adjustments */
  .container {
    max-width: 960px;
  }
  /* Navigation adjustments */
  .custom_nav-container .navbar-nav {
    padding-top: 0;
    padding-left: 0;
    flex-direction: row;
    gap: 8px;
  }
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 20px;
    margin: 0;
  }
  .user_option {
    justify-content: flex-end;
    margin-top: 0;
  }
  /* Hero area adjustment */
  .hero_area {
    min-height: 100vh;
  }
  /* Slider indicators */
  .slider_section .carousel-indicators {
    margin-top: 30px;
  }
}
/* ===================================================================
   EXTRA LARGE DEVICES (Large Desktops, 1200px and up)
   =================================================================== */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
/* ===================================================================
   NAVIGATION RESPONSIVE BREAKPOINTS
   =================================================================== */
/* Mobile Navigation (up to 991px) */
@media (max-width: 991px) {
  /* Hero area adjustment for mobile */
  .hero_area {
    min-height: 70vh;
  }
  .hero_area .bg-box img {
    object-position: center center;
  }
  /* Food section heading */
  .food_section .heading_container h2 {
    font-size: 2.5rem;
  }
  /* About section */
  .about_section .about-cards {
    margin-top: 40px;
  }
  .about_section .about-cards .about-card {
    margin-bottom: 20px;
  }
  /* Contact section */
  .contact_section .contact_info {
    padding-left: 0;
    margin-top: 40px;
  }
  /* Floating buttons - tablet responsive */
  .whatsapp-float,
  .instagram-float,
  .tiktok-float {
    right: 20px;
  }
  /* Navigation adjustments */
  .custom_nav-container .navbar-nav {
    flex-direction: column;
    gap: 5px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .custom_nav-container .navbar-nav .nav-item {
    width: 100%;
  }
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    margin: 0 15px;
    padding: 15px 25px;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
  }
  .custom_nav-container .navbar-nav .nav-item .nav-link:hover, .custom_nav-container .navbar-nav .nav-item .nav-link.active {
    background: rgba(174, 135, 91, 0.1);
    transform: translateX(10px);
  }
  /* User options mobile layout */
  .user_option {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
  }
  .user_option .auth_buttons {
    order: 1;
    gap: 8px;
    margin: 0;
    width: 100%;
  }
  .user_option .auth_buttons .login_btn,
  .user_option .auth_buttons .signup_btn {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
    min-width: auto;
  }
  .user_option .cart_link {
    order: 2;
    margin: 0;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: auto;
    height: auto;
  }
  .user_option .cart_link i {
    font-size: 18px;
  }
  .user_option .order_online {
    order: 3;
    width: 100%;
    text-align: center;
    padding: 10px 25px;
    font-size: 14px;
  }
  .user_option .order_online a {
    display: block;
    width: 100%;
  }
  /* Authentication buttons mobile */
  .auth-buttons {
    margin-left: 0;
    margin-top: 20px;
    justify-content: center;
  }
  .auth-buttons .auth-btn {
    flex: 1;
    justify-content: center;
    max-width: 150px;
  }
}
/* Tablet and medium devices */
@media (max-width: 768px) {
  /* Floating buttons - align properly on tablets */
  .whatsapp-float {
    bottom: 90px;
  }
  .instagram-float {
    bottom: 155px;
  }
  .tiktok-float {
    bottom: 220px;
  }
  /* Cart Page*/
  .cart_section .cart_container .cart_content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cart_section .cart_container .cart_content .cart_items .cart_item {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  .cart_section .cart_container .cart_content .cart_items .cart_item .item_details {
    order: 1;
  }
  .cart_section .cart_container .cart_content .cart_items .cart_item .item_image {
    order: 2;
    justify-self: center;
  }
  .cart_section .cart_container .cart_content .cart_items .cart_item .item_quantity {
    order: 3;
    justify-self: center;
  }
  .cart_section .cart_container .cart_content .cart_items .cart_item .item_total {
    order: 4;
  }
  .cart_section .cart_container .cart_content .cart_items .cart_item .item_remove {
    order: 5;
    justify-self: center;
  }
}
/* Very small mobile devices */
@media (max-width: 430px) {
  /* Offer section - switch to column layout */
  .offer_section .box {
    flex-direction: column;
    text-align: center;
  }
  .offer_section .box .img-box {
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* User option adjustments */
  .user_option .auth_buttons .login_btn,
  .user_option .auth_buttons .signup_btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  .user_option .auth_buttons .login_btn span,
  .user_option .auth_buttons .signup_btn span {
    display: none;
  }
  .user_option .auth_buttons .login_btn i,
  .user_option .auth_buttons .signup_btn i {
    font-size: 13px;
  }
  /* Floating buttons - adjust for small screens */
  .whatsapp-float,
  .instagram-float,
  .tiktok-float {
    right: 15px;
    width: 45px;
    height: 45px;
  }
  .whatsapp-float .whatsapp-icon,
  .whatsapp-float .instagram-icon,
  .whatsapp-float .tiktok-icon,
  .instagram-float .whatsapp-icon,
  .instagram-float .instagram-icon,
  .instagram-float .tiktok-icon,
  .tiktok-float .whatsapp-icon,
  .tiktok-float .instagram-icon,
  .tiktok-float .tiktok-icon {
    font-size: 20px;
  }
  .whatsapp-float {
    bottom: 80px;
  }
  .instagram-float {
    bottom: 140px;
  }
  .tiktok-float {
    bottom: 200px;
  }
}
/* Legacy responsive support for specific screen sizes */
@media (max-width: 376px) {
  .slider_section .detail-box h1 {
    font-size: 1.3rem;
  }
}
/* ===================================================================
   GRID SYSTEM RESPONSIVE ADJUSTMENTS
   =================================================================== */
/* Rent solution grid for medium devices */
@media (min-width: 576px) and (max-width: 991px) {
  .rent_solution_container .col-md-4.col-sm-6 {
    float: left;
    width: 50%;
  }
}
/* ===================================================================
   PRINT STYLES
   =================================================================== */
@media print {
  /* Hide non-essential elements for printing */
  .navbar,
  .footer_section,
  .whatsapp-float,
  .instagram-float,
  .scroll-to-top,
  .cart_link,
  .user_option {
    display: none !important;
  }
  /* Optimize colors for printing */
  .hero_area,
  .about_section,
  .client_section .box,
  .contact_section .form_container,
  .footer_section {
    background: white !important;
    color: black !important;
  }
  /* Ensure good contrast */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: black !important;
  }
}
/* ===================================================================
   HIGH DPI / RETINA DISPLAYS
   =================================================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Optimize images for high DPI displays */
  .bg-box img,
  .img-box img,
  .main_image img,
  .thumb_img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
/* ===================================================================
   ACCESSIBILITY IMPROVEMENTS
   =================================================================== */
/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .whatsapp-float,
  .tiktok-float {
    bottom: 200px;
  }
  .instagram-float {
    animation: none !important;
  }
  .whatsapp-pulse,
  .instagram-pulse {
    animation: none !important;
  }
}
/* High contrast mode support */
@media (prefers-contrast: high) {
  /* Increase contrast for better accessibility */
  .nav-link,
  .user_link,
  .footer-links a {
    border: 1px solid currentColor;
  }
  .btn,
  .hero_btn,
  .auth-btn {
    border: 2px solid currentColor !important;
  }
}
/* ===================================================================
   FOCUS AND KEYBOARD NAVIGATION IMPROVEMENTS
   =================================================================== */
/* Enhanced focus styles for keyboard navigation */
.nav-link:focus,
.btn:focus,
.form-control:focus,
.auth-btn:focus {
  outline: 3px solid #AE875B;
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #AE875B;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
}
.skip-link:focus {
  top: 6px;
}

/* ===================================================================
   END OF STYLES
   =================================================================== */
.product_details_section {
  background-color: #f8f9fa;
}
.product_details_section .product_images .main_image_container {
  position: relative;
  margin-bottom: 30px;
}
.product_details_section .product_images .image_badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #AE875B, #F1D6B0);
  color: #fff;
  padding: 8px 12px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(174, 135, 91, 0.3);
  backdrop-filter: blur(10px);
}
.product_details_section .product_images .image_badge i {
  margin-right: 5px;
}
.product_details_section .product_images .main_image {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(174, 135, 91, 0.05), rgba(241, 214, 176, 0.1));
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 3px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
}
.product_details_section .product_images .main_image::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #AE875B, #F1D6B0, #AE875B);
  border-radius: 15px;
  z-index: -1;
}
.product_details_section .product_images .main_image img {
  width: 100%;
  max-width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.product_details_section .product_images .main_image img:hover {
  transform: scale(1.05);
}
.product_details_section .product_images .image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(174, 135, 91, 0.8), rgba(241, 214, 176, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 8px;
  z-index: 5;
  cursor: pointer;
}
.product_details_section .product_images .image_overlay:hover {
  opacity: 1;
}
.product_details_section .product_images .zoom_icon {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.main_image:hover .product_details_section .product_images .zoom_icon {
  transform: scale(1);
}
.product_details_section .product_images .image_indicators {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  gap: 15px;
}
.product_details_section .product_images .quality_indicator,
.product_details_section .product_images .freshness_indicator {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, rgba(174, 135, 91, 0.1), rgba(241, 214, 176, 0.1));
  border-radius: 8px;
  font-size: 12px;
  color: #AE875B;
  font-weight: 600;
  border: 1px solid rgba(174, 135, 91, 0.2);
}
.product_details_section .product_images .quality_indicator i,
.product_details_section .product_images .freshness_indicator i {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}
.product_details_section .product_images .thumbnail_section {
  background: linear-gradient(135deg, rgba(174, 135, 91, 0.05), rgba(241, 214, 176, 0.05));
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(174, 135, 91, 0.1);
}
.product_details_section .product_images .thumbnail_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(174, 135, 91, 0.1);
}
.product_details_section .product_images .thumbnail_header h6 {
  color: #AE875B;
  font-weight: 700;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product_details_section .product_images .gallery_count {
  background: linear-gradient(135deg, #AE875B, #F1D6B0);
  color: #fff;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
}
.product_details_section .product_images .thumbnail_images {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.product_details_section .product_images .thumb_wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product_details_section .product_images .thumb_wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(174, 135, 91, 0.3);
}
.product_details_section .product_images .thumb_wrapper:hover .thumb_overlay {
  transform: translateY(0);
}
.product_details_section .product_images .thumb_wrapper.active .thumb_img {
  border-color: #AE875B;
  box-shadow: 0 0 20px rgba(174, 135, 91, 0.4);
  transform: scale(1.05);
}
.product_details_section .product_images .thumb_img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.product_details_section .product_images .thumb_img:hover {
  border-color: #F1D6B0;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(174, 135, 91, 0.3);
}
.product_details_section .product_images .thumb_img.active {
  border-color: #AE875B;
  box-shadow: 0 0 20px rgba(174, 135, 91, 0.4);
  transform: scale(1.05);
}
.product_details_section .product_images .thumb_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(174, 135, 91, 0.9), rgba(241, 214, 176, 0.9));
  color: #fff;
  padding: 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.product_details_section .product_info .product_category {
  margin-bottom: 15px;
}
.product_details_section .product_info .product_category .category_badge {
  background: linear-gradient(135deg, #AE875B, rgb(143.2489795918, 109.1836734694, 70.7510204082));
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product_details_section .product_info .product_title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}
.product_details_section .product_info .product_rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product_details_section .product_info .product_rating .stars {
  display: flex;
  gap: 2px;
}
.product_details_section .product_info .product_rating .stars i {
  color: #ffd700;
  font-size: 18px;
}
.product_details_section .product_info .product_rating .rating_text {
  color: #6c757d;
  font-size: 14px;
}
.product_details_section .product_info .product_price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.product_details_section .product_info .product_price .current_price {
  font-size: 2rem;
  font-weight: 700;
  color: #AE875B;
}
.product_details_section .product_info .product_price .original_price {
  font-size: 1.2rem;
  color: #6c757d;
  text-decoration: line-through;
}
.product_details_section .product_info .product_price .discount_badge {
  background: #e74c3c;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.product_details_section .product_info .product_description,
.product_details_section .product_info .product_ingredients,
.product_details_section .product_info .product_details_info {
  margin-bottom: 25px;
}
.product_details_section .product_info .product_description h3,
.product_details_section .product_info .product_ingredients h3,
.product_details_section .product_info .product_details_info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  border-bottom: 2px solid #F1D6B0;
  padding-bottom: 5px;
  display: inline-block;
}
.product_details_section .product_info .product_description p,
.product_details_section .product_info .product_ingredients p,
.product_details_section .product_info .product_details_info p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
.product_details_section .product_info .product_description ul,
.product_details_section .product_info .product_ingredients ul,
.product_details_section .product_info .product_details_info ul {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 0;
}
.product_details_section .product_info .product_description ul li,
.product_details_section .product_info .product_ingredients ul li,
.product_details_section .product_info .product_details_info ul li {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 5px;
  list-style-type: disc;
}
.product_details_section .product_info .ingredients_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product_details_section .product_info .ingredients_list .ingredient {
  background: #F1D6B0;
  color: rgb(159.6489795918, 121.6836734694, 78.8510204082);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #AE875B;
}
.product_details_section .product_info .product_options {
  margin-bottom: 25px;
}
.product_details_section .product_info .product_options h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  border-bottom: 2px solid #F1D6B0;
  padding-bottom: 5px;
  display: inline-block;
}
.product_details_section .product_info .product_options .option_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product_details_section .product_info .product_options .option_group .option_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product_details_section .product_info .product_options .option_group .option_item:hover {
  border-color: #AE875B;
  background-color: rgb(252.5161290323, 247.7258064516, 240.9838709677);
}
.product_details_section .product_info .product_options .option_group .option_item input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #AE875B;
}
.product_details_section .product_info .product_options .option_group .option_item label {
  flex: 1;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 500;
}
.product_details_section .product_info .product_options .option_group .option_item .option_price {
  font-weight: 600;
  color: #AE875B;
}
.product_details_section .product_info .product_options .option_group .option_item:has(input:checked) {
  border-color: #AE875B;
  background-color: rgb(249.8755102041, 247.4081632653, 244.6244897959);
}
.product_details_section .product_info .product_options .flavor_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.product_details_section .product_info .product_options .flavor_grid .flavor_item input[type=radio] {
  display: none;
}
.product_details_section .product_info .product_options .flavor_grid .flavor_item label {
  display: block;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.product_details_section .product_info .product_options .flavor_grid .flavor_item label:hover {
  border-color: #AE875B;
  background-color: rgb(252.5161290323, 247.7258064516, 240.9838709677);
}
.product_details_section .product_info .product_options .flavor_grid .flavor_item label .flavor_name {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}
.product_details_section .product_info .product_options .flavor_grid .flavor_item label .flavor_price {
  display: block;
  font-size: 14px;
  color: #AE875B;
  font-weight: 600;
}
.product_details_section .product_info .product_options .flavor_grid .flavor_item input:checked + label {
  border-color: #AE875B;
  background-color: rgb(249.8755102041, 247.4081632653, 244.6244897959);
  box-shadow: 0 0 10px rgba(174, 135, 91, 0.3);
}
.product_details_section .product_info .cart_controls {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}
.product_details_section .product_info .cart_controls .quantity_control {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.product_details_section .product_info .cart_controls .quantity_control label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0;
}
.product_details_section .product_info .cart_controls .quantity_control .quantity_input {
  display: flex;
  align-items: center;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}
.product_details_section .product_info .cart_controls .quantity_control .quantity_input .qty_btn {
  background: #AE875B;
  color: #ffffff;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.product_details_section .product_info .cart_controls .quantity_control .quantity_input .qty_btn:hover {
  background: rgb(143.2489795918, 109.1836734694, 70.7510204082);
}
.product_details_section .product_info .cart_controls .quantity_control .quantity_input input {
  border: none;
  padding: 12px 15px;
  width: 60px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
.product_details_section .product_info .cart_controls .quantity_control .quantity_input input:focus {
  outline: none;
}
.product_details_section .product_info .cart_controls .cart_buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.product_details_section .product_info .cart_controls .cart_buttons .add_to_cart_btn,
.product_details_section .product_info .cart_controls .cart_buttons .buy_now_btn {
  flex: 1;
  min-width: 200px;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.product_details_section .product_info .cart_controls .cart_buttons .add_to_cart_btn i,
.product_details_section .product_info .cart_controls .cart_buttons .buy_now_btn i {
  font-size: 18px;
}
.product_details_section .product_info .cart_controls .cart_buttons .add_to_cart_btn {
  background: #AE875B;
  color: #ffffff;
}
.product_details_section .product_info .cart_controls .cart_buttons .add_to_cart_btn:hover {
  background: rgb(143.2489795918, 109.1836734694, 70.7510204082);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(174, 135, 91, 0.3);
}
.product_details_section .product_info .cart_controls .cart_buttons .buy_now_btn {
  background: #28a745;
  color: #ffffff;
}
.product_details_section .product_info .cart_controls .cart_buttons .buy_now_btn:hover {
  background: rgb(30.1449275362, 125.8550724638, 52);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}
.product_details_section .product_info .product_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.product_details_section .product_info .product_features .feature_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: hsl(35.0769230769, 69.8924731183%, 101.7647058824%);
  border-radius: 8px;
  border-left: 4px solid #AE875B;
}
.product_details_section .product_info .product_features .feature_item i {
  color: #AE875B;
  font-size: 18px;
  min-width: 20px;
}
.product_details_section .product_info .product_features .feature_item span {
  font-size: 14px;
  color: #2c3e50;
  font-weight: 500;
}

.related_products_section {
  background-color: #ffffff;
}
.related_products_section .box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.related_products_section .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.related_products_section .box .img-box img {
  height: 200px;
  object-fit: cover;
}
.related_products_section .box .detail-box {
  padding: 20px;
}
.related_products_section .box .detail-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}
.related_products_section .box .detail-box p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 15px;
}
.related_products_section .box .detail-box .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.related_products_section .box .detail-box .options h6 {
  color: #AE875B;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}
.related_products_section .box .detail-box .options a {
  background: #AE875B;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.related_products_section .box .detail-box .options a:hover {
  background: rgb(143.2489795918, 109.1836734694, 70.7510204082);
  transform: scale(1.1);
}
.related_products_section .box .detail-box .options a i {
  font-size: 14px;
}

.image_zoom_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.image_zoom_modal.active {
  display: flex;
}
.image_zoom_modal .modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.image_zoom_modal .modal_content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10;
  animation: modalSlideIn 0.4s ease;
}
.image_zoom_modal .modal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(135deg, #AE875B, #F1D6B0);
  color: #fff;
}
.image_zoom_modal .modal_header h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}
.image_zoom_modal .modal_close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image_zoom_modal .modal_close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.image_zoom_modal .modal_image_container {
  position: relative;
  padding: 25px;
  background: #f8f9fa;
  text-align: center;
  overflow: hidden;
}
.image_zoom_modal .modal_image_container img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}
.image_zoom_modal .modal_image_container img.zoomed {
  cursor: zoom-out;
}
.image_zoom_modal .zoom_controls {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.image_zoom_modal .zoom_btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #AE875B, #F1D6B0);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(174, 135, 91, 0.3);
}
.image_zoom_modal .zoom_btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(174, 135, 91, 0.4);
}
.image_zoom_modal .modal_thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 25px;
  background: #fff;
  border-top: 1px solid rgba(174, 135, 91, 0.1);
}
.image_zoom_modal .modal_thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}
.image_zoom_modal .modal_thumb:hover {
  border-color: #F1D6B0;
  transform: scale(1.1);
}
.image_zoom_modal .modal_thumb.active {
  border-color: #AE875B;
  box-shadow: 0 0 15px rgba(174, 135, 91, 0.4);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (max-width: 768px) {
  .product_details_section .product_info .product_title {
    font-size: 2rem;
  }
  .product_details_section .product_info .product_price .current_price {
    font-size: 1.8rem;
  }
  .product_details_section .product_info .cart_controls .cart_buttons {
    flex-direction: column;
  }
  .product_details_section .product_info .cart_controls .cart_buttons .add_to_cart_btn,
  .product_details_section .product_info .cart_controls .cart_buttons .buy_now_btn {
    min-width: 100%;
  }
  .product_details_section .product_info .product_options .flavor_grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================================================
   CONFIRMATION DIALOG STYLES
   =================================================================== */
.confirm-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}
.confirm-dialog-overlay.show {
  display: flex;
}

.confirm-dialog-box {
  background: #ffffff;
  width: 90%;
  max-width: 400px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.confirm-dialog-icon {
  font-size: 50px;
  color: #AE875B;
  margin-bottom: 20px;
}

.confirm-dialog-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.confirm-dialog-message {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.confirm-dialog-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.confirm-dialog-buttons button {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}
.confirm-dialog-buttons button.confirm-dialog-cancel {
  background: #f1f1f1;
  color: #666;
}
.confirm-dialog-buttons button.confirm-dialog-cancel:hover {
  background: #e1e1e1;
}
.confirm-dialog-buttons button.confirm-dialog-confirm {
  background: #AE875B;
  color: #ffffff;
}
.confirm-dialog-buttons button.confirm-dialog-confirm:hover {
  background: rgb(143.2489795918, 109.1836734694, 70.7510204082);
}

/* Animations */
@keyframes dialogSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 575px) {
  .confirm-dialog-box {
    padding: 25px 20px;
    max-width: 95%;
  }
  .confirm-dialog-title {
    font-size: 24px;
  }
  .confirm-dialog-message {
    font-size: 14px;
  }
  .confirm-dialog-buttons {
    flex-direction: column;
  }
  .confirm-dialog-buttons .confirm-dialog-btn {
    width: 100%;
  }
  .confirm-dialog-buttons button {
    width: 100%;
  }
}

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