/*-------------------
This theme uses Bootstrap v5.1.

It is highly recommended to check out Bootstrap's guiding principles,
strategies, and techniques at https://getbootstrap.com/docs/5.1/extend/approach/
before adding custom styling.

To learn more about Bootstrap v5.1, please check
out https://getbootstrap.com/docs/5.1/getting-started/introduction/.
/*-------------------*/

/*-------------------*/
/* Custom Tile Grid */
/*-------------------*/
.custom-tile-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.custom-tile-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.custom-tile-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4px; /* Optional: adds subtle rounded corners */
}

.custom-tile-content {
  background: var(--tile-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  gap: 16px;
  min-height: 100px;
  transition: opacity 0.2s ease;
}

.custom-tile-card:hover .custom-tile-content {
  opacity: 0.95;
}

.custom-tile-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.custom-tile-arrow {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  transition: transform 0.2s ease;
}

.custom-tile-card:hover .custom-tile-arrow {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .custom-tile-grid-inner {
    grid-template-columns: 1fr;
  }

  .custom-tile-card,
  .custom-tile-card.custom-tile-card--half {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .custom-tile-content {
    padding: 24px 18px;
    min-height: auto;
  }

  .custom-tile-title {
    font-size: 16px;
  }
}
/*-------------------*/
/* TOP NAV */
/*-------------------*/

/*-------------------*/
/* HEADER */
/*-------------------*/

/*-------------------*/
/* CATEGORY NAV */
/*-------------------*/

/*-------------------*/
/* CONTENT */
/*-------------------*/
.custom-subcategories {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}
.custom-subcategories a {
  padding: 10px 15px;
  border: 1px solid #f9f9f9;
  margin: 0 6px;
  background-color: #000000;
  display: inline-block;
}
.custom-subcategories a:hover, .custom-subcategories a.active {
  background-color: #000000;
  color: #fff;
  transition: .3s;
}
#s_keyword {
    color: #999;
    background-color: #000;
}
/*-------------------*/
/* PRODUCT THUMBS */
/*-------------------*/

/*-------------------*/
/* PRODUCT */
/*-------------------*/
.form-select {
    color: #ffffff !important;
    background-color: #000000 !important;
}
/*-------------------*/
/* CART/CHECKOUT */
/*-------------------*/
.select2-dropdown {
    background-color: #000;
}
.form-control {
    color: #FFFFFF !important;
    background-color: #000000 !important;
}
.select2-container--bootstrap4 .select2-selection {
    background-color: #000000 !important;
}
.select2-search--dropdown .select2-search__field {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}
/*-------------------*/
/* FOOTER */
/*-------------------*/


/*-------------------*/
/* MEDIA QUERIES */
/*-------------------*/
@media screen and (min-width: 661px){

}

@media screen and (max-width: 1200px){

}

@media screen and (max-width: 660px){

}

@media screen and (max-width: 340px){

}