/* -----------------------------
   TEXTILE HEADER STYLING
------------------------------ */

/* Reset basics */
.t-header * {
  box-sizing: border-box;
}

/* Header wrapper */
.t-header {
  width: 100%;
  background: #1ecbe1;
  /* border-bottom: 1px solid #e5e5e5; */
  font-family: Arial, sans-serif;
}

/* Top bar container */
.t-header-top {
  padding: 10px 0;
  background: #1ecbe1;
  height: 99px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO */
.t-logo img,
h1 {
  /* height: 55px;
  object-fit: contain; */
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 26px;
}

#logo {
  color: red;
}

/* SEARCH BOX */
.t-search {
  flex: 1;
  max-width: 550px;
  margin: 0 20px;
}

.t-search form {
  display: flex;
  width: 100%;
}

.t-search input {
  width: 100%;
  padding: 10px 15px;
  border: 1.2px solid lightgray;
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 15px;
}

.t-search button {
  padding: 10px 15px;
  border: 1px solid #d1d1d1;
  background: gray;
  color: #ffffff;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* RIGHT ICONS */
.t-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.t-icon {
  color: white;
  font-size: 23px;
  text-decoration: none;
}

.t-icon:hover {
  color: lightgray;
}

/* MOBILE MENU BUTTON */
.t-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* -----------------------------
   DESKTOP CATEGORY MENU
------------------------------ */
.t-nav {
  background: #1ecbe1;
  width: 100%;
}

.t-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 12px 0;
  margin: 0;
  list-style: none;
}

.t-menu li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}

.t-menu li a:hover {
  color: #e1341e;
}

/* -----------------------------
   MOBILE MENU
------------------------------ */
.t-mobile-menu {
  display: none;
  background: #ffffff;
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  padding: 15px;
  border-top: 1px solid #e1e1e1;
  z-index: 999;
}

.t-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.t-mobile-menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.t-mobile-menu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.t-mobile-menu.open {
  display: block;
}

/* -----------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 768px) {
  .t-header-bar {
    display: flex;
    flex-direction: column;
  }
  .t-header-top {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .t-search {
    width: 350px;
  }

  .t-icons {
    /* display: none; */
    gap: 55px;
  }

  .t-menu-btn {
    display: block;
  }

  .t-nav {
    display: none;
  }

  .t-logo img {
    height: 50px;
  }
}

/* home */

.hero-banner {
  background: url("../../../image/catalog/demo/banners/iPhone6.jpg") no-repeat
    center/cover;
  padding: 120px 20px;
  color: #112949;
  font-family: serif;
}

.offer {
  color: #c59622;
  font-weight: bold;
}

.category-section h2,
.best-selling h2 {
  color: #1ecbe1;
  margin-bottom: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.categories,
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
/* cat-item,
img {
  width: 70px;
  height: 200px;
} */
.cat-item img,
.product-card img {
  width: 100%;
  border-radius: 10px;
}
.cat-item p {
  color: #4a4a4a;
  text-align: center;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.cat-item p:hover {
  color: #1ecbe1;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 200;
  font-style: normal;
}

.product-card button {
  background: #c59622;
  color: white;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

.year-sale-banner {
  background: #0a1d3b;
  padding: 25px;
  color: white;
  text-align: center;
  font-size: 22px;
}
