* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #F4F4F4);
}

/* NAVBAR */
.my-logo {
  width: 40px;
}

.navbar {
  background: #EDEDED;
  padding: 18px 0;
}

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

.nav-wrapper {
  display: flex;
  align-items: center;
}

/* PUSH RIGHT SIDE */
.nav-links {
  order: 2;
  margin-left: auto;
  margin-right: 25px;
  display: flex;
}

/* LOGO */
.logo {
  order: 1;
  font-weight: 600;
  color: #494848;
}

/* LINKS */
.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0089BB;
}

/* ICONS */
.nav-icons {
  order: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #494848;
}
.nav-icons i:hover:nth-child(1){
  color: #0089BB;
}
.nav-icons i {
  cursor: pointer;
}
/* SEARCH BOX (hidden) */
.search-box {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 14px;
}

/* SHOW WHEN ACTIVE */
.search-box.active {
  display: block;
}
/* CART COUNT */
.cart {
  position: relative;
}

.cart span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: black;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* CONTACT HEADER */
.contact-header {
  text-align: center;
  padding: 80px 0 40px;
  background: #F4F4F4;
}

.contact-header h2 {
  font-size: 36px;
  color: #494848;
}

/* CONTACT BOXES */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0;
  background: #EDEDED;
}

.contact-box {
  display: flex;
  flex-direction: column;   /* stack */
  align-items: center;      /* center everything */
  text-align: center;
  padding: 0 20px;
}

/* ICON STYLE FIX */
.contact-box i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: white;
  font-size: 18px;

  flex-shrink: 0;
}

/* ICON COLORS */
.contact-box:nth-child(4) i {
  background: #ff7a59;
}

.contact-box:nth-child(1) i {
  background: #5a8dee;
}

.contact-box:nth-child(2) i {
  background: #25D366;
}

.contact-box:nth-child(3) i {
  background: #FF69B4;
}

.contact-box h4 {
  margin-bottom: 8px;
  color: #494848;
}

.contact-box p {
  font-size: 14px;
  color: #636363;
  line-height: 1.6;
}
.contact-box a {
  text-decoration: none;
  color: #494848;
  font-weight: 500;
}
/* ADDRESS */
.contact-box:nth-child(4):hover a {
  color: #ff7a59;
}

/* EMAIL */
.contact-box:nth-child(1):hover a {
  color: #5a8dee;
}

/* WHATSAPP */
.contact-box:nth-child(2):hover a {
  color: #25D366;
}

.contact-box:nth-child(3):hover a {
  color: #FF69B4;
}

/* MAP */
.map iframe {
  display: block;
}
/* FOOTER */
.footer {
  border-top: 1px solid #e6e0db;
  background: #F4F4F4;
  padding-top: 60px;
}

/* LAYOUT */
.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* TEXT */
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #494848;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #494848;
}

.footer-col p {
  font-size: 14px;
  color: #636363;
  line-height: 1.7;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #636363;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #0089BB;
}

/* GALLERY */
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.footer-gallery img {
  width: 50%;
  border-radius: 6px;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid #e6e0db;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #666;
}
.footer-bottom a{
  text-decoration: none;
  color: inherit;
}
.footer-bottom a:hover {
  color: #0089BB;
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* CONTAINER */
  .container {
    width: 92%;
  }

  /* NAVBAR */
  .nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    order: 1;
    flex: 1;
  }

  .nav-icons {
    order: 2;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .nav-links a {
    margin-right: 15px;
  }

    /* GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .g-card img {
    width: 80px;
  }
  
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-box {
    display: flex;
    flex-direction: row;   /* row only for mobile */
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    padding: 0;
  }

  .contact-info {
    display: flex;
    text-align: left;
    flex-direction: column;
  }

  .contact-info h4 {
    margin-bottom: 5px;
  }

  
    /* FOOTER */
  .footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 20px;
  }

/* ABOUT full width */
  .footer-col:first-child {
    grid-column: span 2;
  }

/* GALLERY full width */
  .gallery-col {
    grid-column: span 2;
  }

}