/* ================================
   General Styling
================================ */
body {
  font-family: 'Noto Serif Ethiopic Condensed', serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #D9D9D9;
  font-size: 16px;
}

/* ================================
   Header Styling
================================ */
#app-header {
  padding: 4px 0 5px;
  background-color: #D9D9D9;
  color: #D9D9D9;
}

#app-header h1 {
  margin: 10px 0;
  font-size: 1.5em;
}

/* ================================
   User Navigation
================================ */
#user-nav {
  padding-top: 25px;
}

#user-nav > a {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 5px 10px;
  font-size: 1em;
  line-height: 1.428571429;
  border-radius: 4px;
  color: #224672;
}

#user-nav > a:hover {
  text-decoration: none;
  color: #224672;
}

/* ================================
   Page Links Styling
================================ */
#page-links {
  display: inline-block;
}

#page-links .piped-list {
  list-style: none;
  padding: 0;
}

#page-links .piped-list li {
  display: inline;
  margin-right: 10px;
}

#page-links a {
  display: inline-block;
  padding: 5px 10px 5px 0;
  font-size: 1em;
  color: #D9D9D9;
  text-decoration: none;
}

#page-links a:hover,
.btn-link,
.btn-link:hover {
  color: #224672;
}

#page-links .piped-list > li:after {
  content: "|";
  color: #D9D9D9;
}

#page-links .piped-list > li:before {
  display: none;
}

/* ================================
   Banner Styling
================================ */
#banner {
  position: relative;
}

#banner h1 {
  font-size: 3em;
  font-weight: bold;
  color: #D9D9D9;
}

/* ================================
   Carousel / Feature Region
================================ */
.carousel-inner .item img {
  width: 100%;
}

.feature-region {
  background-image: none;
}

/* ================================
   Search Form Styling
================================ */
.search-form-container {
  background-color: #224672;
  border: 1px solid #224672;
  padding: 10px;
  border-radius: 5px;
}

#search-form .search-form-container input {
  border: 1px solid #D9D9D9;
  color: #000;
}

#search-form .search-label,
#search-form .search-box-wrapper {
  visibility: hidden;
}

#search-refine-button--refine {
  display: none;
}

#search-refine-button--categories {
  visibility: hidden;
}

::placeholder {
  color: #9f9f9f !important;
}

/* ================================
   Tile / Product Cleanup
================================ */
span.product-account-image-wrapper,
aside.Product__AssociatedProducts {
  display: none;
}

#listings > div.row > div > h3 {
  display: none;
}

/* ================================
   Tile Hover Effects
================================ */
.tile {
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ================================
   Product Tile Styling
================================ */
.product-tile {
  background-color: #ffffff;
  border: 1px solid #224672;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
