/** Shopify CDN: Minification failed

Line 23:8 Expected identifier but found whitespace
Line 23:10 Unexpected "{"
Line 23:19 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:25 Expected ":"
Line 24:51 Expected ":"
Line 25:17 Expected identifier but found whitespace
Line 25:19 Unexpected "{"
Line 25:28 Expected ":"
... and 13 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:footer-advanced (INDEX:18) */
.footer-advanced {
  background: #071F36 !important;
  color: {{ section.settings.text_color }};
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.footer-grid {
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: {{ section.settings.column_gap }}px;
}

.footer-column h4 {
  font-size: {{ section.settings.heading_size }}px;
  margin-bottom:10px;
}

.footer-column a {
  color: inherit;
  text-decoration:none;
  display:block;
  margin-bottom:6px;
  font-size: {{ section.settings.font_size }}px;
}

.newsletter-center {
  text-align:center;
  margin-top:40px;
}

.footer-bottom {
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-accordion-toggle {
  display:none;
}

@media(max-width:768px){

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-accordion-toggle{
    display:block;
    cursor:pointer;
  }

  .footer-column-content{
    display:none;
  }

  .footer-column.active .footer-column-content{
    display:block;
  }

  .desktop-title{
    display:none;
  }

}
/* END_SECTION:footer-advanced */

/* START_SECTION:tilism-slider (INDEX:54) */
.tilism-slider {
  padding: 20px 10px;
  background:rgb(255, 255, 255);
}

.tilism-heading {
  text-align: center;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color:rgb(206, 150, 29);
  font-weight: 600;
}

.tilism-wrapper {
  position: relative;
  overflow: hidden;
}

.tilism-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.tilism-track::-webkit-scrollbar {
  display: none;
}

.tilism-card {
  min-width: 260px;
  max-width: 260px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.tilism-card:hover {
  transform: translateY(-6px);
}

.tilism-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  position: relative;

  height: 320px;              /* fixed height */
  display: flex;
  align-items: center;
  justify-content: center;

  background:rgb(255, 255, 255);        /* clean background */
}

.tilism-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

.tilism-card:hover .tilism-img {
  transform: scale(1.05);
}

.tilism-img.secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.tilism-card:hover .secondary {
  opacity: 1;
}

.tilism-card:hover .primary {
  opacity: 0;
}

.tilism-info {
  margin-top: 10px;
}

.tilism-title {
  font-size: 14px;
  color:rgb(12, 19, 119);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tilism-price {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tilism-sale {
  font-weight: 600;
  color: #000;
}

.tilism-compare {
  text-decoration: line-through;
  color: #999;
}

.tilism-discount {
  color: #6c63ff;
  font-size: 13px;
}

.tilism-compare {
  text-decoration: line-through;
  color: #777;
  margin-right: 5px;
}

.tilism-discount {
  color:rgb(134, 122, 238);
  font-size: 13px;
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #071f36 ;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color:rgb(255, 255, 255);
  z-index: 2;
}

.prev-btn { left: 5px; }
.next-btn { right: 5px; }

/* MOBILE */
@media (max-width: 768px) {
  .tilism-card {
    min-width: 50%;
    max-width: 50%;
  }

  .tilism-track {
    gap: 12px;
  }
  .tilism-heading {
  margin-bottom: -15px;
  margin-top: 10px;
  font-size: 25px;
}
}
/* END_SECTION:tilism-slider */