.sm-carousel
{
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0px 5%;
  padding-bottom: 0px;
  border-bottom: 10px solid rgb(139,69,19);
}

.dark-carousel
{
  display: block;
  width: 100%;
  background: #000;
  //border-bottom: none;
}

.dark-carousel .mc-carousel-title
{
  color: #fff !important;
}

/*
#carousel-section
{
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0px 5%;
  padding-bottom: 0px;
  border-bottom: 10px solid rgb(139,69,19);
}

/* carousel.css - minimal styles */
.mc-multi-carousels { margin: 30px 0; font-family: Arial, sans-serif; }

.mc-carousel-wrap
{
  display: block;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.mc-carousel-title { margin: 0 0 8px 6px; font-size: 1.1rem; text-transform: uppercase;}
.mc-carousel-controls {
  position: absolute;
  right: 6px;
  top: 0;
}

.mc-carousel-controls button {
  border: none;
  background: transparent;
  background: rgba(139,69,19,0.5);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 10px;
  margin-left: 10px;
  border-radius: 5px;
}

.mc-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
  padding-bottom: 12px;
  -ms-overflow-style: none;    /* IE / Edge */
  list-style: none;
  margin-bottom: -15px;
}

.mc-carousel-track {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  transition: transform 300ms ease;
  will-change: transform;
  /* allow mouse/touch dragging */
  cursor: grab;
}


.mc-carousel-track:active { cursor: grabbing; }

.mc-item-link
{
  text-decoration: none;
  position: relative;
}

.mc-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 8px;
  padding-bottom: 40px;
  box-sizing: border-box;
  min-width: 180px; /* base width */
  flex: 0 0 180px; /* prevents shrinking */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.mc-thumb { width: 100%; padding-bottom: 70%; position: relative; overflow: hidden; border-radius: 4px; background: #f7f7f7; }
.mc-thumb img { position: absolute; width: 100%; height: 100%; object-fit: cover; left: 0; top: 0; }
.mc-info { padding: 8px 0 6px; flex-grow: 1; }
.mc-title { font-size: 0.95rem; margin: 0 0 6px 0; color: #222; }
.mc-price {
  font-weight: 600;
  color: rgb(50,50,50);
  display: block;
  width: 100%;
  text-align: right;
  text-decoration: none;
}


.mc-add-to-cart, .mc-view {
  /*display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  //left: 8px;
  bottom: 5px;
  //margin-top: 8px;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #ddd;
  font-size: 0.9rem;*/
  display: block;
  width: calc(100% - 10px);
  border: 1px solid rgb(139,69,19);
  border-radius: 5px;
  position: absolute;
  left: 5px;
  bottom: 5px;
  background: rgb(139,69,19);
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 8px;
}


.carousel-see-more
{
  display: block;
  text-align: right;
  padding-bottom: 30px;
}

.carousel-see-more a
{
  text-decoration: none;
  color: rgb(139,69,19);
}

.dark-carousel .carousel-see-more a
{
  text-decoration: none;
  color: #fff;
}

.carousel-see-more a:hover
{
  text-decoration: underline;
}



/* responsive: show more/less items by adjusting min-width/flex-basis */
@media (min-width: 640px) {
  .mc-item { min-width: 200px; flex: 0 0 200px; }
  .mc-carousel-title { font-size: 16px}
}
@media (min-width: 900px) {
  .mc-item { min-width: 230px; flex: 0 0 230px; }
}
