/** Shopify CDN: Minification failed

Line 17:10 Expected identifier but found whitespace
Line 17:12 Unexpected "{"
Line 17:21 Expected ":"
Line 17:51 Expected ":"
Line 19:2 Unexpected "{"
Line 19:3 Expected identifier but found "%"
Line 24:2 Unexpected "{"
Line 24:3 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.new-arrivals-section {
  padding: {{ section.settings.section_padding }}px 0;
  background-color: #fff;
  {% if section.settings.full_width %}
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 20px;
    padding-right: 20px;
  {% endif %}
}

.new-arrivals-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.new-arrivals-section .column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.new-arrivals-section .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.new-arrivals-section .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.new-arrivals-section .image-wrapper:hover img {
  transform: scale(1.05);
}

.new-arrivals-section .text-block {
  text-align: center;
  padding: 24px 0 16px;
}

.new-arrivals-section .text-block h3 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #111;
    line-height: 1.2;
}

.new-arrivals-section .text-block p {
  margin: 0 0 16px;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* ==========================
   Buttons
========================== */
.new-arrivals-section .btn {
    display: inline-block;
    padding: 12px 54px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}
.new-arrivals-section .btn span {
  position: relative;
  z-index: 2;
}

/* Primary Button */
.new-arrivals-section .btn-primary {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.new-arrivals-section .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
  z-index: 0;
}

.new-arrivals-section .btn-primary:hover {
  background-color: #111;
  border-color: #111;
  transform: translateY(-2px);
}

.new-arrivals-section .btn-primary:hover::after {
  left: 100%;
}

/* Outline Button */
.new-arrivals-section .btn-outline {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.new-arrivals-section .btn-outline:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .new-arrivals-section .container { flex-direction: column; gap: 32px; }
  .new-arrivals-section .text-block h3 { font-size: 1.25rem; }
  .new-arrivals-section .text-block { padding: 20px 0 12px; }
  .new-arrivals-section .btn { padding: 10px 22px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .new-arrivals-section .text-block h3 { font-size: 1.1rem; }
  .new-arrivals-section .btn { padding: 8px 20px; font-size: 0.8rem; }
}