/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 104:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.eye-cards-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .eye-cards-grid {
    grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
  }
}
.eye-card {
    border-radius: 16px;
    text-align: left;
}
.eye-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0px;
}
.eye-card h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eye-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}
.eye-card a.button {
  background-color: #4e433f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 12px;
  border-radius: 4px;
  display: inline-block;
}

.eye-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px !important;
}

.prodbtns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    margin-top: -25px;
    background: #e8dcd0;
    padding-bottom: 25px;
    border-radius: 10px;
    min-height: 100px;
}
.prodbtns a {
    background: #776e63;
    padding: 5px 20px;
    font-size: 13px;
    border-radius: 10px;
    color: #fff;
}

.prodbtns a:hover {
    background: #585046;
}
  
.eye-card h3 {
    font-size: 24px;
    font-weight: 400;
}

.shopnow-btn {
    padding: 10px 30px !important;
    border-radius: 10px !important;
    background: #776e63 !important;
}

.shopnow-btn:hover {
    background: #585046 !important;
}

@media (max-width: 600px) {
.eye-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
}
  
</style>