  html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif!important;
  background-color: #f4f4f4!important;
  }

  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

  h1{
  font-weight: 1000 !important;
  }
  #products {
  max-width: 100vw; /* limit max width */
  overflow-x: hidden; /* prevent horizontal scroll */
  }

  header {
  background-color: transparent!important;
  display: flex !important;
  justify-content: space-between !important; /* better layout */
  align-items: center !important;
  position: fixed !important; /* makes it stay at the top */
  top: 0;
  z-index: 1000 !important;
  height: 80px;
  padding: 0 20px; /* optional spacing */
  width: 100%;
  }

  .logo {
  width: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  }

  .logoo {
  width: 200px !important;
  margin: auto;

  }
  .header-container {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  position: relative;
  }
  header a p {
  color: white;
  }

  #menu-btn {
  flex-shrink: 0;
  }

  .header-container{
    margin-left: -20px;
  }
  .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px; /* adjust as needed */
  flex-shrink: 0;
  }

  .spacer {
  flex: 1; /* pushes icons-right to right */
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  }

  header h1 {
  font-size: 1.5rem;
  }

  .cart-icon{
  position: sticky !important;
  }

  #menu-btn{
  position: sticky !important;
  margin-right: 360px !important;
  margin-bottom: 45px !important;
  }

  /* Right-side icons: search then cart */
  .icons-right {
  display: flex;
  align-items: center;
  gap: 70px; /* spacing between icons */
  margin-left: auto;
  }

  #search-icon{
  padding-right: 185px;
  margin-bottom: 8px;
  }
  /* Search icon style */
  .search-toggle {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  }

  /* Collapsible Search Container */
  #search-container {
  max-width: 600px;
  margin: 12px auto;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  margin-top: 50px;
  }

  /* Active (visible) search container */
  #search-container.active {
  max-height: 500px;
  padding-top: 10px;
  }

  /* Input field styling */
  #search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  outline: none;
  transition: border-color 0.3s ease;
  }

  #search-input:focus {
  border-color: #ffffff;
  }

  /* Results Dropdown */
  #search-results {
  background: #fff;
  border: 1px solid #eee;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 8px 0;
  color: #000 !important;
  }

  #search-results a {
  color: #000 !important;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  }

  #search-results a:hover {
  color: #333; /* optional hover color */
  text-decoration: underline; /* or 'none' if you want no underline */
  }

  #cart-count {
  position: absolute;
  top: 15px !important;
  right: 10px !important;
  color: white;
  border-radius: 50%;
  padding: 5px 5px;
  font-size: 13px;
  font-weight: 700;
  user-select: none;
  }

  .category-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px auto;
  flex-wrap: wrap;
  }

  .category-buttons button {
  background-color: #000; /* black base */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px; /* pill shape */
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .category-buttons button:hover {
  background-color: #333;
  transform: translateY(-2px);
  }

  #products {
  margin-top: 10px !important; /* Space below logo and cart */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 5fr));
  gap: 208px;
  padding-bottom: 1rem;
  }

  #products > div {
  background: #ffffff;
  border-radius: 10px !important;
  padding: 24px 20px 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: left !important;
  width: 100%;
  height: 100%;
  margin: auto;
  }
  #products > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  }

  #products img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  pointer-events: none;
  user-select: none;
  }

  /* Product title */
  #products h3 {
  font-weight: 700;
  font-size: 0.8rem !important;
  margin: 0 0 0.5rem 0;
  color: #5f5f5f; /* Dark slate */
  width: 90%;
  text-align: left !important;
  }

      #products h4 {
  font-weight: 700;
  font-size: 0.8rem !important;
  margin: 0 0 0.5rem 0;
  color: #000000; /* Dark slate */
  width: 90%;
  text-align: left !important;
  }

  #products p {
  font-weight: 500;
  font-size: 1rem !important;
  margin: 0 0 0.5rem 0;
  color: #000000; /* Dark slate */
  width: 90%;
  text-align: left !important;
  }

  .add-btn {
  padding: 10px 30px !important;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  display: inline-block;
  font-size: 0.8rem !important;
  margin-bottom: 5px;
  margin-top: 6px;
  border-color: transparent;
  }

  #products a:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.5);
  transform: scale(1.07);
  }

  #products p:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.5);
  transform: scale(1.07);
  }

  @media (max-width: 480px) {
  body {
    padding: 1.5rem 1rem 2rem !important;
    font-size: 14px;
  }

  .logo {
    width: 80px;
    top: 12px;
  }

  .cart-icon {
    font-size: 20px;
    padding: 10px 12px;
    top: 12px;
    right: 12px;
  }

  #cart-count {
    font-size: 11px;
    padding: 3px 6px;
    top: -6px;
    right: -6px;
  }

  header {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 1rem;
  }

  .product-grid,
  #products {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 80px;
  }

  .product-card,
  #products > div {
    padding: 16px 14px 20px;
    border-radius: 16px;
  }

  .product-img,
  #products img {
    width: 100px;
    height: 100px;
    border-radius: 14px;
  }

  #products h3 {
    font-size: 1rem;
  }

  #products p {
    font-size: 1rem;
  }

  #products a {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  button {
    font-size: 0.9rem;
    padding: 10px 22px;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .cart-item img {
    width: 80px;
    height: 80px;
    margin: 0 0 12px 0;
  }

  .order.new-order {
    padding: 1rem;
    font-size: 0.9rem;
  }

  #back-btn {
    font-size: 14px;
    padding: 6px 10px;
    top: 10px;
    left: 10px;
    width: auto;
  }

  .side-nav {
    top: auto;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 8px;
    background-color: #333;
    padding: 10px;
    width: 100%;
    justify-content: space-around;
    border-radius: 0;
  }

  .side-nav button {
    width: auto;
    font-size: 0.9rem;
    padding: 10px;
    text-align: center;
  }
  }

  #menu-btn {
  position: fixed;
  top: 10px;
  left: 20px;
  font-size: 30px;
  background: transparent;
  border: none;
  color: #000000; /* matching cart icon color */
  cursor: pointer;
  z-index: 1200;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  }
  .category-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px;
  flex-wrap: wrap;
  }

  .category-buttons button {
  background-color: transparent; /* Green */
  color: rgb(0, 0, 0);
  border: 2px solid #000;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .category-buttons button:hover {
  background-color: #000000;
  color: #fff;
  transform: translateY(-2px);
  }

  .category-buttons button:active {
  transform: scale(0.98);
  background-color: transparent; /* Green */
  color: rgb(59, 59, 59);
  }


  #menu-btn:hover {
    background-color: rgba(37, 99, 235, 0.15);
  }

  #side-nav {
    position: fixed;
    top: 0;
    left: -260px; /* hidden off screen */
    width: 260px;
    height: 100vh;
    background-color: #fff;
    transition: left 0.3s ease;
    z-index: 1200;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
  }

  /* Side nav visible */
  #side-nav.open {
    left: 0;
  }

  /* Side nav links */
  #side-nav a {
    text-decoration: none;
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    padding: 5px 0px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }
  #side-nav a:hover {
    background-color: rgba(34, 34, 34, 0.15);
  }

  /* Overlay behind side nav */
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1100;
  }
  #overlay.show {
    opacity: 1;
    visibility: visible;
  }

  #product {
    margin-top: 70px !important;
    max-width: 100% !important;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 10px !important;
    padding-top: 10px !important;
  }
  #product img {
    max-width: 100% !important;
    margin-bottom: 10px;
  }
  #product h2 {
    margin-bottom: 12px !important;
    font-size: 24px;
    color: #333;
    width: 85%;
    margin: auto;
  }
  #product p {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.4;
    width: 80%;
    margin: auto;
    margin-bottom: 10px !important;
    font-size: 1rem;
  }

      #product a {
    margin-bottom: 12px;
    color: #000000;
    line-height: 1.4;
    width: 80%;
    margin: auto;
    margin-bottom: 10px !important;
    font-size: 1rem;
  }
  .center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #addToCartBtn {
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  #addToCartBtn:hover {
    background-color: #333;
  }

  /* Responsive */
  @media (max-width: 480px) {
    header { padding: 0 40px; }
    #menu-btn, .cart-icon { font-size: 20px; }
    .logo { width: 60px; }
    #side-nav { width: 200px; }
    #product { margin: 80px 10px 20px; }
  }

  /* Sections */
  section {
    margin-top: 70px;
  }

  section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
  }

  .order-card {
    background: #ffffff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    color: #000 !important;
  }

  .order-card a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
  }

  /* Simple styles for profile form */
  #profile-form {
    margin-top: 20px;
    max-width: 80%;
    background: #fafafa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: auto;
    margin-bottom: 20px;
  }
  #profile-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  #profile-form input, #profile-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  #profile-form button {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    margin: auto;
  }
  #profile-form button:disabled {
    background-color: #94d3a2;
    cursor: not-allowed;
  }
  #save-message {
    margin-top: 10px;
    font-weight: 600;
  }

  #category-title {
    font-size: 2rem;
    margin: 20px auto;
    max-width: 960px;
    padding: 0 15px;
    color: #222;
    margin-top: 20px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 80px;
  }

  #filters {
    max-width: 960px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 0 15px;
  }

  #filters select, #filters button {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
  }


  /* SETTINGS CARD */
  .settings-card {
  max-width: 460px;
  background: white;
  margin: 3rem auto 4rem;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.12);
  text-align: center;
  position: relative;
  user-select: none;
  margin-top: 70px;
  }

  .settings-card .logo {
  height: 50px;
  margin-bottom: 1.5rem;
  user-select: none;
  }

  .settings-card h2 {
  margin-bottom: 1.8rem;
  font-weight: 700;
  color: #000000;
  user-select: none;
  }

  /* Form labels */
  .settings-card label {
  display: block;
  text-align: left;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #333;
  user-select: none;
  }

  /* Inputs */
  .settings-card input[type="text"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  margin-bottom: 1.4rem;
  border: 1.8px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  }

  .settings-card input[type="text"]:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 8px rgb(0 122 77 / 0.3);
  }

  /* Disabled input */
  .settings-card input[disabled] {
  background-color: #f5f5f5;
  color: #777;
  cursor: not-allowed;
  }

  /* Save button */
  #saveBtn {
  width: 100%;
  padding: 0.75rem;
  background-color: #000000;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  }

  #saveBtn:hover,
  #saveBtn:focus {
  background-color: #1f1f1f;
  outline: none;
  }

  /* Status message */
  .status {
  margin-top: 1rem;
  min-height: 24px;
  font-weight: 600;
  user-select: none;
  }

  h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
  }

  p {
  text-align: center;
  margin: 5px 0 20px;
  font-size: 1rem;
  color: #555;
  }

  .summary {
  max-width: 900px;
  margin: 0 auto 25px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  }

  .summary span {
  color: #000000;
  }

  #orders-container {
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  }

  /* Order cards */
  .order {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  padding: 20px;
  transition: box-shadow 0.3s ease;
  }

  .order:hover {
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.15);
  }

  .order h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #2c3e50;
  }

  .order p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #444;
  }

  .order ul {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.9rem;
  }

  .order ul li {
  margin-bottom: 4px;
  }

  /* Status select and buttons */
  .status-select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #bbb;
  font-size: 0.95rem;
  cursor: pointer;
  margin-right: 10px;
  min-width: 130px;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  }

  .status-select:focus {
  outline: none;
  border-color: #000000;
  background-color: white;
  }

  .btn {
  padding: 7px 14px;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  }

  .btn-update {
  background-color: #000000;
  color: white;
  }

  .btn-update:hover {
  background-color: #313131;
  }

  .btn-refund {
  background-color: #e74c3c;
  color: white;
  margin-top: 10px;
  }

  .btn-refund:hover {
  background-color: #c0392b;
  }

  /* Sign out button */
  #signout-btn {
  background-color: #e74c3c !important;
  color: white !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  padding: 10px 15px !important;
  margin-top: auto !important;
  cursor: pointer !important;
  }

  /* Modal: you already have styles but to unify */

  #auth-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  margin: auto; 
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  #auth-modal.show {
  display: flex;
  }

  #auth-box {
  background: white;
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  text-align: center;
  }

  #auth-box h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #222;
  }

  #auth-box button {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease;
  }

  #google-signin-btn {
  background-color: #4285F4;
  color: white;
  }

  #google-signin-btn:hover {
  background-color: #357ae8;
  }

  #email-signin-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  }

  #email-signin-form input {
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
  }

  #email-signin-form input:focus {
  outline: none;
  border-color: #4c63af;
  }

  #email-signin-form button {
  background-color: #000000;
  color: white;
  font-weight: 600;
  }

  #email-signin-form button:hover {
  background-color: #303030;
  }

  #auth-error {
  color: #d9534f;
  font-weight: 600;
  margin-top: 10px;
  }

  /* Notification style is good, keep yours or use this */

  .notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #323232;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  }

  .notification.show {
  opacity: 1;
  }

  h1, h2 {
  text-align: center;
  margin: 1rem 0 1.5rem;
  color: #000000;
  }

  p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #555;
  }

  /* Form */
  form#productForm {
  max-width: 500px;
  margin: 0 auto 3rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  }

  form#productForm input,
  form#productForm textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1.8px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s ease;
  resize: vertical;
  }

  form#productForm input:focus,
  form#productForm textarea:focus {
  border-color: #000000;
  outline: none;
  }

  #submitBtn {
  background-color: #000000;
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  }

  #submitBtn:hover,
  #submitBtn:focus {
  background-color: #000000;
  outline: none;
  }

  /* Product List */
  .product-list {
  max-width: 900px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
  gap: 1.5rem;
  }

  .product-list .product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }

  .product-list img {
  width: 100%;
  margin-bottom: 0.75rem;
  }

  .product-list h3 {
  color: #000000;
  margin-bottom: 0.25rem;
  }

  .product-list p.description {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 0.5rem;
  }

  .product-list p.price {
  font-weight: 700;
  color: #004d40;
  font-size: 1.1rem;
  margin-top: auto;
  }

  #pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
  }

  #pagination button {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background-color: white;
  color: #000000;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  }

  #pagination button:hover:not(:disabled) {
  background-color: #ffffff;
  border-color: #ffffff;
  }

  #pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  }
  .video-wrapper {
  width: 100%;
  max-width: 640px; /* or 100% of container */
  overflow: hidden;
  border-radius: 10px;
  }

  .video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  }

  /* ========== Review Form ========== */
  #review-form {
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  #review-form h3,
  #review-form label {
  color: #000000;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  }

  #review-form select,
  #review-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  transition: border 0.2s ease;
  }

  #review-form select:focus,
  #review-form textarea:focus {
  border-color: #3f3f3f;
  }

  /* Buttons */
  #review-form button {
  background-color: #000000;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  }

  #review-form button:hover {
  background-color: #000000;
  }

  /* Cancel Edit Button (inside form) */
  #cancel-edit-btn {
  background-color: #e0e0e0;
  color: #333;
  }

  #cancel-edit-btn:hover {
  background-color: #d5d5d5;
  }

  /* ========== Edit Review Modal ========== */
  #edit-modal {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  }

  #edit-modal form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  margin: auto;
  }

  #edit-modal h3 {
  color: #000000;
  margin-bottom: 15px;
  }

  #edit-modal label {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  color: #444;
  }

  #edit-modal select,
  #edit-modal textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  }

  #edit-modal button {
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  margin-right: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  }

  #edit-modal button[type="submit"] {
  background-color: #000000;
  color: white;
  }

  #edit-modal button[type="submit"]:hover {
  background-color: #000000;
  }

  #close-edit-modal {
  background-color: #e0e0e0;
  color: #333;
  }

  #close-edit-modal:hover {
  background-color: #d6d6d6;
  }

  /* Pagination Controls Styling - Number-only pagination */
  #pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
  padding: 20px;
  flex-wrap: wrap;
  }

  #pagination-controls button {
  background: #f8f9fa;
  color: #000000;
  border: 2px solid #dee2e6;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  }

  #pagination-controls button:hover {
  background: #ffffff;
  color: rgb(0, 0, 0);
  border-color: #c2c2c2;
  transform: scale(1.1);
  }

  #pagination-controls button:active {
  transform: scale(0.95);
  }

  /* Active/Current page styling */
  #pagination-controls button.active {
  background: #000000;
  color: white;
  border-color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  #pagination-controls button.active:hover {
  background: #000000;
  border-color: #1d1d1d;
  }

  /* Alternative Modern Flat Design */
  .pagination-flat #pagination-controls button {
  background: #e9ecef;
  color: #495057;
  border: 1px solid #ced4da;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  }

  .pagination-flat #pagination-controls button:hover {
  background: #000000;
  color: white;
  border-color: #000000;
  transform: none;
  }

  .pagination-flat #pagination-controls button.active {
  background: #000000;
  color: white;
  border-color: #000000;
  }

  /* Dark Theme Variant */
  .dark-theme #pagination-controls button {
  background: #495057;
  color: #fff;
  border-color: #6c757d;
  }

  .dark-theme #pagination-controls button:hover {
  background: #6c757d;
  border-color: #adb5bd;
  }

  .dark-theme #pagination-controls button.active {
  background: #000000;
  border-color: #000000;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
  #pagination-controls {
  gap: 6px;
  margin: 20px 0;
  padding: 15px;
  }

  #pagination-controls button {
  min-width: 40px;
  height: 40px;
  font-size: 13px;
  }
  }

  @media (max-width: 480px) {
  #pagination-controls {
  gap: 4px;
  padding: 10px;
  }

  #pagination-controls button {
  min-width: 35px;
  height: 35px;
  font-size: 12px;
  padding: 8px 10px;
  }
  }

  /* Animated Loading State (Optional) */
  .pagination-loading #pagination-controls button {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  }

  .pagination-loading #pagination-controls button::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  }

  @keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
  }

  fieldset {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  background-color: #fafafa;
  }

  legend {
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0 8px;
  color: #333;
  }

  fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #444;
  }

  fieldset input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #000000; /* green tint */
  }

  fieldset {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px 20px;
  }

  select#status {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none; /* removes native arrow styling on some browsers */
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  }

  select#status:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2); /* green glow */
  }

  .product-card {
  width: 90%;
  background: #fff;
  border-radius: 10px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 16px;
  transition: 0.3s ease all;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  }

  .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .product-card img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  }

  .product-card h2 {
  font-size: 1.25rem;
  margin: 8px 0;
  color: #222;
  text-align: center;
  }

  .product-card p {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #444;
  text-align: center;
  }

  .product-card button {
  padding: 8px 16px;
  border: 1px solid #ccc;
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  }



  #side-nav.open {
  transform: translateX(0);
  }

  #side-nav button {
  background: none;
  border: none;
  text-align: left;
  padding: 5px 5px;
  font-size: 16px;
  color: #333;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  font-weight: 700;
  }

  #side-nav button:hover {
  background-color: #f0f0f0;
  }

  #side-nav button:active {
  background-color: #e0e0e0;
  }

  #side-nav #signout-btn {
  margin-top: auto;
  color: #dc3545;
  }


  #filters select,
  #filters button {
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #000000;
  transition: all 0.2s ease-in-out;
  color: #fff;
  cursor: pointer;
  }

  #filters select:focus,
  #filters button:focus {
  border-color: #747474;
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
  }

  #filters button {
  background-color: #575757;
  color: white;
  border: none;
  }

  #filters button:hover {
  background-color: #292929;
  }



  /* --- "Back to Top" Link --- */
  .back-to-top {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 1rem;
  transition: color 0.3s;
  }
  .back-to-top:hover {
  color: #00ffc8;
  }

  /* --- Contact Section --- */
  .footer-contact {
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #a6a6a6;
  }
  .footer-contact a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
  }

  /* --- Social Icons --- */
  .footer-social {
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  }
  .footer-social a {
  color: #000;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.3s;
  }
  .footer-social a:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.15);
  }

  /* --- Footer Nav Links --- */
  .footer-nav {
  flex: 2 1 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  }
  .footer-nav a {
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 10px;
  border: 2px solid #000;
  background: transparent;
  transition: background 0.3s, color 0.3s;
  }
  .footer-nav a:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #00ffc8;
  }

  /* --- Payment Badges --- */
  .footer-payments {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  }
  .payment-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 0 1rem;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  user-select: none;
  min-width: 85px;
  text-align: center;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: default;
  }

  /* --- Copyright --- */
  .footer-copy {
  flex-basis: 100%;
  margin-top: 1rem;
  margin-bottom: -6rem;
  font-size: 12px;
  color: #555;
  text-align: center;
  }

  #callout-banner {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 12px 20px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-bottom: 20px;
  margin-top: 20px;
  animation: slideDown 0.9s ease-out;
  border-radius: 10px;
  }

  #callout-banner.warning {
  background: linear-gradient(135deg, #fdcb6e, #e17055);
  border-left-color: #e17055;
  }

  #callout-banner.info {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-left-color: #0984e3;
  }

  #callout-banner.success {
  background: linear-gradient(135deg, #00b894, #00a085);
  border-left-color: #00a085;
  }

  .callout-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  }

  #callout-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  flex-grow: 1;
  margin-right: 15px;
  }

  #close-callout {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  }

  #close-callout:hover {
  background: rgba(255,255,255,0.3);
  }

  @keyframes slideDown {
  from {
  transform: translateY(-100%);
  opacity: 0;
  }
  to {
  transform: translateY(0);
  opacity: 1;
  }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
  #callout-banner {
  padding: 10px 15px;
  }

  #callout-text {
  font-size: 14px;
  margin-right: 10px;
  }

  #close-callout {
  width: 25px;
  height: 25px;
  font-size: 20px;
  }
  }

  .discount-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 60px;
  }

  .discount-section input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  }

  .discount-section input[type="text"]:focus {
  border-color: #474747; /* Dark green */
  }

  #apply-discount {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: transparent; /* Dark green */
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s;
  border: #000 2px solid;
  }

  #apply-discount:hover {
  background-color: #000000; /* Darker green */
  color: white;
  }

  #discount-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  }

  /* Hide by default (mobile) */
  .header-containerr {
  display: none;
  }

  /* Show on desktop and larger screens */
  @media (min-width: 1020px) {
  .header-containerr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  }

  #side-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-grow: 1;
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  }
  }
  /* MOBILE FIRST: default to showing mobile version */
  .header-container {
  display: flex;
  }

  .header-containerr {
  display: none;
  }

  /* LARGE SCREENS: switch to desktop header */
  @media (min-width: 1024px) {
  .header-container {
  display: none; /* hide mobile header */
  }

  .header-containerr {
  display: flex; /* show desktop header */
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: 100%;
  }

  #side-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-grow: 1;
  padding: 0 2rem;
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  }
  }

  /* Hide desktop header on mobile */
  .header-containerr {
  display: none;
  }

  @media (min-width: 1024px) {
  .header-containerr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  }

  .logo {
  height: 40px;
  object-fit: contain;
  }

  .desktop-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-grow: 1;
  margin-left: -45%;
  }

  .desktop-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: border-color 0.2s;
  }

  .desktop-nav a:hover {
color: #ffffff;  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  }

  .icons-right {
  display: flex;
  align-items: center;
  }

  .search-toggle {
  margin-right: -150px; /* adjust as needed */
  }

  .search-toggle,
  .cart-icon {
  background: none;
  border: none;
  cursor: pointer;
  }

  .cart-icon {
  position: relative;
  }

  #cart-count {
  font-size: 12px;
  position: absolute;
  top: 10px !important;
  right: 15px !important;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  }
  #callout-banner{
  margin-top: 50px !important;
  margin-bottom: -40px !important;
  margin-left: 10px;
  margin-right: 10px;
  }
  }

  /* Tablet-specific layout */
  @media (min-width: 768px) and (max-width: 1023px) {
.logo {
  width: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  }

  .logoo {
  width: 200px !important;
  margin: auto;

  }
  .header-container {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  position: relative;
  }
  header a p {
  color: inherit;
  }

  #menu-btn {
  flex-shrink: 0;
  }

  .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px; /* adjust as needed */
  flex-shrink: 0;
  }

  .spacer {
  flex: 1; /* pushes icons-right to right */
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 15px !important;
  flex-shrink: 0;
  }

  header h1 {
  font-size: 1.5rem;
  }

  .cart-icon{
  position: sticky !important;
  margin-left: 260px;
  width: 37px !important;
  }

  #cart-count {
  font-size: 12px;
  position: absolute;
  top: 15px !important;
  right: -5px !important;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  }

  #menu-btn{
  position: sticky !important;
  margin-right: 360px !important;
  margin-bottom: 45px !important;
  }

  /* Right-side icons: search then cart */
  .icons-right {
  display: flex;
  align-items: center;
  margin-left: 190px;
  }

  #search-icon{
  margin-bottom: 8px;
  }

  /* Side nav stays hidden unless opened */
  #side-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 240px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1.2rem;
  transition: left 0.3s ease-in-out;
  z-index: 999;
  }

  #side-nav.open {
  left: 0;
  }

  #side-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  }

  /* Hide the desktop version completely */
  .header-containerr {
  display: none;
  }
  #callout-banner{
  margin-top: 50px !important;
  margin-bottom: -40px !important;
  margin-left: 10px;
  margin-right: 10px;
  }
  }

  @media (min-width: 900px) and (max-width: 1017px) {
.logo {
  width: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  }

  .logoo {
  width: 200px !important;
  margin: auto;

  }
  .header-container {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  position: relative;
  }
  header a p {
  color: inherit;
  }

  #menu-btn {
  flex-shrink: 0;
  }

  .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px; /* adjust as needed */
  flex-shrink: 0;
  }

  .spacer {
  flex: 1; /* pushes icons-right to right */
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 15px !important;
  flex-shrink: 0;
  }

  header h1 {
  font-size: 1.5rem;
  }

  .cart-icon{
  position: sticky !important;
  margin-left: 400px;
  width: 37px !important;
  }

  #cart-count {
  font-size: 12px;
  position: absolute;
  top: 15px !important;
  right: -5px !important;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  }

  #menu-btn{
  position: sticky !important;
  margin-right: 360px !important;
  margin-bottom: 45px !important;
  }

  /* Right-side icons: search then cart */
  .icons-right {
  display: flex;
  align-items: center;
  margin-left: 400px;
  }

  #search-icon{
  margin-bottom: 8px;
  }

  /* Side nav stays hidden unless opened */
  #side-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 240px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1.2rem;
  transition: left 0.3s ease-in-out;
  z-index: 999;
  }

  #side-nav.open {
  left: 0;
  }

  #side-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  }

  /* Hide the desktop version completely */
  .header-containerr {
  display: none;
  }
  #callout-banner{
  margin-top: 50px !important;
  margin-bottom: -40px !important;
  margin-left: 10px;
  margin-right: 10px;
  }
  }

  @media (min-width: 491px) and (max-width: 670px) {
.logo {
  width: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  }

  .logoo {
  width: 200px !important;
  margin: auto;

  }
  .header-container {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  position: relative;
  }
  header a p {
  color: inherit;
  }

  #menu-btn {
  flex-shrink: 0;
  }

  .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px; /* adjust as needed */
  flex-shrink: 0;
  }

  .spacer {
  flex: 1; /* pushes icons-right to right */
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 15px !important;
  flex-shrink: 0;
  }

  header h1 {
  font-size: 1.5rem;
  }

  .cart-icon{
  position: sticky !important;
  margin-left: -100px;
  width: 37px !important;
  }

  #cart-count {
  font-size: 12px;
  position: absolute;
  top: 15px !important;
  right: -5px !important;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  }

  #menu-btn{
  position: sticky !important;
  margin-right: 360px !important;
  margin-bottom: 45px !important;
  }

  /* Right-side icons: search then cart */
  .icons-right {
  display: flex;
  align-items: center;
  margin-left: 70px !important;
  }

  #search-icon{
  margin-bottom: 8px;
  }

  /* Side nav stays hidden unless opened */
  #side-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 240px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1.2rem;
  transition: left 0.3s ease-in-out;
  z-index: 999;
  }

  #side-nav.open {
  left: 0;
  }

  #side-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  }

  /* Hide the desktop version completely */
  .header-containerr {
  display: none;
  }
  #callout-banner{
  margin-top: 50px !important;
  margin-bottom: -40px !important;
  margin-left: 10px;
  margin-right: 10px;
  }
  }

  /* Add padding on larger screens */
  @media (min-width: 768px) {
  .video-wrapper {
  max-width: 90%;
  }
  .video-wrapper {
  position: relative;
  padding-top: 56.25%!important;
  overflow: hidden!important;
  border-radius: 50px!important;
  margin: 0 auto;
  width: 100%!important;
  max-width: 98%!important;
  margin-top: 50px!important;
  }
  .video-wrapper iframe {
  position: absolute;
  top: 0!important;
  left: 0!important;
  width: 100%!important;
  height: 100%!important;
  border: none!important;
  padding: 10px!important;
  border-radius: 50px!important;/* match wrapper for clean corners */
  }
  }

  @media (min-width: 1024px) {
  .video-wrapper {
  max-width: 90%;
  }
  .video-wrapper {
  position: relative;
  padding-top: 56.25%!important;
  overflow: hidden!important;
  border-radius: 50px!important;
  margin: 0 auto;
  width: 100%!important;
  max-width: 98%!important;
  margin-top: 50px!important;
  }
  .video-wrapper iframe {
  position: absolute;
  top: 0!important;
  left: 0!important;
  width: 100%!important;
  height: 100%!important;
  border: none!important;
  padding: 10px!important;
  border-radius: 50px!important;/* match wrapper for clean corners */
  }
  #products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; /* Reduce this if spacing is too big */
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  }
  #latest-products-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-left: 10px !important;

  }
  #callout-banner{
  margin-top: 10px !important;
  }
  }
  /* Hide search container by default (mobile) */

  @media (min-width: 717px) {
  #search-container {
  margin-top: 5rem !important;
  margin-bottom: 1rem;
  width: 100% !important;
  display: block;
  z-index: 1000;
  }
    #products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem; /* Reduce this if spacing is too big */
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  }
  }

  @media (min-width: 568px) {
  #search-container {
  margin-top: 5rem !important;
  margin-bottom: 1rem;
  width: 100% !important;
  display: block;
  z-index: 1000;
  }
  }

  @media (min-width: 1024px) {
  #search-container {
  margin-top: 5rem;
  width: 100% !important;
  display: block;
  z-index: 1000;
  }
.popular-items {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.popular-items h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Carousel Container */
.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
  width: 100%; /* Full width */
}

/* Carousel Items */
.carousel > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(200px, 30vw, 280px);
  max-width: 100%;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.carousel > *:hover {
  transform: translateY(-5px);
}

/* Carousel Images */
.carousel img {
  max-height: 200px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Hide scrollbar in modern browsers */
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Specific Container Fix */
#popularItemsContainer.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 10px;
}

/* Optional Custom Card Style for Children */
#popularItemsContainer .video-wrapper {
  scroll-snap-align: start;
  width: clamp(200px, 30vw, 280px);
  flex: 0 0 auto;
  border-radius: 15px;
  background: #f9f9f9;
  border: solid 0.1px #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin: auto;
}


.footer{
  color: #ffffff !important;
    padding-bottom: 20px !important;
}

/* Entire scrollbar */
::-webkit-scrollbar {
  width: 8px; /* Set the width of the vertical scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: transparent; 
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

  }

  @media (min-width: 481px) and (max-width: 500px) {
  .logo {
  width: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  }

  .logoo {
  width: 200px !important;
  margin: auto;

  }
  .header-container {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  position: relative;
  }
  header a p {
  color: inherit;
  }

  #menu-btn {
  flex-shrink: 0;
  }

  .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px; /* adjust as needed */
  flex-shrink: 0;
  }

  .spacer {
  flex: 1; /* pushes icons-right to right */
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 15px !important;
  flex-shrink: 0;
  }

  header h1 {
  font-size: 1.5rem;
  }

  .cart-icon{
  position: sticky !important;
  margin-left: -100px;
  width: 37px !important;
  }

  #cart-count {
  font-size: 12px;
  position: absolute;
  top: 15px !important;
  right: -5px !important;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  }

  #menu-btn{
  position: sticky !important;
  margin-right: 360px !important;
  margin-bottom: 45px !important;
  }

  /* Right-side icons: search then cart */
  .icons-right {
  display: flex;
  align-items: center;
  margin-left: 160px;
  }

  #search-icon{
  margin-bottom: 8px;
  }
  }

  @media (min-width: 500px) and (max-width: 696px) {
 
 .logo {
  width: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  }

  .logoo {
  width: 200px !important;
  margin: auto;

  }
  .header-container {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  position: relative;
  }
  header a p {
  color: inherit;
  }

  #menu-btn {
  flex-shrink: 0;
  }

  .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px; /* adjust as needed */
  flex-shrink: 0;
  }

  .spacer {
  flex: 1; /* pushes icons-right to right */
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 15px !important;
  flex-shrink: 0;
  }

  header h1 {
  font-size: 1.5rem;
  }

  .cart-icon{
  position: sticky !important;
  margin-left: -100px;
  width: 37px !important;
  }

  #cart-count {
  font-size: 12px;
  position: absolute;
  top: 15px !important;
  right: -5px !important;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  }

  #menu-btn{
  position: sticky !important;
  margin-right: 360px !important;
  margin-bottom: 45px !important;
  }

  /* Right-side icons: search then cart */
  .icons-right {
  display: flex;
  align-items: center;
  margin-left: 160px;
  }

  #search-icon{
  margin-bottom: 8px;
  }   #products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; /* Reduce this if spacing is too big */
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  }

  .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
  }

  .header-container .logo {
  height: 40px;
  object-fit: contain;
  }

  #menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  }

  .icons-right {
  display: flex;
  align-items: center;
  gap: 6rem;

  }

  .search-toggle,
  .cart-icon {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: -150px;
  margin-left: -100px;
  }

  .cart-icon {
  position: relative;
  width: auto; /* or set a fixed width if needed */
  height: auto;
  }

  .cart-icon svg {
  width: 50px;
  height: 50px;
  margin-top: 8px;
  }


  #cart-count {
  font-size: 12px;
  position: absolute;
  top: 15px !important;
  right: 20px !important;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  }

  }

  footer a:hover {
  color: red !important;
  }

  #checkoutBtn{
  margin-bottom: 30px;
  margin-top: 30px;
  }

  #checkoutBtn :hover{
  color: black !important;
  border: #000 2px solid !important;
  background-color: transparent !important;
  }

  .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('images/image2.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  top: 0 !important;
  margin-top: -1px; /* helps align seamlessly with header */
  }

  /* Overlay to darken image for better readability */
  .hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  }

  .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 2rem;
  }

  .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  }

  .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  }

  .cta-button {
  background-color: #ff4d4d;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  }

  .cta-button:hover {
  background-color: #e60000;
  }

  /* Mobile responsive */
  @media (max-width: 768px) {
  .hero-content h1 {
  font-size: 2rem;
  }

  .hero-content p {
  font-size: 1rem;
  }

  .cta-button {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  }
.hero {
  background-image: url('images/image2.jpg');
  background-position: center ;
  background-repeat: no-repeat;
  background-size: cover;
  height: 102vh !important;
  width: 100vw;
  margin-left: -16px;
  margin-top: -100px !important;
position: relative !important;
  top: 0;
  z-index: 999;
}

.footer {
  color: white!important;
  background-color: rgba(0, 0, 0, 0.8) !important; /* or any solid navy */
  padding: 3rem 1.5rem 2rem!important;
  width: 100vw !important;
  box-sizing: border-box!important;
  overflow-x: hidden!important;
  margin-left: -16px !important;

   position: relative !important;

}

  }
  @media (max-width: 888px) {
  .hero-content h1 {
  font-size: 2rem;
  }

  .hero-content p {
  font-size: 1rem;
  }

  .cta-button {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  }
.hero {
  background-image: url('images/image2.jpg');
  background-position: center ;
  background-repeat: no-repeat;
  background-size: cover;
  height: 105vh !important;
  width: 105vw;
  margin-left: -16px;
  margin-top: -100px !important;
position: relative !important;
  top: 0;
  z-index: 999;
}

.footer {
  color: white!important;
  background-color: rgba(0, 0, 0, 0.8) !important; /* or any solid navy */
  padding: 3rem 1.5rem 2rem!important;
  width: 101vw !important;
  box-sizing: border-box!important;
  overflow-x: hidden!important;
  margin-left: -16px !important;
  margin-bottom: -32px !important;
  position: relative !important;
}

  }
    /* --- Footer Base --- */
.site-footer {
  background: rgba(0, 0, 0, 0.8) !important;
  color: #000;
  padding: 3rem 1.5rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 30px rgba(0, 255, 204, 0.15);
  position: sticky;
}

.footer-container {
  max-width: 1400px !important;
  margin: 0 auto; /* This centers it horizontally */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Adjust as needed: use center or space-evenly if you want items to center */
  gap: 1.8rem;
  background-color: #000 !important;
}

    .cart-icon{
      margin-top: -10px !important;
    }
  
    #popularItemsContainer.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 10px;
}

#popularItemsContainer::-webkit-scrollbar {
  display: none;
}

#popularItemsContainer .video-wrapper {
  scroll-snap-align: start;
  width: clamp(180px, 20vw, 280px);
  height: auto;
  flex: 0 0 auto;
  border-radius: 15px;
  background: #f9f9f9;
  border: solid 0.1px #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.footer{
  color: #ffffff !important;
    padding-bottom: 20px !important;
}

/* Entire scrollbar */
::-webkit-scrollbar {
  width: 8px; /* Set the width of the vertical scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: transparent; 
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}



/* Main header container layout */
.header-container, .header-containerr {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
}

/* Ensure left menu icon stays far left */
#menu-btn {
  flex-shrink: 0 !important;
  margin-right: auto !important;
  z-index: 2 !important;
}

/* Spacer for center alignment (used only for mobile) */
.spacer {
  flex: 1 !important;
}

/* Logo always dead-center */
.logo {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-height: 45px !important;
  object-fit: contain !important;
  z-index: 1 !important;
  margin-top: -15px !important;
}

/* Right icons: search + cart */
.icons-right {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
}

/* Ensure search icon doesn’t push cart too far if missing */
.icons-right > * {
  max-width: 40px !important;
  min-width: 30px !important;
}

/* Cart icon boundaries */
.cart-icon {
  position: relative !important;
  width: 40px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Cart image sizing */
.cart-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Cart badge */
#cart-count {
  position: absolute !important;
  top: -4px !important;
  right: -6px !important;
  font-size: 11px !important;
  background: red !important;
  color: white !important;
  border-radius: 50% !important;
  padding: 2px 5px !important;
  line-height: 1 !important;
}

@media (max-width: 899px) {
  .search-togglee{
  margin-right: -250px !important;
}


}
/* DESKTOP STYLING (≥768px) */
@media (min-width: 768px) {
  .cart-icon img {
  width: 28px !important;
  object-fit: contain !important;
}
#cart-count {
  position: absolute !important;
  top: 8px !important;
  right: -4px !important;
  font-size: 11px !important;
  background: red !important;
  color: white !important;
  border-radius: 50% !important;
  padding: 2px 5px !important;
  line-height: 1 !important;
}
  .header-container {
    display: none !important; /* hide mobile layout */
  }

  .header-containerr {
    display: flex !important;
    justify-content: space-between !important;
  }

  /* Desktop nav visible & aligned left */
  .desktop-nav {
    display: flex !important;
    gap: 1.5rem !important;
    margin-right: auto !important;
    align-items: center !important;
  }

  .desktop-nav a {
    text-decoration: none !important;
    font-size: 15px !important;
    color: black !important;
  }

  /* Desktop logo remains dead center */
  .header-containerr .logo {
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
  }

  /* Desktop right icons */
  .header-containerr .icons-right {
    margin-left: auto !important;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .logo{
    margin-top: 80px !important;
  }
  /* Ensure mobile header is used */
  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    width: 100% !important;
    height: 60px !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }

  /* Hide desktop nav */
  .header-containerr {
    display: none !important;
  }

  /* Menu button on far left */
  #menu-btn {
    flex-shrink: 0 !important;
    margin-right: auto !important;
    background: none !important;
    border: none !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    margin-top: 50px !important;
  }

  /* Logo in dead center */
  .logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-height: 45px !important;
    object-fit: contain !important;
    z-index: 1 !important;
  }

  /* Right icons */
  .icons-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .icons-right > * {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 30px !important;
  }

  /* Search button */
  #search-icon {
    background: none !important;
    border: none !important;
    width: 38px !important;
    height: 38px !important;
    margin-right: -50px !important;
  }

  /* Cart wrapper */
  .cart-icon {
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .cart-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    margin-top: 15px !important;

  }

  #cart-count {
    position: absolute !important;
    top: -4px !important;
    right: -6px !important;
    font-size: 11px !important;
    background: red !important;
    color: white !important;
    border-radius: 50% !important;
    padding: 2px 5px !important;
    line-height: 1 !important;
  }
}
@media (min-width: 697px) and (max-width: 767px) {
  .logo{
    margin-top: 80px !important;
  }
  /* Ensure mobile header is used */
  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    width: 100% !important;
    height: 60px !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }

  /* Hide desktop nav */
  .header-containerr {
    display: none !important;
  }

  /* Menu button on far left */
  #menu-btn {
    flex-shrink: 0 !important;
    margin-right: auto !important;
    background: none !important;
    border: none !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    margin-top: 50px !important;
  }

  /* Logo in dead center */
  .logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-height: 45px !important;
    object-fit: contain !important;
    z-index: 1 !important;
  }

  /* Right icons */
  .icons-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .icons-right > * {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 30px !important;
  }

  /* Search button */
  #search-icon {
    background: none !important;
    border: none !important;
    width: 38px !important;
    height: 38px !important;
    margin-right: -150px !important;
  }

  /* Cart wrapper */
  .cart-icon {
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .cart-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    margin-top: 15px !important;

  }

  #cart-count {
    position: absolute !important;
    top: -4px !important;
    right: -6px !important;
    font-size: 11px !important;
    background: red !important;
    color: white !important;
    border-radius: 50% !important;
    padding: 2px 5px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 768px) {
  .header-containerr {
    display: none !important; /* hide mobile layout */
  }
  /* Ensure left menu icon stays far left */
#menu-btn {
  flex-shrink: 0 !important;
  margin-right: auto !important;
  z-index: 2 !important;
  margin-left: -80px !important;
}

/* Spacer for center alignment (used only for mobile) */
.spacer {
  flex: 1 !important;
}

/* Logo always dead-center */
.logo {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-height: 45px !important;
  object-fit: contain !important;
  z-index: 1 !important;
  margin-top: -25px !important;
}

/* Right icons: search + cart */
.icons-right {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: 100px !important;
  flex-shrink: 0 !important;
}

/* Ensure search icon doesn’t push cart too far if missing */
.icons-right > * {
  max-width: 40px !important;
  min-width: 30px !important;
}

/* Cart icon boundaries */
.cart-icon {
  position: relative !important;
  width: 80px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: -30px !important;
  margin-right: -30px !important;
}

/* Cart image sizing */
.cart-icon img {
  width: 30px !important;
  height: 40px !important;
  object-fit: contain !important;
}

/* Cart badge */
#cart-count {
  position: absolute !important;
  top: 4px !important;
  right: -2px !important;
  font-size: 11px !important;
  background: red !important;
  color: white !important;
  border-radius: 50% !important;
  padding: 2px 5px !important;
  line-height: 1 !important;
}
.search-toggle{
  margin-right: -130px !important;
}
}
