/* ===========================
   FISHEAZ HEADER - STYLE.CSS
=========================== */

/* Global Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lexend", sans-serif;
  color: #222;
}

/* ===== HEADER WRAPPER ===== */
.fisheaz-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
}

/* ===== CONTAINER ===== */
.fisheaz-header .header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.fisheaz-header .logo img {
  height: 65px;
  width: auto;
  display: block;
}

/* ===== NAVIGATION MENU ===== */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 35px;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown arrow */
.nav-menu ul li.dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
}

.nav-menu ul li a:hover {
  color: #0077b6;
}

/* ===== DROPDOWN MENU ===== */
.nav-menu ul li ul.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  display: none;
  min-width: 260px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.nav-menu ul li:hover ul.dropdown-menu {
  display: block;
}

.nav-menu ul li ul.dropdown-menu li {
  padding: 8px 20px;
}

.nav-menu ul li ul.dropdown-menu li a {
  font-size: 15px;
  color: #333;
  display: block;
  white-space: nowrap;
}

.nav-menu ul li ul.dropdown-menu li a:hover {
  color: #0077b6;
}

/* ===== HEADER RIGHT ICONS ===== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #0077b6;
  text-decoration: none;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #005f8d;
}

/* ===== PHONE NUMBER LINK ===== */
.phone-number-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #0077b6;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.phone-number-link:hover {
  color: #005f8d;
}

.phone-number-link .phone-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  object-fit: contain;
}

/* ===== MOBILE MENU TOGGLE BUTTON ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #0077b6;
}

/* ======================
   MOBILE MENU PANEL
====================== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  z-index: 9999;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  color: #0077b6;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-nav ul.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul.mobile-menu li {
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 10px;
}

.mobile-nav ul.mobile-menu li a {
  display: block;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
}

.mobile-nav ul.mobile-menu li a:hover {
  color: #0077b6;
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-nav ul.mobile-menu li ul.dropdown-menu {
  display: none;
  padding-left: 15px;
  margin-top: 5px;
  border-left: 2px solid #0077b6;
}

.mobile-nav ul.mobile-menu li.dropdown.open > ul.dropdown-menu {
  display: block;
}

/* ===== MOBILE SEARCH ===== */
.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.mobile-search input {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 8px 12px;
  font-family: "Lexend", sans-serif;
}

.mobile-search .search-submit {
  background: #0077b6;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

/* ===== SEARCH POPUP ===== */
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9998;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
}

.search-popup .search-inner {
  width: 90%;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
}

.search-popup input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "Lexend", sans-serif;
  background: transparent;
}

.search-popup button {
  background: #0077b6;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.search-popup .close-search {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* ===== HIDE SEARCH ICON IN MOBILE ===== */
@media (max-width: 991px) {
  .search-toggle {
    display: none !important;
  }
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
  /* .fisheaz-header .header-container {
  
  margin-left: -6%;
  
} */

}



/* ===== MOBILE HEADER FIXES ===== */
@media (max-width: 991px) {

  /* hide login text in mobile */
  .login-btn {
    padding: 8px 10px;
  }

  .login-btn i {
    margin: 0;
  }

  .login-btn::after {
    content: "";
  }

  .login-btn {
    background: none;
    color: #333;
  }

  .login-btn span {
    display: none;
  }

  /* adjust header layout */
  .fisheaz-header .header-container {
    justify-content: space-between;
    gap: 10px;
  }

  .fisheaz-header .logo img {
    height: 45px;
  }

  .header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-icons .icon-btn i,
  .header-icons .login-btn i {
    font-size: 20px;
  }

  .phone-number-link {
    display: none;
  }

  /* avoid overlap */
  .fisheaz-header {
    padding: 8px 0;
  }
}



/* ===== BASE ===== */
.fisheaz-footer {
  background-color: #0c1f2e;
  color: #fff;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}

.fisheaz-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* ===== GRID LAYOUT ===== */
.fisheaz-footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== ABOUT SECTION ===== */
.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.fisheaz-footer-about p {
  font-size: 14px;
  line-height: 1.8;
  color: #dfe7e6;
  margin-bottom: 20px;
}

.fisheaz-social {
  display: flex;
  gap: 14px;
}

.fisheaz-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0072c6;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 15px;
}

.fisheaz-social a:hover {
  background: #00a8ff;
  transform: translateY(-2px);
}

/* ===== LINK COLUMNS ===== */
.fisheaz-footer-links h4,
.fisheaz-footer-policies h4,
.fisheaz-footer-contact h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.fisheaz-footer-links ul,
.fisheaz-footer-policies ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fisheaz-footer-links li,
.fisheaz-footer-policies li {
  margin-bottom: 8px;
}

.fisheaz-footer-links a,
.fisheaz-footer-policies a {
  color: #dfe7e6;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.fisheaz-footer-links a:hover,
.fisheaz-footer-policies a:hover {
  color: #00a8ff;
}

/* ===== CONTACT ===== */
.fisheaz-footer-contact p {
  font-size: 14px;
  color: #dfe7e6;
  line-height: 1.7;
  margin-bottom: 10px;
}

.fisheaz-footer-contact i {
  color: #00a8ff;
  margin-right: 6px;
}

/* ===== PAYMENT ICON ===== */
.fisheaz-payments img {
  margin-top: 10px;
  width: 100px;
  filter: brightness(0) invert(1);
}

/* ===== BOTTOM ===== */
.fisheaz-footer-bottom {
  text-align: center;
  padding: 20px 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.fisheaz-footer-bottom a {
  color: #00a8ff;
  text-decoration: none;
  transition: 0.3s;
}

.fisheaz-footer-bottom a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .fisheaz-footer {
    padding-top: 40px;
  }

  .fisheaz-footer-top {
    display: block; /* restore desktop grid look */
  }

  /* make Quick Links & Policies side by side only on mobile */
  .fisheaz-footer-links,
  .fisheaz-footer-policies {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    text-align: left;
  }

  .fisheaz-footer-about {
    text-align: center;
    margin-bottom: 30px;
  }

  .fisheaz-social {
    justify-content: center;
  }

  .fisheaz-footer-contact {
    text-align: left;
    margin-top: 25px;
  }
}



/* ===== Connect Section ===== */
.connect-col .social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.connect-col .social-icons a {
  background: #fff;
  color: #0077b6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.connect-col .social-icons a:hover {
  transform: translateY(-3px);
  background: #0077b6;
  color: #fff;
}

.contact {
  margin: 5px 0 10px;
  font-size: 14px;
}

.ceo-link {
  color: #2b1d0e;
  text-decoration: underline;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  margin-bottom: 0;
}

.policy-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.policy-links a {
  color: #2b1d0e;
  text-decoration: none;
  font-size: 14px;
}

.policy-links a:hover {
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* ===== Desktop / Tablet ===== */
@media (min-width: 992px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-row-1,
  .footer-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ===== Tablet (below 991px) ===== */
@media (max-width: 991px) {
  .footer-top {
    justify-content: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .footer-row-1,
  .footer-row-2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .connect-col .social-icons {
    justify-content: center;
  }
}

/* ===== MOBILE FIX — Below 600px ===== */
@media (max-width: 600px) {
  .footer-top {
    justify-content: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* ✅ Row 1: Fisheaz + Categories side by side */
  .footer-row-1 {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: nowrap;
    text-align: left;
  }

  /* ✅ Row 2: Test Reports + Connect side by side */
  .footer-row-2 {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: nowrap;
    text-align: left;
  }

  .footer-col {
    flex: 1 1 50%;
    min-width: 45%;
  }

  .connect-col .social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    gap: 15px;
  }
}



/* ===========================
   FISHEAZ HERO STYLES
=========================== */

.fisheaz-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ====== Common Slider Styles ====== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== Dots Navigation ====== */
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(9, 11, 128, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dots .dot.active {
  background-color: #046cb1;
  transform: scale(1.2);
}

/* ====== Hide arrows ====== */
.hero-nav {
  display: none !important;
}

/* ====== Desktop vs Mobile Visibility ====== */
.desktop-hero {
  display: block;
}

.mobile-hero {
  display: none;
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 991px) {
  .hero-slider {
    height: 65vh;
  }
}

@media (max-width: 767px) {
  .desktop-hero {
    display: none;
  }

  .mobile-hero {
    display: block;
    height: 75vh;
  }

  .hero-dots .dot {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-slider {
    height: 60vh;
  }
}



/* ===== Fisheaz Feature Section ===== */
.fisheaz-feature {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 8%;
  background: #f8fbff;
  text-align: center;
}

.fisheaz-feature .feature-box {
  flex: 1 1 300px;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover effect */
.fisheaz-feature .feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Icon + Text alignment only for desktop */
.fisheaz-feature .feature-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
}

/* Icon styles */
.fisheaz-feature img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(41%) sepia(92%) saturate(2168%) hue-rotate(182deg) brightness(99%) contrast(96%);
}

.fisheaz-feature .feature-box:hover img {
  transform: scale(1.1);
}

/* Text content */
.feature-content h4 {
  color: #002b5b;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .fisheaz-feature {
    gap: 30px;
    padding: 50px 5%;
  }
  .fisheaz-feature .feature-box {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .fisheaz-feature {
    flex-direction: column;
    align-items: center;
  }

  .fisheaz-feature .feature-box {
    max-width: 100%;
    flex: 1 1 0px;
    text-align: center;
  }

  /* restore old stacked layout for mobile */
  .fisheaz-feature .feature-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fisheaz-feature img {
    width: 60px;
    height: 60px;
  }
}


/* ===== Fisheaz Products Section ===== */
.fisheaz-products {
  position: relative;
  padding: 30px 5%;
  /* background: radial-gradient(circle at 40% 20%, #b4ecff, #7fd8ff, #3cb8ff); */
  overflow: hidden;
  text-align: center;
  color: #002b3a;
}

/* ===== Animated Background (Fish + Bubbles) ===== */
.fisheaz-products .fish-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.fisheaz-products .fish {
  position: absolute;
  background: url("assests/images/tilapia.png") no-repeat center;
  background-size: contain;
  opacity: 0.1;
  animation: swim-left 28s linear infinite;
}

.fisheaz-products .fish.reverse {
  animation: swim-right 32s linear infinite;
  transform: scaleX(-1);
}

.fisheaz-products .fish.small { width: 90px; height: 90px; top: 20%; left: -100px; animation-duration: 25s; }
.fisheaz-products .fish.medium { width: 140px; height: 140px; top: 50%; left: -150px; animation-duration: 32s; }
.fisheaz-products .fish.large { width: 190px; height: 190px; top: 75%; left: -200px; animation-duration: 40s; }
.fisheaz-products .fish.small2 { width: 100px; height: 100px; top: 15%; right: -120px; animation-duration: 30s; }
.fisheaz-products .fish.medium2 { width: 130px; height: 130px; top: 45%; right: -180px; animation-duration: 36s; }
.fisheaz-products .fish.large2 { width: 180px; height: 180px; top: 80%; right: -220px; animation-duration: 45s; }

@keyframes swim-left {
  0% { transform: translateX(-200px) scaleX(1); }
  50% { transform: translateX(50vw) scaleX(1.05); }
  100% { transform: translateX(110vw) scaleX(-1); }
}
@keyframes swim-right {
  0% { transform: translateX(120vw) scaleX(-1); }
  50% { transform: translateX(50vw) scaleX(-1.05); }
  100% { transform: translateX(-250px) scaleX(1); }
}

/* ===== Floating Bubbles ===== */
.fisheaz-products .bubble {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: bubbleUp linear infinite;
}
.b1 { width: 8px; height: 8px; left: 15%; animation-duration: 9s; animation-delay: 1s; }
.b2 { width: 12px; height: 12px; left: 35%; animation-duration: 11s; animation-delay: 2s; }
.b3 { width: 6px; height: 6px; left: 55%; animation-duration: 8s; animation-delay: 3s; }
.b4 { width: 10px; height: 10px; left: 75%; animation-duration: 10s; animation-delay: 4s; }
.b5 { width: 14px; height: 14px; left: 90%; animation-duration: 12s; animation-delay: 5s; }

@keyframes bubbleUp {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50vh) scale(1.2); opacity: 0.8; }
  100% { transform: translateY(-100vh) scale(0.8); opacity: 0; }
}

/* ===== Section Title ===== */
.fisheaz-products .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 55px;
  color: #003a4e;
  position: relative;
  z-index: 2;
}

/* ===== Product Grid (4 per row on desktop) ===== */
.fisheaz-products .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: stretch;
}

/* ===== Product Card ===== */
.fisheaz-products .product-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 20px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 80, 120, 0.2);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.fisheaz-products .product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.fisheaz-products .product-card:hover img {
  transform: scale(1.08);
}

.fisheaz-products .product-card h4 {
  color: #002a38;
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

.fisheaz-products .product-card .price {
  color: #007fa9;
  font-weight: 500;
  font-size: 1rem;
}

/* ===== Hover Effect ===== */
.fisheaz-products .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.35);
}

/* ===== Load More Button ===== */
.fisheaz-products .load-more {
  margin-top: 60px;
  position: relative;
  z-index: 3;
}
.fisheaz-products .load-more button {
  background: linear-gradient(90deg, #00b4ff, #00ffa8);
  border: none;
  color: #00303f;
  font-size: 1.1rem;
  padding: 14px 35px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.3);
}
.fisheaz-products .load-more button:hover {
  background: linear-gradient(90deg, #00ffa8, #00b4ff);
  transform: scale(1.08);
}

/* ===== Responsive Layout ===== */
@media (max-width: 1199px) {
  .fisheaz-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .fisheaz-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fisheaz-products .product-card img {
    height: 230px;
  }
}

@media (max-width: 600px) {
  .fisheaz-products {
    padding: 60px 6%;
  }
  .fisheaz-products .section-title {
    font-size: 1.8rem;
  }
  /* ✅ Two products per row on mobile */
  .fisheaz-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .fisheaz-products .product-card img {
    height: 180px;
  }
  .fisheaz-products .product-card {
    
    padding: 10px;
   
}
}

/* ===== Remove text decoration for titles and prices ===== */
.fisheaz-products .product-card a {
  text-decoration: none;
}

.fisheaz-products .product-card h4,
.fisheaz-products .product-card .price {
  text-decoration: none;
}




/* ===== Fisheaz Categories Section ===== */
.fisheaz-cate-section {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

/* ===== Section Title ===== */
.fisheaz-cate-section .cate-title {
  font-size: 2.2rem;
  color: #002b45;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  position: relative;
}

.fisheaz-cate-section .cate-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00b7ff, #00ffa9);
  margin: 12px auto 0;
  border-radius: 5px;
}

/* ===== Continuous Scroll Area ===== */
.fisheaz-cate-section .cate-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}

.fisheaz-cate-section .cate-track {
  display: flex;
  width: calc(300px * 12);
  animation: scrollLoop 35s linear infinite;
}

@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== Category Card ===== */
.fisheaz-cate-section .cate-card {
  width: 260px;
  flex-shrink: 0;
  margin: 0 25px;
  text-align: center;
  transition: transform 0.4s ease;
}

.fisheaz-cate-section .cate-card:hover {
  transform: scale(1.05);
}

/* ===== Circular Image Box ===== */
.fisheaz-cate-section .cate-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid #e0f7ff;
  transition: all 0.4s ease;
}

.fisheaz-cate-section .cate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fisheaz-cate-section .cate-card:hover .cate-img img {
  transform: scale(1.1);
}

/* ===== Category Text ===== */
.fisheaz-cate-section .cate-card h4 {
  color: #002b45;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.fisheaz-cate-section .cate-card:hover h4 {
  color: #00b7ff;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991px) {
  .fisheaz-cate-section .cate-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .fisheaz-cate-section .cate-img {
    width: 150px;
    height: 150px;
  }
  .fisheaz-cate-section .cate-track {
    animation-duration: 45s;
  }
}

@media (max-width: 600px) {
  .fisheaz-cate-section .cate-title {
    font-size: 1.7rem;
  }
  .fisheaz-cate-section .cate-img {
    width: 130px;
    height: 130px;
  }
  .fisheaz-cate-section .cate-card h4 {
    font-size: 0.95rem;
  }
  .fisheaz-cate-section .cate-track {
    animation-duration: 55s;
  }
}
/* ===== Mobile View: Show 2 images at a time with continuous scroll ===== */
@media (max-width: 600px) {
  /* Keep auto-loop animation active */
  .fisheaz-cate-section .cate-track {
    display: flex;
    width: calc(260px * 12);
    animation: scrollLoop 55s linear infinite;
  }

  /* Two images visible in viewport by adjusting margins and container width */
  .fisheaz-cate-section .cate-scroll {
    overflow: hidden;
  }

  .fisheaz-cate-section .cate-card {
    width: 50vw; /* shows 2 at a time */
    flex-shrink: 0;
    margin: 0 10px;
  }

  /* Slightly smaller images for better fit */
  .fisheaz-cate-section .cate-img {
    width: 130px;
    height: 130px;
  }

  .fisheaz-cate-section .cate-card h4 {
    font-size: 0.95rem;
    text-decoration: none;
  }
}


.fisheaz-cate-section .cate-card {
  text-decoration: none;
}

.fisheaz-cate-section .cate-card h4 {
  text-decoration: none;
}




/* =============== Fisheaz About Section =============== */
.fisheaz-about {
  background:#daebf03d;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.fisheaz-about .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 50px;
}

/* ---------- LEFT SIDE ---------- */
.fisheaz-about .about-left {
  position: relative;
  flex: 1 1 55%;
  text-align: center;
}

.fisheaz-about .about-curve {
  position: absolute;
  left: -70%;
  top: 0;
  width: 160%;
  height: 100%;
  /* background: #0072c612; */
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
  z-index: 0;
}

.fisheaz-about .about-illustration {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  border-radius: 4%;
}

.fisheaz-about .about-left h2 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 30px;
}

/* ---------- RIGHT SIDE ---------- */
.fisheaz-about .about-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  z-index: 2;
}

.fisheaz-about .story-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fisheaz-about .story-item .circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fisheaz-about .story-item p {
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* ---------- Colored Circles ---------- */
.circle.yellow { background: #ffed9c; }
.circle.blue { background: #b8e3f8; }
.circle.green { background: #b8e7d3; }
.circle.beige { background: #f7ebdc; }
.circle.red { background: #f8b4a4; }
.circle.pink { background: #e6b7f2; }

/* ---------- Text Highlights ---------- */
.yellow-text { color: #f8c132; font-weight: 600; }
.blue-text { color: #62b7d6; font-weight: 600; }
.green-text { color: #74c8a1; font-weight: 600; }
.purple-text { color: #9460c8; font-weight: 600; }
.orange-text { color: #f76d4e; font-weight: 700; }
.pink-text { color: #c66acc; font-weight: 600; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .fisheaz-about {
    padding: 60px 25px;
  }
  .fisheaz-about .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fisheaz-about .about-curve {
    display: none;
  }
  .fisheaz-about .about-left {
    flex: 1 1 100%;
  }
  .fisheaz-about .about-left h2 {
    font-size: 2.4rem;
    margin-top: 25px;
  }
  .fisheaz-about .about-right {
    flex: 1 1 100%;
    text-align: left;
    margin-top: 20px;
  }
  .fisheaz-about .story-item {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .fisheaz-about .about-left h2 {
    font-size: 2rem;
  }
  .fisheaz-about .about-illustration {
    width: 400px;
  }
  .fisheaz-about .story-item .circle {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .fisheaz-about .story-item p {
    font-size: 0.95rem;
  }
}


.fisheaz-why-choose {
  /* padding: 50px 50px; */
  background: #ffffff;
  text-align: center;
}

.fisheaz-why-choose .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 50px;
  position: relative;
}

.fisheaz-why-choose .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00b4d8;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}



.fisheaz-marquee {
  width: 100%;
  overflow: hidden;
  background: #0f75bd;
  padding: 12px 0;
}

.fisheaz-marquee .marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fisheaz-marquee .track {
  display: flex;
  white-space: nowrap;
  animation: scroll-right 25s linear infinite;
}

.fisheaz-marquee span {
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding-right: 20px;
  display: inline-block;
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ✅ Responsive text size */
@media (max-width: 768px) {
  .fisheaz-marquee span {
    font-size: 0.9rem;
    padding-right: 40px;
  }
}

.mark{
    height: 18px;
    width: 18px;
}



.about-hero {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 173, 0.55); /* soft fisheaz blue overlay */
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.about-hero-content {
  text-align: center;
}

.about-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffda00;
  opacity: 1;
}

.breadcrumb .divider {
  margin: 0 8px;
  opacity: 0.8;
}

.breadcrumb .current {
  color: #ffda00;
  font-weight: 500;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    height: 220px;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 200px;
  }

  .about-hero-content h1 {
    font-size: 1.8rem;
  }
}



.about-second {
  background: white;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-second .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1 1 50%;
  color: #333;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2 span {
  color: #00b4d8;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #222;
}

.about-text strong {
  color: #004aad;
}

/* ✅ Responsive Design */
@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
  }

  .about-image {
    order: 1;
    margin-bottom: 30px;
  }

  .about-text {
    order: 2;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-second {
    padding: 60px 15px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}



.fisheaz-coutning {
  background: linear-gradient(135deg, #e8f5ff 0%, #f8fcff 100%);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.fisheaz-coutning .container {
  max-width: 1200px;
  margin: 0 auto;
}

.counting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  justify-items: center;
}

.count-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0, 74, 173, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.count-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.15);
}

.count-box .icon {
  width: 70px;
  height: 70px;
  background: #e8f5ff;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.count-box:hover .icon {
  background: #00b4d8;
}

.count-box .icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.count-box h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004aad;
  margin: 10px 0;
}

.count-box p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .fisheaz-coutning {
    padding: 60px 15px;
  }
  .count-box h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .count-box {
    padding: 30px 15px;
  }
  .count-box h3 {
    font-size: 1.8rem;
  }
  .count-box p {
    font-size: 0.95rem;
  }
}




/* ===== Testimonial Section ===== */
.fisheaz-testi {
  background: white;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.fisheaz-testi .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.fisheaz-testi .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 50px;
  position: relative;
}

.fisheaz-testi .section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #00b4d8;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.testi-card {
  background: #e6f3f9;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 74, 173, 0.1);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.15);
}

.testi-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004aad;
  margin-bottom: 5px;
}

.testi-card span {
  font-size: 0.9rem;
  color: #777;
}

/* Swiper Arrows */
.fisheaz-testi .swiper-button-prev,
.fisheaz-testi .swiper-button-next {
  color: #004aad;
  transition: 0.3s ease;
}

/* --- NEW: Reduced Arrow Size --- */
.fisheaz-testi .swiper-button-prev::after,
.fisheaz-testi .swiper-button-next::after {
  font-size: 20px; /* Adjust this value to control the size */
}
/* ------------------------------- */

.fisheaz-testi .swiper-button-prev:hover,
.fisheaz-testi .swiper-button-next:hover {
  color: #00b4d8;
}

/* Responsive */
@media (max-width: 768px) {
  .fisheaz-testi {
    padding: 60px 15px;
  }

  .fisheaz-testi .section-title {
    font-size: 1.8rem;
  }

  .testi-card {
    padding: 25px 20px;
  }

  .testi-card p {
    font-size: 0.95rem;
  }
}




/* ===== HERO SECTION ===== */
    .category-hero {
      position: relative;
      width: 100%;
      height: 300px;
      background: url('https://images.unsplash.com/photo-1553621042-f6e147245754?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .category-hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 74, 173, 0.55);
    }

    .category-hero .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
    }

    .category-hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .breadcrumb {
      margin-top: 10px;
      font-size: 1rem;
    }
    .breadcrumb a {
      color: #fff;
      opacity: 0.8;
      text-decoration: none;
    }
    .breadcrumb a:hover {
      color: #ffda00;
      opacity: 1;
    }
    .breadcrumb span {
      color: #ffda00;
    }

    /* ===== SEARCH BAR ===== */
    .search-bar {
      max-width: 800px;
      margin: 40px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      padding: 0 20px;
    }

    .search-bar input {
      flex: 1;
      padding: 12px 18px;
      border-radius: 30px;
      border: 1px solid #ccc;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }
    .search-bar input:focus {
      border-color: #00b4d8;
      box-shadow: 0 0 5px rgba(0,180,216,0.4);
    }
    .search-bar button {
      padding: 12px 20px;
      border-radius: 30px;
      border: none;
      background: #004aad;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s ease;
    }
    .search-bar button:hover {
      background: #00b4d8;
    }

    /* ===== CATEGORIES GRID ===== */
    .category-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px 100px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 5px 20px rgba(0, 74, 173, 0.1);
      transition: all 0.4s ease;
      background: #fff;
    }

    .category-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 20px 20px 0 0;
      transition: transform 0.4s ease;
    }

    .category-card:hover img {
      transform: scale(1.08);
    }

    .category-content {
      padding: 20px;
      text-align: center;
    }

    .category-content h3 {
      font-size: 1.2rem;
      color: #004aad;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .category-content p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 15px;
    }

    .category-content a {
      display: inline-block;
      padding: 8px 20px;
      border-radius: 25px;
      background: #00b4d8;
      color: #fff;
      text-decoration: none;
      transition: 0.3s ease;
      font-weight: 500;
    }
    .category-content a:hover {
      background: #004aad;
    }


    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .category-hero h1 {
        font-size: 2rem;
      }
      .search-bar input {
        width: 100%;
      }
    }



.fisheaz-timeline {
  background: #fff;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Center line for desktop */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #016ab3; /* Updated color */
  transform: translateX(-50%);
  z-index: 1;
  animation: lineGrow 2s ease forwards;
}

@keyframes lineGrow {
  from { height: 0; }
  to { height: 100%; }
}

/* Timeline items */
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate layout for desktop */
.timeline-item.left .content-box {
  order: 1;
  text-align: right;
}
.timeline-item.left .image-box {
  order: 2;
}

.timeline-item.right .content-box {
  order: 2;
  text-align: left;
}
.timeline-item.right .image-box {
  order: 1;
}

/* Content */
.content-box {
  width: 45%;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-box h3 {
  font-size: 18px;
  color: #0072c6;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content-box p {
  color: #444;
  line-height: 1.7;
}

/* Images */
.image-box {
  width: 45%;
  text-align: center;
}

.image-box img {
  width: 100%;
  max-width: 280px;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.timeline-item:hover .image-box img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  /* Replace center line with left-side line */
  .timeline::before {
    left: 12px;
    width: 2px;
    background: #016ab3; /* Updated color */
    transform: none;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 50px;
    padding-left: 30px; /* give space for line */
    position: relative;
  }

  /* Dots for each item on line */
  .timeline-item::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: #016ab3; /* Updated color */
    border-radius: 50%;
    z-index: 3;
  }

  /* Unified order (image first → content second) */
  .timeline-item .image-box {
    order: 1 !important;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .timeline-item .content-box {
    order: 2 !important;
    width: 100%;
    text-align: left !important;
  }

  .image-box img {
    max-width: 260px;
    margin: 0 auto;
  }
}



.fisheaz-product-page {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 20px;
  gap: 20px;
}

/* ===== Sidebar Filters ===== */
.filter-sidebar {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.filter-sidebar h2 {
  font-size: 22px;
  color: #0072c6;
  margin-bottom: 20px;
  text-align: center;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.filter-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-group li {
  margin-bottom: 6px;
}

.filter-group label {
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

input[type="range"] {
  width: 100%;
}

.apply-btn {
  background: #0072c6;
  color: #fff;
  width: 100%;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #005fa3;
}

/* ===== Product Display ===== */
.product-display {
  flex: 3 1 800px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* ===== Product Card ===== */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #f8f8f8;
}

.product-details {
  padding: 20px;
  text-align: center;
}

.product-details h3 {
  font-size: 18px;
  color: #0072c6;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.product-price {
  font-size: 17px;
  color: #000;
  font-weight: 600;
  margin-bottom: 15px;
}

.add-cart-btn {
  background: #0072c6;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.add-cart-btn:hover {
  background: #005fa3;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .fisheaz-product-page {
    flex-direction: column;
  }

  .filter-sidebar {
    width: 100%;
    order: 2;
  }

  .product-display {
    order: 1;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .product-image img {
    height: 180px;
  }

  .product-details h3 {
    font-size: 16px;
  }
}



.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* ===== Product Detail Layout ===== */
        .product-wrapper {
            display: flex;
            justify-content: center; /* Center the main content */
            gap: 40px;
            flex-wrap: wrap; /* Allows wrapping on smaller screens */
            margin-bottom: 60px;
        }

        .product-visuals {
            display: flex;
            gap: 20px; /* Space between thumbnails and main image */
            align-items: flex-start; /* Align items to the top */
            flex-wrap: wrap; /* Allow wrapping on small screens */
            justify-content: center; /* Center visuals on small screens */
        }

        /* --- Thumbnail Gallery (Vertical - Desktop) --- */
        .thumbnail-gallery-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px; /* Space between arrows and gallery, and between gallery items */
            position: relative;
        }

        .thumbnail-gallery {
            display: flex;
            flex-direction: column; /* Vertical arrangement */
            gap: 10px;
            max-height: 400px; /* Limit height for scrollable area */
            overflow-y: auto; /* Enable vertical scrolling */
            padding-right: 5px; /* Space for scrollbar */
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
        }

        /* Hide scrollbar for Chrome/Safari */
        .thumbnail-gallery::-webkit-scrollbar {
            display: none;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.2s;
            flex-shrink: 0;
        }

        .thumbnail.active,
        .thumbnail:hover {
            border-color: #0072c6;
        }

        /* Thumbnail Navigation Arrows */
        .thumb-nav-arrow {
            background: #f0f0f0;
            border: 1px solid #ccc;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #555;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }

        .thumb-nav-arrow:hover {
            background: #e6f3f9;
            color: #0072c6;
        }
        /* ----------------------------------- */


        /* --- Main Product Image --- */
        .main-image-container {
            position: relative;
            width: 450px; /* Fixed width for consistency, adjust as needed */
            max-width: 100%;
            background: #fff;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-image {
            width: 100%;
            height: auto;
            border-radius: 8px; /* Slightly smaller radius inside container */
        }

        .fav-icon {
            position: absolute;
            top: 15px; /* Adjust padding of container */
            right: 15px; /* Adjust padding of container */
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }

        .fav-icon:hover {
            transform: scale(1.1);
        }
        /* -------------------------- */


        /* --- 360 View Button --- */
        .view-360-btn {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 10px 20px;
            margin-top: 20px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: #0072c6;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.08);
            transition: background 0.3s, border-color 0.3s;
        }

        .view-360-btn:hover {
            background: #e6f3f9;
            border-color: #0072c6;
        }

        .icon-360 {
            font-weight: 800;
            font-size: 1.1em;
        }
        /* ------------------------ */


        .product-info {
            flex: 1 1 400px;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .product-title {
            font-size: 26px;
            color: #0072c6;
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 22px;
            color: #000;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .short-desc {
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* --- Weight Selector Styles --- */
        .weight-selector {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .weight-btn {
            background: #f0f0f0;
            color: #333;
            border: 1px solid #ccc;
            padding: 10px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .weight-btn.active,
        .weight-btn:hover {
            background: #e6f3f9;
            border-color: #0072c6;
            color: #0072c6;
        }
        /* ------------------------------- */

        .quantity-box {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .quantity-box input {
            width: 60px;
            text-align: center;
            font-size: 16px;
            margin: 0 8px;
            border: 1px solid #ccc;
            border-radius: 6px;
            padding: 6px 0;
            /* Hide the default number input controls */
            -moz-appearance: textfield; /* Firefox */
        }
        .quantity-box input::-webkit-outer-spin-button,
        .quantity-box input::-webkit-inner-spin-button {
            -webkit-appearance: none; /* Chrome, Safari, Edge */
            margin: 0;
        }

        .qty-btn {
            background: #0072c6;
            color: #fff;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }
        .qty-btn:hover {
            background: #005fa3;
        }

        .add-to-cart {
            background: #0072c6;
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.3s;
        }

        .add-to-cart:hover {
            background: #005fa3;
        }

        .product-meta {
            font-size: 14px;
            color: #555;
            margin-top: 20px;
            line-height: 1.8;
        }

        /* ===== Tabs ===== */
        .tabs {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 20px;
            margin-bottom: 60px;
        }

        .tab-buttons {
            display: flex;
            gap: 15px;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
        }

        .tab-btn {
            background: none;
            border: none;
            font-weight: 600;
            padding: 10px 20px;
            cursor: pointer;
            color: #555;
            transition: all 0.3s ease;
            white-space: nowrap; /* Prevent buttons from wrapping */
        }

        .tab-btn.active {
            color: #0072c6;
            border-bottom: 3px solid #0072c6;
        }

        .tab-content {
            display: none;
            color: #444;
            line-height: 1.8;
        }

        .tab-content.active {
            display: block;
        }

        /* ===== Related Products ===== */
        .related-products {
            margin-top: 40px;
        }

        .related-products h3 {
            font-size: 22px;
            color: #0072c6;
            margin-bottom: 20px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
        }

        .related-card {
            background: #fff;
            border-radius: 12px;
            text-align: center;
            padding: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .related-card:hover {
            transform: translateY(-5px);
        }

        .related-card img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .related-card h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
        }

        .related-card p {
            color: #0072c6;
            font-weight: 600;
        }

        /* ===== Responsive (Mobile Overrides) ===== */
        @media (max-width: 992px) {
            .product-wrapper {
                flex-direction: column;
                align-items: center; /* Center items when stacked */
                gap: 20px; /* Reduce gap for mobile */
            }

            .product-visuals {
                flex-direction: column; /* Stack visuals (thumbnails, main image) */
                align-items: center; /* Center them */
                gap: 15px; /* Adjust gap */
                width: 100%;
            }

            /* --- Thumbnail Gallery (Horizontal - Mobile) --- */
            .thumbnail-gallery-wrapper {
                order: 2; /* Place thumbnails below main image */
                flex-direction: row; /* Main container is now horizontal for simple centering/wrapping */
                max-height: none; /* Remove max-height */
                width: 100%; /* Take full width */
                padding: 0 20px; /* Add some padding to see the scroll on edges */
                box-sizing: border-box;
            }

            .thumb-nav-arrow {
                /* Since vertical scroll JS is used, we must hide these on mobile
                where we want horizontal scrolling. */
                display: none;
            }

            .thumbnail-gallery {
                /* The core change for horizontal scroll */
                flex-direction: row; /* Make thumbnails horizontal */
                max-height: 100px; /* Give it a height to contain the row of images */
                overflow-y: hidden; /* No vertical overflow */
                overflow-x: scroll; /* Enable horizontal scrolling */
                padding-right: 0;
                gap: 10px;
                width: 100%;
                justify-content: flex-start; /* Start thumbnails from the left */

                /* Scrollbar styling for horizontal view */
                scrollbar-width: thin; /* Firefox */
                -ms-overflow-style: -ms-autohiding-scrollbar; /* IE/Edge */
            }

            /* Show horizontal scrollbar for Chrome/Safari */
            .thumbnail-gallery::-webkit-scrollbar {
                height: 5px; /* Adjust height for horizontal scrollbar */
                display: block;
            }
            .thumbnail-gallery::-webkit-scrollbar-thumb {
                background: #ccc;
                border-radius: 5px;
            }
            .thumbnail-gallery::-webkit-scrollbar-track {
                background: #f1f1f1;
            }

            .thumbnail {
                flex-shrink: 0; /* Important: Prevents images from shrinking */
                width: 80px; /* Explicit width */
                height: 80px; /* Explicit height */
            }
            /* ----------------------------------- */


            .main-image-container {
                order: 1; /* Place main image above thumbnails */
                width: calc(100% - 40px); /* Use full width minus container padding (20px * 2) */
                max-width: 450px; /* Keep max width for smaller images on larger screens */
                margin: 0 auto;
            }

            .view-360-btn {
                order: 3;
            }

            .product-info {
                margin-top: 0; /* Remove extra margin */
                width: 100%; /* Take full width */
                box-sizing: border-box; /* Include padding in width */
                padding: 20px; /* Adjust padding for mobile */
            }

            .related-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .tab-buttons {
                overflow-x: auto;
                white-space: nowrap; /* Keep buttons in one line */
                padding-bottom: 10px; /* Space for scrollbar */
                justify-content: flex-start;
            }
            
            /* Tab button scrollbar styling */
            .tab-buttons::-webkit-scrollbar {
                height: 5px;
            }
            .tab-buttons::-webkit-scrollbar-thumb {
                background: #ccc;
                border-radius: 5px;
            }
            .tab-buttons::-webkit-scrollbar-track {
                background: #f1f1f1;
            }
        }

        @media (max-width: 480px) {
            .product-title {
                font-size: 22px;
            }
            .product-price {
                font-size: 20px;
            }
        }

/* ===== Product Image Zoom Effect ===== */
.main-image-container {
  overflow: hidden; /* Prevent zoom overflow */
  cursor: zoom-in;
}

.main-image {
  transition: transform 0.4s ease;
  transform-origin: center center;
}

/* Hover Zoom */
.main-image-container:hover .main-image {
  transform: scale(1.2);
}

/* Click-to-Zoom (Toggle Zoom Mode) */
.main-image-container.zoom-active .main-image {
  transform: scale(2);
  cursor: zoom-out;
}




/* ===== Section Title ===== */
.fisheaz-contact-us .section-title {
  text-align: center;
  color: #0072c6;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fisheaz-contact-us .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* ===== Contact Layout ===== */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== Left Side: Form ===== */
.contact-form {
  flex: 1 1 550px;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h3 {
  color: #0072c6;
  font-size: 22px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0072c6;
}

.submit-btn {
  display: inline-block;
  background: #0072c6;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #005fa3;
}

/* ===== Right Side: Info ===== */
.contact-info {
  flex: 1 1 350px;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info h3 {
  color: #0072c6;
  font-size: 22px;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 22px;
  color: #0072c6;
  margin-top: 5px;
}

.info-item h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #000;
}

.info-item p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.info-item a {
  color: #0072c6;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* ===== Bottom Map ===== */
.map-container {
  width: 100%;
  margin-top: 60px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    width: 100%;
  }

  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .fisheaz-contact-us .section-title {
    font-size: 26px;
  }
}



 /* ===== Heading ===== */
.cart-heading {
  text-align: center;
  color: #0072c6;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===== Layout ===== */
.cart-layout {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* ===== Cart Items ===== */
.cart-items {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Image */
.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #f3f5f7;
  border-radius: 8px;
}

/* Details */
.details {
  flex: 1;
  margin-left: 20px;
}

.details h3 {
  font-size: 17px;
  margin: 0;
  color: #000;
}

.details p {
  font-size: 14px;
  color: #777;
  margin: 4px 0 12px;
}

/* Quantity Box */
.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-box input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px;
  font-size: 14px;
}

.qty-box button {
  background: #0072c6;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.qty-box button:hover {
  background: #005fa3;
}

/* Price Area */
.price-area {
  text-align: right;
  margin-top: 2%;
}

.price {
  font-weight: 600;
  font-size: 17px;
  color: #0072c6;
  margin: 0 0 10px;
}

.remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
}

.remove:hover {
  color: #ff4d4d;
}

/* ===== Summary ===== */
.cart-summary {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  height: fit-content;
  position: sticky;
  top: 30px;
}

.cart-summary h3 {
  font-size: 22px;
  color: #0072c6;
  margin-bottom: 25px;
  border-bottom: 2px solid #e6edf5;
  padding-bottom: 10px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.summary-item.total {
  border-top: 2px solid #e6edf5;
  padding-top: 12px;
  font-weight: 700;
  color: #000;
  font-size: 17px;
}

.checkout-btn {
  display: block;
  background: #0072c6;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 14px 0;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background: #005fa3;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .cart-layout {
    flex-direction: column;
  }

  .cart-items,
  .cart-summary {
    flex: 1 1 100%;
  }

  .cart-summary {
    position: relative;
    top: 0;
    margin-top: 20px;
  }
}

/* ✅ UPDATED MOBILE VIEW */
@media (max-width: 600px) {
  .cart-item {
    flex-direction: row; /* Image left, content right */
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }

  .cart-item img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }

  .details {
    flex: 1;
    margin-left: 0;
  }

  .price-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 7%;
  }

  .price {
    margin-top: auto;
  }

  .qty-box {
    justify-content: flex-start;
  }

  .cart-summary {
    text-align: center;
  }

  .checkout-btn {
    padding: 12px 0;
    font-size: 15px;
  }
}



.fisheaz-check-out {
      padding: 60px 20px;
    }

    .checkout-container {
      max-width: 1200px;
      margin: 0 auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 40px;
    }

    /* LEFT SECTION */
    .checkout-left {
      flex: 1 1 55%;
      border-right: 1px solid #e6e6e6;
      padding-right: 30px;
    }

    .checkout-left h2 {
      font-size: 28px;
      color: #0072c6;
      margin-bottom: 20px;
    }

    .checkout-left h3 {
      font-size: 18px;
      color: #333;
      margin: 25px 0 10px;
    }

    .checkout-form .form-group {
      margin-bottom: 15px;
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .checkout-form label {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .checkout-form input,
    .checkout-form textarea {
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      outline: none;
      transition: border 0.3s;
      width: 100%;
      box-sizing: border-box;
    }

    .checkout-form input:focus,
    .checkout-form textarea:focus {
      border-color: #0072c6;
    }

    .form-row {
      display: flex;
      gap: 10px;
      width: 100%;
    }

    .form-group.half {
      flex: 1;
    }

    /* COUPON BOX */
    .coupon-box {
      margin-top: 30px;
      width: 100%;
    }

    .coupon-input {
      display: flex;
      gap: 10px;
      width: 100%;
    }

    .coupon-input input {
      flex: 1;
      padding: 10px 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 14px;
      width: 100%;
      box-sizing: border-box;
    }

    .coupon-input button {
      background: #0072c6;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
      white-space: nowrap;
    }

    .coupon-input button:hover {
      background: #005fa1;
    }

    /* RIGHT SECTION */
    .checkout-right {
      flex: 1 1 40%;
      max-width: 420px;
    }

    .checkout-right h3 {
      font-size: 18px;
      color: #333;
      margin-bottom: 15px;
    }

    /* ORDER ITEM */
    .order-item {
      display: flex;
      align-items: center;
      background: #f8fbff;
      border: 1px solid #e1ecf8;
      border-radius: 10px;
      padding: 10px;
      margin-bottom: 15px;
      gap: 12px;
    }

    .order-item img {
      width: 80px;
      height: 80px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .item-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .item-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .item-header h4 {
      font-size: 15px;
      color: #222;
      margin: 0;
      font-weight: 600;
    }

    .item-header span {
      font-weight: 600;
      color: #0072c6;
      font-size: 15px;
    }

    .item-details p {
      font-size: 13px;
      color: #666;
      margin: 3px 0;
    }

    .quantity-box {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 5px;
    }

    .quantity-box label {
      font-size: 13px;
      color: #555;
    }

    .quantity-box input {
      width: 50px;
      text-align: center;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 4px;
      font-size: 13px;
      outline: none;
      transition: border 0.3s;
    }

    .quantity-box input:focus {
      border-color: #0072c6;
    }

    /* ORDER TOTAL */
    .order-total {
      border-top: 1px solid #e6e6e6;
      margin-top: 15px;
      padding-top: 10px;
    }

    .order-total div {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .grand-total {
      font-weight: 700;
      color: #0072c6;
    }

    /* PAYMENT */
    .payment-method label {
      display: block;
      font-size: 14px;
      background: #f8fbff;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 10px 12px;
      margin-bottom: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .payment-method input {
      margin-right: 8px;
    }

    .payment-method label:hover {
      border-color: #0072c6;
      background: #eef6ff;
    }

    .payment-method{
      text-align: center;
    }

    /* BUTTON */
    .place-order-btn {
      width: 100%;
      background: #0072c6;
      color: #fff;
      font-size: 16px;
      border: none;
      padding: 14px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      margin-top: 20px;
      font-weight: 600;
    }

    .place-order-btn:hover {
      background: #005fa1;
    }

    /* RESPONSIVE FIXES */
    @media (max-width: 992px) {
      .checkout-container {
        flex-direction: column;
        padding: 25px;
      }

      .checkout-left {
        border-right: none;
        padding-right: 0;
      }

      .checkout-right {
        max-width: 100%;
        margin-top: 25px;
      }
    }

    @media (max-width: 576px) {
      .fisheaz-check-out {
        padding: 30px 10px;
      }

      .checkout-container {
        padding: 15px;
      }

      .checkout-left h2 {
        font-size: 22px;
      }

      .form-row {
        flex-direction: column;
        gap: 0;
      }

      .checkout-form input,
      .checkout-form textarea {
        width: 100%;
      }

      .coupon-input {
        flex-direction: column;
      }

      .coupon-input button {
        width: 100%;
      }

      .place-order-btn {
        font-size: 15px;
        padding: 12px;
      }
    }


    .fisheaz-thankyou {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #e6f5ff 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}

.thankyou-container {
  background: #fff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ==================== Animated Tick ==================== */
.success-checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #0072c6;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #0072c6;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  position: relative;
  margin: 0 auto 25px;
}
.success-checkmark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0072c6;
  transform: scale(0);
  animation: popCircle .4s ease-out .3s forwards;
}
@keyframes popCircle {
  to {
    transform: scale(1);
  }
}
.success-checkmark svg {
  position: relative;
  z-index: 1;
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 50px #0072c6;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

/* ==================== Content ==================== */
.thankyou-container h2 {
  color: #0072c6;
  font-size: 26px;
  margin-bottom: 10px;
}

.thankyou-container p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.order-summary {
  background: #f8faff;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  margin-bottom: 30px;
}

.order-summary h4 {
  font-size: 16px;
  color: #0072c6;
  margin-bottom: 10px;
  border-bottom: 2px solid #0072c6;
  display: inline-block;
  padding-bottom: 4px;
}

.order-summary p {
  font-size: 14px;
  color: #444;
  margin: 5px 0;
}

.thankyou-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.thankyou-buttons a {
  text-decoration: none;
  background: #0072c6;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.thankyou-buttons a.secondary {
  background: transparent;
  border: 1.5px solid #0072c6;
  color: #0072c6;
}

.thankyou-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 114, 198, 0.3);
}

/* ==================== Responsive ==================== */
@media (max-width: 600px) {
  .thankyou-container {
    padding: 25px 20px;
  }
  .thankyou-container h2 {
    font-size: 22px;
  }
  .order-summary {
    padding: 15px;
  }
}


    /* ===== Centered Layout with Margin ===== */
#login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;           /* full height viewport */
  padding: 40px 20px;          /* top-bottom space for smaller screens */
  background: white;
  box-sizing: border-box;
}

/* ===== Fisheaz Login Box ===== */
.fisheaz-login {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 40px 35px;
  margin: 40px 0;              /* top-bottom margin for extra breathing space */
}

.fisheaz-login h2 {
  text-align: center;
  color: #0072c6;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 10px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 45px 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
  border-color: #0072c6;
  box-shadow: 0 0 0 3px rgba(0, 114, 198, 0.2);
}

/* ✅ Perfect Eye Alignment */
.toggle-password {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #555;
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.toggle-password:hover {
  color: #0072c6;
}

.forgot-password {
  text-align: right;
  margin-top: -8px;
  margin-bottom: 6px;
}

.forgot-password a {
  color: #0072c6;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  background: #0072c6;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-login:hover {
  background: #005fa3;
}

.signup-text {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #333;
}

.signup-text a {
  color: #0072c6;
  font-weight: 600;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  /* section {
    padding: 30px 15px;
  } */
  .fisheaz-login {
    padding: 30px 25px;
    margin: 20px 0;
  }
  .fisheaz-login h2 {
    font-size: 22px;
  }
}




/* ===== Centered Layout with Margin ===== */
#signup {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 20px;
  background: white;
  box-sizing: border-box;
}

/* ===== Fisheaz Signup Box ===== */
.fisheaz-signup {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 40px 35px;
  margin: 40px 0;
}

.fisheaz-signup h2 {
  text-align: center;
  color: #0072c6;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 10px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  width: 100%;
  padding: 12px 45px 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
  border-color: #0072c6;
  box-shadow: 0 0 0 3px rgba(0, 114, 198, 0.2);
}

/* ✅ Perfect Eye Alignment */
.toggle-password {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #555;
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.toggle-password:hover {
  color: #0072c6;
}

.btn-signup {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  background: #0072c6;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-signup:hover {
  background: #005fa3;
}

.login-text {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #333;
}

.login-text a {
  color: #0072c6;
  font-weight: 600;
  text-decoration: none;
}

.login-text a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  /* section {
    padding: 30px 15px;
  } */
  .fisheaz-signup {
    padding: 30px 25px;
    margin: 20px 0;
  }
  .fisheaz-signup h2 {
    font-size: 22px;
  }
  .phone-number-link{
  display: none;
}
}


/* ===== WRAPPER ===== */
.fisheaz-dashboard {
  display: flex;
  min-height: 100vh;
  flex-wrap: nowrap;
  overflow: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 30%;
  max-width: 300px;
  background: #2e4b60;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.user-profile {
  text-align: center;
  margin-bottom: 20px;
}
.user-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}
.user-profile h3 {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}

.sidebar ul {
  list-style: none;
  width: 100%;
}
.sidebar ul li {
  padding: 12px 20px;
  border-radius: 8px;
  margin: 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  justify-content: flex-start;
}
.sidebar ul li svg {
  width: 20px;
  height: 20px;
}
.sidebar ul li:hover,
.sidebar ul li.active {
  background: #005fa3;
}

/* ===== CONTENT AREA ===== */
.content-area {
  width: 70%;
  flex-grow: 1;
  background: #fff;
  padding: 40px;
  overflow-y: auto;
}

.section {
  display: none;
}
.section.active {
  display: block;
}

.content-area h2 {
  color: #0072c6;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ===== DASHBOARD STATS ===== */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.stat-box {
  background: #e9f3fb;
  border-left: 5px solid #0072c6;
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s;
}
.stat-box:hover {
  background: #d3ebfa;
  transform: translateY(-2px);
}
.stat-box h3 {
  font-size: 20px;
  color: #0072c6;
}
.stat-box p {
  margin-top: 6px;
  font-size: 14px;
  color: #555;
}

/* ===== ORDERS TABLE ===== */
.orders-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
}
.orders-table th,
.orders-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.orders-table th {
  background: #0072c6;
  color: #fff;
}
.orders-table tr:hover {
  background: #eef5fb;
}

button {
  background: #0072c6;
  color: #fff;
  border: none;
  /* padding: 10px 10px; */
  border-radius: 6px;
  cursor: pointer;
  /* margin-top: 10px; */
}

button:hover {
  background: #005fa3;
}

@media (max-width: 900px) {
  .fisheaz-dashboard {
    flex-direction: column;
    min-height: auto;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
    padding: 20px 10px;
    max-width: 100%;
  }

  .user-profile {
    margin-bottom: 10px;
  }

  .sidebar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .sidebar ul li {
    background: rgba(255,255,255,0.1);
    flex: 1 1 45%;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }

  .sidebar ul li svg {
    display: none; /* Hide icons to clean up look on mobile */
  }

  .content-area {
    width: 100%;
    padding: 20px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .orders-table th,
  .orders-table td {
    font-size: 12px;
    padding: 10px;
  }

  .orders-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 500px) {
  .sidebar ul li {
    flex: 1 1 100%;
  }
}


.profile-pic-wrapper {
  position: relative;
  display: inline-block;
}
.upload-icon {
  position: absolute;
  bottom: 5px;
  right: 10px;
  background: #0072c6;
  color: #fff;
  padding: 4px 6px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

/* ADDRESS SECTION */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.address-card {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #0072c6;
}
.address-card h4 {
  margin-bottom: 8px;
  color: #0072c6;
}
.add-address-btn {
  margin-top: 20px;
  background: #0072c6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
#newAddressForm {
  margin-top: 20px;
  background: #eef7ff;
  padding: 15px;
  border-radius: 8px;
}
#newAddressForm.hidden {
  display: none;
}
#newAddressForm input,
#newAddressForm textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* MODAL STYLING */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
}

#dashboard-button{
  padding: 10px 10px;
}


.phone-number-link{
  text-decoration: none;
  color: #0f75bd;
  font-weight: bold;
}



.fisheaz-terms {
  background: #fff;
  padding: 60px 20px;
  line-height: 1.8;
  color: #333;
}

.fisheaz-terms .terms-container {
  max-width: 1000px;
  margin: 0 auto;
}

.fisheaz-terms h1 {
  font-size: 32px;
  color: #0072c6;
  margin-bottom: 20px;
  text-align: center;
 
  font-weight: 700;
}

.fisheaz-terms h2 {
  font-size: 22px;
  color: #005a99;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.fisheaz-terms h3,
.fisheaz-terms h4 {
  font-size: 18px;
  color: #006fbf;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.fisheaz-terms p {
  font-size: 15px;
  margin-bottom: 15px;
  text-align: justify;
}

.fisheaz-terms ul {
  margin: 10px 0 20px 25px;
}

.fisheaz-terms li {
  font-size: 15px;
  margin-bottom: 8px;
}

.fisheaz-terms a {
  color: #0072c6;
  text-decoration: none;
}

.fisheaz-terms a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .fisheaz-terms {
    padding: 40px 15px;
  }

  .fisheaz-terms h1 {
    font-size: 26px;
  }

  .fisheaz-terms h2 {
    font-size: 18px;
  }

  .fisheaz-terms p,
  .fisheaz-terms li {
    font-size: 14px;
  }
}


.fisheaz-faq {
  background: #fff;
  padding: 60px 20px;
  /* font-family: "DM Sans", sans-serif; */
}

.fisheaz-faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.fisheaz-faq h2 {
  text-align: center;
  color: #0072c6;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.fisheaz-faq .faq-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fisheaz-faq .faq-question {
  width: 100%;
  text-align: left;
  background: #f9f9f9;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #005a99;
  cursor: pointer;
  position: relative;
}

.fisheaz-faq .faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #0072c6;
  transition: transform 0.3s;
}

.fisheaz-faq .faq-item.active .faq-question::after {
  content: '–';
  color: #0072c6;
  transform: rotate(180deg);
}

.fisheaz-faq .faq-answer {
  display: none;
  padding: 15px 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.fisheaz-faq .faq-answer p {
  margin: 0;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.fisheaz-faq .faq-item.active .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .fisheaz-faq h2 {
    font-size: 22px;
  }
  .fisheaz-faq .faq-question {
    font-size: 15px;
    padding: 15px;
  }
  .fisheaz-faq .faq-answer p {
    font-size: 14px;
  }
}



.fisheaz-error {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  
  color: #fff;
  padding: 40px 20px;
  text-align: center;
 
}

/* ===============================
   🧊 CONTAINER
   =============================== */
.error-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 480px;
  background: radial-gradient(circle at top left, #ff4c4c, #b30000);
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===============================
   ❌ ERROR ICON
   =============================== */
.error-icon {
  margin: 0 auto 25px;
  width: 90px;
  height: 90px;
  position: relative;
}

.error-icon svg {
  width: 100%;
  height: 100%;
}

.circle {
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 4;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: drawCircle 0.6s ease-out forwards;
}

.cross {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCross 0.4s ease-out 0.6s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCross {
  to { stroke-dashoffset: 0; }
}

/* Red Glow Effect */
.error-icon svg {
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

/* ===============================
   🔤 TEXT STYLES
   =============================== */
.error-container h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.error-container p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 25px;
}

/* ===============================
   📦 ORDER SUMMARY BOX
   =============================== */
.order-summary {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px 20px;
  text-align: left;
  margin-bottom: 25px;
}

.order-summary h4 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.order-summary p {
  margin: 5px 0;
  font-size: 14px;
}

/* ===============================
   🔘 BUTTONS
   =============================== */
.error-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-buttons a {
  background: #fff;
  color: #b30000;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-buttons a.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.error-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ===============================
   📱 RESPONSIVE DESIGN
   =============================== */
@media (max-width: 600px) {
  .error-container {
    padding: 30px 20px;
  }

  .error-container h2 {
    font-size: 20px;
  }

  .error-buttons {
    flex-direction: column;
  }

  .error-buttons a {
    width: 100%;
    text-align: center;
  }
}


/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  /* background-color: #25D366; */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  margin-top: -13vh;
  margin-right: -4vh;
}



/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 50px;
    height: 50px;
    margin-top: -30vh;
  }
}
