/* styles.css */
/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
  margin: 0;
  padding: 0;
  /* Initially leave space for full header height (primary + secondary) */
  margin-top: 165px;
  font-family: Arial, sans-serif;
  width: 100%
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #222;
  color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
/* You can include these styles in addition to your existing CSS if needed */
/* For our example, we remove any preset border color change from the input on focus. */
.checkout-options {
    background: #f9f9f9;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.checkout-options h4 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.checkout-options label {
    display: block;
    font-size: 15px;
    margin: 10px 0 4px;
    color: #555;
}
.checkout-options input[type="text"],
.checkout-options input[type="email"],
.checkout-options input[type="tel"],
.checkout-options input[type="number"],
.checkout-options select {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
    .checkout-container {
      max-width: 1000px;
      margin: 0 auto;
      background: #fff;
      padding: 20px 30px;
      border: 1px solid #ddd;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .checkout-container h2 {
      color: #333;
      margin-bottom: 20px;
      border-bottom: 2px solid #ddd;
      padding-bottom: 10px;
    }
    .checkout-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }
    .checkout-table th,
    .checkout-table td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      color: #555;
    }
    .checkout-table th {
      background: #f2f2f2;
      font-weight: bold;
    }
    .checkout-table tbody tr:hover {
      background: #fafafa;
    }
    .checkout-summary {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #ddd;
      padding-top: 20px;
    }
/* Form Fields Style */
#deliveryDetailsForm {
  margin-top: 15px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}
#deliveryDetailsForm label {
  font-size: 15px;
  margin: 10px 0 4px;
  display: block;
  color: #555;
}
#deliveryDetailsForm input[type="text"],
#deliveryDetailsForm input[type="email"],
#deliveryDetailsForm select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
/* Status message for address lookup */
#addressStatus {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}
.checkout-options {
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  padding: 15px;
  margin: 15px 0;
  width: 100%;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.checkout-options h3 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.checkout-options label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
}
.checkout-options input[type="radio"] {
  margin-right: 8px;
}
/* Payment icons for PayPal option */
.paypal-option .payment-icons {
  display: inline-flex;
  gap: 5px;
  margin-left: 10px;
  vertical-align: middle;
}
.paypal-option .payment-icons img {
  height: 20px;  /* Adjust icon height as needed */
  width: auto;
}
    .promo-code {
      flex: 1;
      min-width: 250px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .promo-code label {
      font-size: 14px;
      color: #333;
    }
    .promo-code input[type="text"] {
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 3px;
      font-size: 14px;
      flex: 1;
    }
    .promo-code .update-btn {
      padding: 8px 15px;
      background-color: #0066cc;
      color: #fff;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      font-size: 14px;
    }
    .promo-code .update-btn:hover {
      background-color: #005bb5;
    }
    .total-amount {
      flex: 1;
      min-width: 250px;
      text-align: right;
      font-size: 16px;
      color: #333;
    }
    .total-amount .amount {
      font-weight: bold;
      margin-left: 5px;
    }
    .confirm-btn {
      margin-top: 20px;
      padding: 12px 20px;
      background-color: #28a745;
      color: #fff;
      border: none;
      border-radius: 3px;
      font-size: 16px;
      cursor: pointer;
      width: 100%;
      max-width: 250px;
      display: block;
      margin-left: auto;
    }
    .confirm-btn:hover {
      background-color: #218838;
    }
    @media (max-width: 600px) {
      .checkout-summary {
        flex-direction: column;
        align-items: stretch;
      }
      .total-amount, .promo-code {
        text-align: left;
        margin-bottom: 15px;
      }
      .confirm-btn {
        width: 100%;
        max-width: none;
      }
    }
    .checkout-btn {
      width: 100%;
      background-color: #28a745; /* green color */
      color: white;
      border: none;
      border-radius: 5px;
      padding: 5px;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  margin-top: 20px;
    }
    .checkout-btn .cart-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      background-color: white; /* White background circle */
      border-radius: 50%;
      color: black; /* Icon becomes black */
      margin-right: 8px;
      font-size: 20px;
    }
/* Additional styles for the new layout */
/* Back-to-menu container (full width and centered) */
.back-to-menu {
width: 100%;
text-align: center;
padding: 15px 0;
margin-bottom: 20px;
background-color: #f2f2f2;
border-bottom: 1px solid #ddd;
}
.back-to-menu a {
text-decoration: none;
color: #D3B287;
font-weight: bold;
font-size: 18px;
}
.back-to-menu a:hover {
text-decoration: underline;
}
/* Main layout */
main {
padding: 20px;
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
background: #fff;
}
/* Desktop: split main area into a cart aside and a products container */
.desktop-content {
display: flex;
gap: 20px;
width: 100%;
}
aside.desktop-cart {
flex-basis: 25%;
background: #f9f9f9;
padding: 15px;
}
.products-container {
flex: 1;
background: #fafafa;
padding: 15px;
}
/* Mobile overrides */
@media (max-width: 768px) {
aside.desktop-cart {
display: none;
}
.products-container {
width: 100%;
}
details.mobile-cart {
display: block;
width: 100%;
margin-top: 20px;
}
}
@media (min-width: 769px) {
details.mobile-cart {
display: none;
}
}
/* Mobile collapsible shopping cart styling */
details.mobile-cart summary {
font-size: 18px;
font-weight: bold;
padding: 8px;
background: #ddd;
cursor: pointer;
border: 1px solid #aaa;
border-radius: 4px;
}
details.mobile-cart div.content {
padding: 10px;
border: 1px solid #aaa;
border-top: none;
background: #f9f9f9;
border-radius: 0 0 4px 4px;
}
/* Mobile Menu Overlay Styles */
#mobileMenuOverlay {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background: #333;         /* Deep grey background */
  border: 1px solid black;
  color: #D3B287;           /* Gold color for fonts */
  z-index: 3000;
  padding: 20px;
  box-sizing: border-box;
  /* Let height auto‐adjust based on content */
}
/* Style the close button as needed */
#closeMobileMenu button {
  background: none;
  border: 1px solid white; /* 1px white square border */
  color: #D3B287;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  /* Remove border-radius for a square shape (or set to 0) */
  border-radius: 0;
}
/* Container for menu content */
#mobileMenuContent {
  /* Optional styling, for example */
}
/* Menu item styles */
#mobileMenuContent .menu-item {
  padding: 8px;
  font-size: 18px;
}
/* Header for expandable items */
.menu-header {
  cursor: pointer;
  display: block;
  width: 100%;
}
/* Arrow on header */
.menu-arrow {
/*float: right;*/
  font-weight: bold;
}
/* Indentation styling can be added via inline style in JS */
.separator {
  border-top: 1px solid #999;
  margin: 10px 0;
}
/* Link styling (leaf items) */
#mobileMenuContent a {
  text-decoration: none;
  color: #D3B287;
  display: block;
  padding: 6px 0;
}
.custom-prompt {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: yellow;
  color: #000;
  padding: 15px 20px;
  border: 1px solid black;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 2000;
  font-size: 16px;
}
.custom-prompt button.close-prompt {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border: none;
  background: black;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}
/* New styles for the product page layout */
.back-to-menu {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 20px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #ddd;
}
.back-to-menu a {
  text-decoration: none;
  color: #D3B287;
  font-weight: bold;
  font-size: 18px;
}
.back-to-menu a:hover {
  text-decoration: underline;
}
.product-page-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #fff;
  justify-content: center;
}
.product-images-container {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-images-container img#mainProductImage {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  margin-bottom: 10px;
}
.product-thumbnails {
  display: flex;
  gap: 10px;
}
.product-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.product-thumbnails img:hover {
  transform: scale(1.05);
}
.product-details-container {
  flex: 1 1 40%;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.product-details-container h2 {
  margin-top: 0;
  font-size: 28px;
  color: #333;
}
.price {
  margin: 1px 0;
  font-size: 24px;
  color: #D3B287;
}
.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
  font-size: 18px;
}
.description {
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}
.add-to-cart-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  border: 1px solid grey;
}
.quantity-container {
	display: inline-flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 10px;
}
.quantity-container button {
	border: none;
	padding: 8px 12px;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}
/* Plus button always green */
.quantity-container button.plus {
	background-color: green;
}
/* Minus button styling */
.quantity-container button.minus.disabled {
	background-color: #aaa;
	opacity: 0.5;
	pointer-events: none;
}
.quantity-container button.minus.enabled {
	background-color: red;
	opacity: 1;
	pointer-events: auto;
}
.quantity-container input {
	width: 50px;
	text-align: center;
	border: none;
	outline: none;
	font-size: 16px;
}
.error {
	color: red;
	margin: 5px 0;
}
/* Cart view styling */
#cartInfo {
	border: 1px solid #ddd;
	padding: 10px;
	margin-top: 20px;
	max-width: 400px;
}
#cartInfo h3 {
	margin-top: 0;
}
#cartInfo table {
	width: 100%;
	border-collapse: collapse;
}
#cartInfo tr:nth-of-type(odd) {
	padding: 8px;
	text-align: right;
	border-bottom: 1px solid #ddd;
}
#cartInfo tr th[scope="row"] {
	padding: 8px;
	text-align: left;
}
#cartInfo td {
font-family: Courier New;
}
/* Primary navigation (top row) */
.primary-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 65px 5px;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
}
.primary-nav.hidden {
  height: 0;
  padding: 0 20px;
}
.primary-nav h1 {
  margin: 0;
  font-size: 22px;
  align-items: right;
}
.primary-nav img {
  width: 113px;
  height: 100px;
  margin-left: 0%;
}
/* Secondary navigation (bottom row) */
.secondary-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #444;
  padding: 10px 20px;
}
#menu {
  position: relative;
}
#menu > a {
  cursor: pointer;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 18px;
}
#menu > a .icon {
  margin-left: 10px;
  font-size: 24px;
}
/*LANGUAGE BUTTON AND DROPDOWN*/
/* Language button glow effect with synchronized transitions */
.secondary-links .language-selector .lang-toggle img {
  border-radius: 13%;
  transition: box-shadow 0.4s ease, background-color 0.4s ease;
  padding: 1px; /* Add some padding to make the glow effect more visible */
}
.secondary-links .language-selector .lang-toggle img:hover {
  box-shadow: 0 0 5px 2px rgba(211, 178, 135, 0.4); /* Stronger golden glow on hover */
  background-color: rgba(211, 178, 135, 0.3); /* Stronger gold background on hover */
}
/* Language dropdown styling */
.language-selector {
  position: relative;
  display: inline-block;
}
.language-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1100;
  border-radius: 4px;
}
.language-dropdown a {
  color: #333 !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 14px !important;
  margin: 0 !important;
}
.language-dropdown a:hover {
  background-color: #f1f1f1;
  color: #D3B287 !important;
}
/* Show the dropdown when hovering over the language selector */
.language-selector:hover .language-dropdown {
  display: block;
}
/*MOBILE SECONDARY MENU*/
/* Mobile secondary menu styling */
.mobile-menu-toggle {
  display: none; /* Hidden by default on desktop */
  position: relative;
  cursor: pointer;
}
.mobile-menu-icon {
  font-size: 32px;
  color: white;
  padding: 8px 20px;
  transition: color 0.3s;
}
.mobile-menu-icon:hover {
  color: #D3B287;
}
.mobile-secondary-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #444;
  min-width: 260px; /* Increased from 200px */
  width: 80vw; /* Makes it responsive to screen width, up to 80% of viewport width */
  max-width: 350px; /* Maximum width to prevent it from getting too large on bigger screens */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
  z-index: 1100;
  border-radius: 4px;
  padding: 10px 0; /* Increased vertical padding */
}
/* Make menu items larger and more spacious */
.mobile-secondary-dropdown a {
  color: white;
  padding: 15px 20px; /* Increased padding */
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 18px; /* Larger font */
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-secondary-dropdown a:hover {
  background-color: #333;
  color: #D3B287;
}
/* Mobile language selector - UPDATED */
.mobile-language-item {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-language-label {
  display: flex;
  align-items: center;
  color: white;
  padding: 15px 20px; /* Increased padding to match other items */
  cursor: pointer;
  font-size: 18px; /* Larger font */
}
.mobile-language-label img {
  margin-right: 10px;
}
.mobile-language-arrow {
  position: absolute;
  right: 20px; /* Adjusted position */
  top: 15px; /* Adjusted position */
  color: white;
  font-size: 20px; /* Larger arrow */
  transition: transform 0.3s;
}
.mobile-language-submenu {
  display: none;
  background-color: #333;
  overflow: hidden;
}
.mobile-language-submenu a {
  padding-left: 50px; /* Indented to show hierarchy */
  font-size: 16px; /* Slightly smaller than parent items */
}
.mobile-language-submenu a:last-child {
  border-bottom: none;
}
/* Show submenu when parent is active */
.mobile-language-item.active .mobile-language-submenu {
  display: block;
}
.mobile-language-item.active .mobile-language-arrow {
  transform: rotate(90deg); /* Rotate arrow when open */
}
/* Responsive adjustments */
@media (max-width: 768px) {
  /* Hide desktop links */
  .secondary-links .desktop-link {
      display: none;
  }
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
      display: block;
  }
  /* Adjust secondary nav for mobile */
  .secondary-nav {
      padding: 10px 15px;
  }
}
/* Toggle mobile dropdown when clicked */
.mobile-menu-toggle.active .mobile-secondary-dropdown {
  display: block;
}
/* Change icon when menu is open */
.mobile-menu-toggle.active .mobile-menu-icon {
  color: #D3B287;
}
/*=========================CATEGORIES DROPDOWN STYLES=============================*/
/* PC Dropdown Categories */
#all-categories{
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  cursor: pointer;
  transition: color 0.3s ease;
}
.dropdown {
  display: none;
  position: absolute;
  background-color: #333; /* Darker background */
  min-width: 180px;
  z-index: 1100;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.4); /* Darker shadow */
  border: 1px solid #222; /* Darker border */
}
#dropdown-menu,
#pc-dropdown-menu {
  top: 100%;
  left: 0;
}
/* PC Categories - Gold hover effect */
#all-categories:hover,
#pc-categories.active #all-categories {
  color: #D3B287; /* Gold color */
}
#pc-categories:hover .icon,
#pc-categories.active .icon {
  color: #D3B287; /* Gold color for the icon when hovering or active */
}
.submenu {
  position: relative;
}
.submenu .dropdown {
  left: 100%;
  top: 0;
}
.dropdown a {
  color: white; /* White text */
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  background-color: #333; /* Darker background */
  transition: color 0.3s ease, background-color 0.3s ease, font-weight 0.3s ease;
}
/* Gold hover for dropdown items with bold text */
.dropdown a:hover {
  background-color: #444; /* Slightly lighter on hover */
  color: #D3B287 !important; /* Gold color */
  font-weight: bold; /* Bold text on hover */
}
/* Arrow indicator for submenu items on PC */
.has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.has-children > a::after {
  content: ">";
  font-weight: bold;
  margin-left: 10px;
  color: #999; /* Lighter color for better visibility on dark background */
  transition: color 0.3s ease;
}
/* Gold arrow on hover */
.has-children > a:hover::after,
.has-children.active > a::after {
  color: #D3B287;
}
/* Mobile Menu Dropdown Categories (improved, desktop-like) */
#mobile-categories {
  position: relative;
}
#openMobileMenu {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  cursor: pointer;
  transition: color 0.3s ease;
}
#openMobileMenu:hover,
#openMobileMenu.active {
  color: #D3B287; /* Gold color */
}
/* Mobile categories dropdown container */
#mobile-categories .dropdown#mobile-dropdown-menu {
  display: none;                 /* toggled via JS */
  position: absolute;
  left: 0;
  top: 100%;
  width: 80vw;                   /* responsive width */
  max-width: 350px;
  max-height: 70vh;              /* scroll if long */
  overflow-y: auto;
  background-color: #333;        /* base like desktop */
  border: 1px solid #222;
  border-radius: 6px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
  z-index: 1200;
  padding: 6px 0;
}
/* Base mobile item */
#mobile-dropdown-menu .mobile-item {
  position: relative;
  color: #eee;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Row content */
#mobile-dropdown-menu .mobile-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
#mobile-dropdown-menu .mobile-label:hover {
  background-color: #3a3a3a;
  color: #D3B287; /* gold on hover */
}
/* Right arrow (already in DOM) */
#mobile-dropdown-menu .mobile-arrow {
  margin-left: auto;  /* pushes to right in flex layout */
  color: #D3B287;
  font-weight: bold;
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
/* Optional: rotate arrow when parent has .open (see JS note below) */
#mobile-dropdown-menu .mobile-item.open .mobile-arrow {
  transform: rotate(90deg);
  color: #f0d9b5;
}
/* Nested containers (children) */
#mobile-dropdown-menu .mobile-dropdown {
  display: none;  /* revealed via JS */
}
/* Depth styling */
/* Level-1 (root level items) already gets #333 from container */
#mobile-dropdown-menu > .mobile-item > .mobile-label {
  background-color: #333;
  padding-left: 16px;
}
/* Level-2 (children) */
#mobile-dropdown-menu > .mobile-item > .mobile-dropdown > .mobile-item > .mobile-label {
  background-color: #2d2d2d;
  padding-left: 26px; /* indent */
  border-left: 3px solid #D3B287; /* gold bar */
}
/* Level-3 (children of children) */
#mobile-dropdown-menu > .mobile-item > .mobile-dropdown > .mobile-item > .mobile-dropdown > .mobile-item > .mobile-label {
  background-color: #262626;
  padding-left: 36px;
  border-left: 3px solid #bfa27b; /* lighter gold */
}
/* Level-4+ (very deep) */
#mobile-dropdown-menu .mobile-dropdown .mobile-dropdown .mobile-dropdown .mobile-item > .mobile-label {
  background-color: #202020;
  padding-left: 44px;
  border-left: 3px solid #8f7a58;
}
/* Leaf items look clickable like desktop links */
#mobile-dropdown-menu .mobile-item:not(.has-children) .mobile-label {
  color: #f1f1f1;
}
#mobile-dropdown-menu .mobile-item:not(.has-children) .mobile-label:hover {
  color: #D3B287;
  font-weight: bold;
}
/* Accessibility focus */
#mobile-dropdown-menu .mobile-label:focus-visible {
  outline: 2px solid #D3B287;
  outline-offset: 2px;
}
/*======================================================*/
/* Layout styles */
main {
  padding: 20px;
  display: flex;
  gap: 20px;
  width: 100%
}
aside {
  flex-basis: 20%;
  background-color: #f9f9f9;
  padding: 15px;
}
.products-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product {
  width: 210px;
  height: 480px;
  border: 1px solid #ccc;
  padding: 3px;
  box-sizing: border-box;
  margin: 3px;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}
.about-us-box1 {
  max-width: 1000px;
  width: auto;
  min-height: 300px;
  border: 1px solid #ccc;
  padding: 15px;
  margin: 15px;
  display: inline-block;
  vertical-align: top;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  line-height: 1.6;
}
/* Adding spacing between paragraphs */
.about-us-box1 p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}
/* Remove margin from the last paragraph to avoid extra space at the bottom */
.about-us-box1 p:last-child {
  margin-bottom: 0;
}
.about-us-box2 {
  max-width: 450px;
  min-height: 300px;
  border: 1px solid #ccc;
  padding: 15px;
  margin: 15px;
  display: inline-block;
  vertical-align: top;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}
.about-us-box2 h4 {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ccc;
  color: #333;
}
.about-us-box2 .contact-details p {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.about-us-box2 .contact-details a {
  color: #0066cc;
  text-decoration: none;
}
.about-us-box2 .contact-details a:hover {
  text-decoration: underline;
}
.about-us-box2 .map-container {
  margin-top: 15px;
}
.about-us-box2 .map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.hero-image {
  max-height: 250px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
/* Product images limited to 200px height and width (maintaining aspect ratio) */
.product img {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
}
.secondary-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin-left: 20px;
  transition: color 0.3s;
}
.secondary-links a:hover {
  color: #ddd;
}
/* Footer styles - everything centered with enhancements */
footer {
  width: 100%;
  background-color: #003366;
  padding: 30px 20px;
  margin-top: 30px;
  text-align: center;
}
.footer-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Company logo and name - INCREASED LOGO SIZE */
.company-logo-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.footer-logo {
  width: 100px; /* Increased from 70px */
  height: 100px; /* Increased from 70px */
  object-fit: contain;
  margin-bottom: 10px;
}
.company-name {
  color: #D3B287;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
/* Connect section */
.connect-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.connect-section p {
  color: #c9a980;
  margin: 0 0 10px 0;
  font-size: 16px;
}
/* WhatsApp button with gold glow effect */
.whatsapp-button {
  background-color: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 12px; /* Rounded corners for the glow effect */
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
/* Gold glow effect on hover */
.whatsapp-button:hover {
  box-shadow: 0 0 15px 3px rgba(211, 178, 135, 0.5); /* Golden glow */
  background-color: rgba(211, 178, 135, 0.15); /* Subtle gold background */
}
.whatsapp-button img {
  height: 24px;
  width: auto;
  position: relative; /* To appear above the glow */
  z-index: 2;
}
/* Company registration */
.company-reg {
  color: #aaaaaa;
  font-size: 14px;
  margin: 0 0 10px 0;
}
/* Copyright */
.copyright {
  color: #aaaaaa;
  font-size: 12px;
  margin: 0;
}
.cart-table {
width: 100%;
}
/* Container for horizontal scroll on small devices */
.nutrition-container {
  width: 100%;
  overflow-x: auto;
  margin: 1.5em 0;
}
/* Base table styling */
.nutrition-table {
  width: 100%;
  min-width: 320px;          /* ensures readability on mobile */
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 0.95em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;          /* clips rounded corners */
}
/* Header row */
.nutrition-table thead th {
  background-color: #e2f1e1;
  color: #2a5d38;
  text-align: left;
  padding: 0.75em 1em;
  font-weight: 600;
  border-bottom: 2px solid #c8d9c7;
}
/* Body cells */
.nutrition-table tbody td {
  padding: 0.6em 1em;
  border-bottom: 1px solid #eee;
  color: #333;
}
/* Zebra striping for readability */
.nutrition-table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}
/* Remove bottom border on last row */
.nutrition-table tbody tr:last-child td {
  border-bottom: none;
}
/* Responsive typography */
@media (max-width: 480px) {
  .nutrition-table thead th,
  .nutrition-table tbody td {
    padding: 0.5em 0.75em;
  }
  .nutrition-table {
    font-size: 0.9em;
  }
}
.legal-disclaimer {
width: 100%;
font-size: 0.9em;        /* one size smaller */
color: #333;
padding: 15px 30px;
margin-bottom: 20px;
background-color: #f2f2f2;
border-bottom: 1px solid #ddd;
}
.legal-disclaimer h4 {
  margin: 1em 0 0.5em;
  font-size: 1em;
  font-weight: 600;
}
.legal-disclaimer h4::before {
  content: "\26A0\00a0";    /* ⚠ + a non-breaking space */
  color: #d9534f;            /* optional: make it red */
}
.legal-disclaimer p {
  margin: 0.4em 0;
}
.icon-truck {
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;             /* vertically center the emoji */
  text-align: center;          
  border: 2px solid #28a745;    /* green border */
  border-radius: 50%;           /* make it a perfect circle */
  background-color: transparent;
  color: #28a745;               /* truck icon in green */
  font-size: 1em;               /* adjust icon size */
  margin-right: 0.5em;
  vertical-align: middle;       /* align with text */
}
/* Optional text/link styling */
.free-delivery {
  font-size: 0.9em;        /* one size smaller */
  color: #333;
}
.free-delivery a {
  color: #28a745;
  text-decoration: underline;
}
.icon-return {
  display: inline-flex;            /* use flex to center */
  align-items: center;             /* vertical centering */
  justify-content: center;         /* horizontal centering */
  width: 1.8em;                    /* circle diameter */
  height: 1.8em;                   /* circle diameter */
  box-sizing: border-box;          /* include border in size */
  border: 2px solid #28a745;       /* green ring */
  border-radius: 50%;              /* make it a circle */
  color: #28a745;                  /* arrow color */
  font-size: 1em;                  /* arrow size relative to text */
  margin-right: 0.5em;             /* gap before "Return Policy" */
  line-height: 1;                  /* prevent extra leading */
  vertical-align: middle;          /* align nicely with text */
}
.footer-links {
  margin: 0;            /* remove extra top/bottom space */
  padding: 0;
  /* by default inline children will all sit on one line */
}
.footer-links a {
  color: #fff;          /* white links */
  text-decoration: none;
  margin: 0 4px;        /* small left/right gutter around each link */
}
.footer-links a:hover {
  text-decoration: underline;
}
            