

.delivery-bar {
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, #e63946, #d83d76);

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
}

.delivery-bar p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-bar {
  width: 100%;
  min-height: 58px;

  background: linear-gradient(90deg, #14216e, #1d358c);

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 55px;

  padding: 8px 20px;

  box-shadow: 0 2px 6px rgba(20, 33, 110, 0.15);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: white;
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
}

.feature-item i {
  color: #66d1d2;
  font-size: 25px;
}

.navbar {
  width: 100%;
  min-height: 130px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 15px 8%;

  background: white;

  box-shadow: 0 4px 14px rgba(20, 33, 110, 0.12);

  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;

  gap: 15px;

  flex-shrink: 0;
}

.logo-australia {
  width: 110px;
  height: 80px;

  background: #14216e;

  clip-path: polygon(
    15% 20%,
    40% 5%,
    75% 20%,
    90% 45%,
    70% 60%,
    85% 80%,
    55% 95%,
    30% 75%,
    5% 80%,
    15% 55%
  );

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 25px;
}

.logo-text h2 {
  line-height: 1;
  font-size: 28px;
  letter-spacing: 1px;
}

.logo-text h2:first-child {
  color: #2ec4c4;
}

.logo-text h2:last-child {
  color: #14216e;
  margin-top: 5px;
}

.logo-company {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #d83d76;
}

.nav-menu {
  display: flex;
  align-items: center;

  gap: 30px;
}

.nav-menu > a {
  position: relative;

  text-decoration: none;

  color: #14216e;

  font-size: 19px;
  font-weight: 700;

  padding: 6px 2px;

  transition: color 0.3s;
}

.nav-menu > a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0;
  height: 3px;

  border-radius: 3px;

  background: #2ec4c4;

  transition: width 0.3s ease;
}

.nav-menu > a:hover {
  color: #2ec4c4;
}

.nav-menu > a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;

  gap: 24px;

  margin-left: 24px;
  padding-left: 24px;

  border-left: 1px solid #e6e9f2;
}

.cart {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eef3fb;
  color: #14216e !important;

  font-size: 20px !important;

  transition: 0.3s;
}

.cart:hover {
  background: #2ec4c4;
  color: #fff !important;
}

.call-box {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 10px 20px;

  border-radius: 50px;

  background: #eef3fb;

  color: #14216e;
}

.call-box > i {
  color: #2ec4c4;
  font-size: 30px;
}

.call-box div {
  display: flex;
  flex-direction: column;
}

.call-box span {
  font-size: 17px;
}

.call-box strong {
  font-size: 20px;
  white-space: nowrap;
}

.menu-btn {
  display: none;

  border: none;
  background: transparent;

  color: #14216e;

  font-size: 30px;

  cursor: pointer;
}

@media (max-width: 1100px) {

  .navbar {
    padding: 15px 4%;
    gap: 24px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-menu > a {
    font-size: 16px;
  }

  .nav-right {
    gap: 16px;
    margin-left: 16px;
    padding-left: 16px;
  }

  .call-box {
    padding: 8px 14px;
  }

  .logo-australia {
    width: 80px;
    height: 65px;
  }

  .logo-text h2 {
    font-size: 22px;
  }

  .feature-bar {
    gap: 25px;
  }

  .feature-item {
    font-size: 15px;
  }

}

@media (max-width: 768px) {

  

  .delivery-bar {
    height: 42px;
  }

  .delivery-bar p {
    font-size: 15px;
  }

  

  .feature-bar {
    min-height: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    padding: 12px 15px;
  }

  .feature-item {
    justify-content: center;

    font-size: 12px;
    gap: 6px;
  }

  .feature-item i {
    font-size: 16px;
  }

  

  .navbar {
    min-height: 85px;

    padding: 10px 20px;

    justify-content: space-between;
  }

  

  .logo {
    gap: 8px;
  }

  .logo-australia {
    width: 55px;
    height: 45px;
    font-size: 15px;
  }

  .logo-text h2 {
    font-size: 17px;
  }

  

  .menu-btn {
    display: block;
  }

  

  .nav-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: white;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 20px;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > a {
    font-size: 17px;

    padding: 14px 5px;

    border-bottom: 1px solid #ddd;
  }

  .nav-menu > a::after {
    display: none;
  }

  .nav-right {
    flex-direction: column;
    align-items: stretch;

    width: 100%;

    margin: 0;
    padding: 0;

    border-left: none;
    border-bottom: 1px solid #ddd;
  }

  .cart {
    display: none;
  }

  

  .call-box {
    padding: 14px 5px;
  }

  .call-box > i {
    font-size: 28px;
  }

  .call-box span {
    font-size: 14px;
  }

  .call-box strong {
    font-size: 16px;
  }

}

.footer {
  width: 100%;
  background: linear-gradient(
    180deg,
    #02040b 0%,
    #050914 45%,
    #172f91 100%
  );

  color: #fff;

  padding: 55px 5% 20px;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;

  display: grid;

  grid-template-columns:
    2.2fr
    1fr
    1fr
    1.5fr;

  gap: 55px;
}

.footer-column {
  color: #fff;
}

.footer-column h2 {
  font-size: 27px;
  margin-bottom: 18px;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.footer-column h4 {
  color: #61c8c3;
  font-size: 15px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 25px;

  margin: 15px 0 30px;
}

.payment-methods span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.payment-methods span:nth-child(2) {
  font-size: 27px;
}

.payment-methods span:nth-child(3) {
  background: #fff;
  color: #111;

  padding: 8px 10px;

  border-radius: 7px;

  font-size: 17px;
}

.auspost {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 12px 0 25px;

  color: #ff4b30;

  font-weight: 700;
}

.auspost-icon {
  font-size: 45px;
}

.auspost span:last-child {
  font-size: 17px;
}

.footer-link {
  color: #fff !important;
  font-weight: 600;
  margin-bottom: 6px !important;
}

.footer-link:hover {
  color: #61c8c3 !important;
}

.footer-menu {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer-menu li {
  font-size: 16px;
  font-weight: 600;

  margin-bottom: 10px;

  cursor: pointer;
}

.footer-menu li:hover {
  color: #61c8c3;
}

.contact-column p {
  margin-bottom: 22px;
}

.contact {
  font-size: 16px !important;
}

.disclaimer {
  width: 100%;
  max-width: 1400px;

  margin: 35px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.disclaimer h4 {
  display: inline;

  font-size: 15px;

  color: #fff;
}

.disclaimer p {
  display: inline;

  font-size: 14px;

  line-height: 1.6;

  color: #fff;
}

.footer-bottom {
  width: 100%;
  max-width: 1400px;

  margin: 35px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.7);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 600;

  line-height: 1.6;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #61c8c3;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons a {
  color: #fff;

  font-size: 24px;
  font-weight: 700;

  text-decoration: none;
}

@media (max-width: 1000px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 600px) {

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h2 {
    font-size: 23px;
  }

  .footer-column p {
    font-size: 14px;
  }

  .payment-methods {
    flex-wrap: wrap;
  }

  .footer-menu li {
    font-size: 15px;
  }

  .disclaimer {
    margin-top: 25px;
  }

  .disclaimer p {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    align-self: flex-end;
  }

}
