footer:root {
  /* Brand */
  --green-primary: #1F6F43;      /* Deep Export Green */
  --green-hover:   #2A8055;

  /* Text */
  --text-primary:  #1F2933;      /* Charcoal */
  --text-secondary:#4B5563;
  --text-muted:    #6B7280;

  /* Accent (VERY LIMITED) */
  --accent-gold:   #C9A24D;

  /* Backgrounds */
  --bg-light:      #F8FAF9;
  --bg-white:      #FFFFFF;
  --bg-dark:       #1F6F43;

  /* Borders */
  --border-light:  #E5E7EB;
  --border-soft:   #D1D5DB;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li{
  list-style: none;
}

/* TOP STRIP */
.top-strip {
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.top-strip .left, .top-strip .right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-strip i {
  color: var(--green-primary);
}
.top-strip a {
  color: var(--text-primary);
  text-decoration: none;
}
.top-strip .sep {
  color: #ccc;
}

.sticky-wrap { position: static; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 60px;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.site-header.shrink {
  padding: 8px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-offset {
  height: 120px;
}

.left-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 95px;
  transition: height 0.25s ease;
}

.site-header.shrink .logo img {
  height: 55px; /* like 2nd image */
}

/* Search */
.search-box {
  width: 600px;
  display: flex;
}
.search-box input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 30px 0 0 30px;
  outline: none;
}
.search-box button {
   background: #222;
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
}

/* Phone support */
.support {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.support-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f2a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-icon i {
  color: #ffffff;
}
.support-text strong {
  font-size: 13px;
}
.support-text span {
  color: #777;
  font-size: 11px;
}

/* MAIN NAVBAR */
.main-nav {
  background: var(--green-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-item {
  position: relative;
}
.nav-link {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-item a.nav-link:hover {
  color: var(--accent-gold);
}
.nav-item > a.nav-link {
  text-decoration: none;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  background: var(--bg-white);
  color: #333;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 8px 0;
  display: none;
  z-index: 999;
}
.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  color: var(--text-primary);
  font-size: 14px;
  text-decoration: none;
}
.dropdown-menu li a:hover {
  color: var(--green-primary);
  background: var(--bg-light);
}

/* show on hover desktop */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Icons right */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-icons a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}
.bag-wrapper .badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent-gold);
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1f2a2e;
}

.dropdown-sub {
  position: relative;
}

.dropdown-sub > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 8px 0;
  display: none;
  z-index: 1100;
}

.dropdown-submenu li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-submenu li a:hover {
  color: #7cc000;
}

/* Desktop hover */
@media (min-width: 993px) {
  .dropdown-sub:hover > .dropdown-submenu {
    display: block;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .top-strip {
    padding: 8px 15px;
    font-size: 12px;
  }

  .site-header {
    padding: 10px 15px;
  }

  .search-box {
    max-width: none;
  }

  .support-text strong {
    font-size: 11px;
  }

  .hamburger {
    display: block;
  }

  /* stack search below on very small screens */
  @media (max-width: 768px) {
    .site-header {
      flex-wrap: wrap;
      row-gap: 10px;
    }
    .search-box {
      order: 3;
      width: 100%;
    }
  }

  .main-nav {
    padding: 0 15px 10px;
    flex-direction: column;
    align-items: flex-start;
    display: none;  /* hidden by default mobile */
  }

  .main-nav.open {
    display: flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link,
  .nav-item > a.nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }

  /* dropdown mobile: click to open */
  .nav-item.dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #172024;
    color: #ffffff;
  }
  .nav-item.dropdown .dropdown-menu li a {
    color: #ffffff;
    padding-left: 20px;
  }
  .nav-item.dropdown.open > .dropdown-menu {
    display: block;
  }

  .nav-icons {
    margin-top: 10px;
    align-self: flex-end;
  }
}

/* SUBMENU TOGGLE ICON FIX */
.submenu-toggle:hover {
  color: #1f2a2e;  
  margin-left: auto;
  background: transparent;
}

/* when submenu open */
.dropdown-sub.open > a .submenu-toggle {
  color: #7cc000;
}



@media (max-width: 992px) {
  /* MAIN DROPDOWN */
  .nav-item.dropdown .dropdown-menu {
    display: none;
    position: static;
    background: #172024;
    padding: 5px 0;
  }

  .nav-item.dropdown.open > .dropdown-menu {
    display: block;
  }

  /* COUNTRY ITEM */
  .dropdown-sub > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }

  /* SUBMENU FIX */
  .dropdown-submenu {
    display: none;
    position: static;
    background: #1f2a2e;         
    margin-left: 0;
    padding-left: 15px;
  }

  .dropdown-sub.open > .dropdown-submenu {
    display: block;
  }

  .dropdown-submenu li a {
    display: block;
    padding: 8px 15px;
    color: #ddd;
    font-size: 14px;
  }

  .dropdown-submenu li a:hover {
    color: #7cc000;
  }
}



/* FOOTER WRAP */
.site-footer {
  background: #f9fcf8;  /* Light grey instead of dark */
  color: black;
  padding: 40px 60px 20px;
  background-image: url("assets/images/footer/footer.png");
  background-size: cover;
  background-position: center;
  border-top: #052714;
}

/* TOP STRIP */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.footer-top-left {
  flex: 1.2;
}

.footer-top-text {
  margin-top: 10px;
  font-size: 14px;
  color: black;
}

.footer-top-center {
  flex: 1;
  color: black;
}

.footer-top-right {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
}

/* Subscribe */
.footer-subscribe {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 380px;
  color: #1F2933;
}
.footer-subscribe input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--green-primary);
  background-color: #052714;
}
.footer-subscribe button {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border: none;
  border-radius: 30px;
  background: #7cc000;
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Social icons */
.footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(53, 168, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover {
  background: #7cc000;
  transform: translateY(-1px);
}

/* MIDDLE SECTION */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding: 30px 0;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
  color: black;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: var(--green-primary);
}
.footer-col p {
  font-size: 14px;
  color: black;
  margin: 6px 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 7px;
}
.footer-col ul li a {
  font-size: 14px;
  color: black;
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: var(--green-hover);
}

.footer-payment h5 {
  font-size: 14px;
  margin-top: 12px;
  color: black;
}
.footer-payment img {
  margin-top: 8px;
  max-width: 160px;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: black;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom-links a {
  color: var(--bg-dark);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: var(--green-hover);
}

.footer-disclaimer, .footer-bottom p{
  color: #010a0e;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .site-footer {
    padding: 30px 20px 15px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top-right {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-middle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .footer-middle {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

