/** Shopify CDN: Minification failed

Line 19:10 Expected identifier but found whitespace
Line 19:12 Unexpected "{"
Line 19:21 Expected ":"
Line 19:51 Expected ":"
Line 24:0 Unexpected "{"
Line 24:1 Expected identifier but found "%"
Line 31:0 Unexpected "{"
Line 31:1 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:new-arrivals-sunglasses (INDEX:52) */
.new-arrivals-section {
  padding: {{ section.settings.section_padding }}px 0;
  background: #fff;
  width: 100%;
}

{% if section.settings.full_width %}
.new-arrivals-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 24px;
  padding-right: 24px;
}
{% endif %}

.new-arrivals-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* Columns */
.new-arrivals-section .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.new-arrivals-section.new-arrivals-sunglasses-section {
    padding-bottom: 65px;
}

/* Images */
.new-arrivals-section .image-wrapper {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
}

.new-arrivals-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-arrivals-section .image-wrapper:hover img {
  transform: scale(1.05);
}

/* Text */
.new-arrivals-section .text-block {
  text-align: center;
}

.new-arrivals-section h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.new-arrivals-section p {
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: 16px;
  color: #555;
}

/* Buttons */
.new-arrivals-section .btn {
  display: inline-block;
  padding: 12px 48px;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 1024px) {
  .new-arrivals-section .container {
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .new-arrivals-section .container {
    flex-direction: column;
  }

  .image-wrapper {
    aspect-ratio: 3 / 4;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .btn {
    width: 100%;
    padding: 12px 0;
  }
}
/* END_SECTION:new-arrivals-sunglasses */