/** Shopify CDN: Minification failed

Line 243:0 Unexpected "{"
Line 243:1 Expected identifier but found "%"
Line 248:0 Unexpected "{"
Line 248:1 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:article (INDEX:3, SCOPED:FALSE) */
.pagination-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Hide Previous/Next text links (we have arrow buttons) */
.pagination-wrapper .prev,
.pagination-wrapper .next {
  display: none;
}

/* Style page number links */
.pagination-wrapper .page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: white;
  color: var(--color-surface-dark, #28282b);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.pagination-wrapper .page:hover {
  background-color: #f3f4f6;
}

/* Active page styling */
.pagination-wrapper .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: var(--color-surface-dark, #28282b);
  color: white;
  border-radius: 12px;
  font-weight: 600;
}

/* Hide dashes/ellipsis styling */
.pagination-wrapper .deco {
  color: #9ca3af;
}
/* END_SECTION:article */

/* START_SECTION:collection (INDEX:7, SCOPED:FALSE) */
.pagination-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Hide Previous/Next text links (we have arrow buttons) */
.pagination-wrapper .prev,
.pagination-wrapper .next {
  display: none;
}

/* Style page number links */
.pagination-wrapper .page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: white;
  color: var(--color-surface-dark, #28282b);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.pagination-wrapper .page:hover {
  background-color: #f3f4f6;
}

/* Active page styling */
.pagination-wrapper .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: var(--color-surface-dark, #28282b);
  color: white;
  border-radius: 12px;
  font-weight: 600;
}

/* Hide dashes/ellipsis styling */
.pagination-wrapper .deco {
  color: #9ca3af;
}
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:8, SCOPED:FALSE) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:14, SCOPED:FALSE) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:featured-products (INDEX:16, SCOPED:FALSE) */
/* Align first column items to compensate for ribbon jutting out */
/* Mobile & Tablet: 2 columns - target odd children (1st, 3rd, 5th...) */
@media (max-width: 1023px) {
  [data-products-grid] > .product-card:nth-child(odd) {
    margin-left: -0.5rem; /* -8px to match pl-2 */
  }
}

/* Desktop: 3 columns - target every 3n+1 (1st, 4th, 7th...) */
@media (min-width: 1024px) {
  [data-products-grid] > .product-card:nth-child(3n+1) {
    margin-left: -0.5rem; /* -8px to match pl-2 */
  }
}
/* END_SECTION:featured-products */

/* START_SECTION:highlights (INDEX:20, SCOPED:FALSE) */
.custom-shadow {
  box-shadow: 0px 4px 36px 0px rgba(0, 0, 0, 0.05);
}
/* END_SECTION:highlights */

/* START_SECTION:instagram-reels (INDEX:21, SCOPED:FALSE) */
.reels-container {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reels-container::-webkit-scrollbar {
  display: none;
}

/* Poster overlay - hide when video is playing */
.reel-card video.playing + .poster-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.poster-overlay {
  z-index: 1;
}

/* Ensure overlays are above poster */
.reel-card > div > div[class*="absolute top-"] {
  z-index: 2;
}
/* END_SECTION:instagram-reels */

/* START_SECTION:new-destinations (INDEX:23, SCOPED:FALSE) */
/* Hide scrollbar on mobile */
.destinations-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.destinations-container::-webkit-scrollbar {
  display: none;
}

/* Scale down cards on mobile to fit 2.5 cards better */
@media (max-width: 767px) {
  .new-destination-card-wrapper .product-card {
    transform: scale(0.9);
    transform-origin: top left;
  }

  /* Adjust bottom spacing to compensate for scale */
  .new-destination-card-wrapper {
    margin-bottom: -5%;
  }
}
{%  comment %}
/* Align first card to compensate for ribbon jutting out */
.destinations-grid > .new-destination-card-wrapper:first-child {
  margin-left: -0.5rem; /* -8px to match pl-2 */
}
{% endcomment %}
.destinations-container {
  padding-left: 0.5rem;
}

.destinations-grid {
  padding-left: 0.5rem;
}
/* END_SECTION:new-destinations */

/* START_SECTION:product-categories (INDEX:27, SCOPED:FALSE) */
.aspect-w-16 {
  position: relative;
  width: 100%;
}

.aspect-w-16::before {
  content: "";
  display: block;
  padding-bottom: 75%; /* 16:12 aspect ratio for categories */
}

.aspect-h-12 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card {
  cursor: pointer;
}

.category-card:hover .bg-gradient-to-t {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
}
/* END_SECTION:product-categories */

/* START_SECTION:promotional-cards (INDEX:30, SCOPED:FALSE) */
.promo-card {
  cursor: pointer;
}
/* END_SECTION:promotional-cards */

/* START_SECTION:search (INDEX:31, SCOPED:FALSE) */
/* Align first column items to compensate for ribbon jutting out */
/* Mobile & Tablet: 2 columns - target odd children (1st, 3rd, 5th...) */
@media (max-width: 1023px) {
  [data-products-grid] > .product-card:nth-child(odd) {
    margin-left: -0.5rem; /* -8px to match pl-2 */
  }
}

/* Desktop: 3 columns - target every 3n+1 (1st, 4th, 7th...) */
@media (min-width: 1024px) {
  [data-products-grid] > .product-card:nth-child(3n+1) {
    margin-left: -0.5rem; /* -8px to match pl-2 */
  }
}

/* Pagination styles */
.pagination-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Hide Previous/Next text links (we have arrow buttons) */
.pagination-wrapper .prev,
.pagination-wrapper .next {
  display: none;
}

/* Style page number links */
.pagination-wrapper .page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: white;
  color: var(--color-surface-dark, #28282b);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.pagination-wrapper .page:hover {
  background-color: #f3f4f6;
}

/* Active page styling */
.pagination-wrapper .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: var(--color-surface-dark, #28282b);
  color: white;
  border-radius: 12px;
  font-weight: 600;
}

/* Hide dashes/ellipsis styling */
.pagination-wrapper .deco {
  color: #9ca3af;
}
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:35, SCOPED:FALSE) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:36, SCOPED:FALSE) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:51, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:product-card (INDEX:54, SCOPED:FALSE) */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ribbon {
  position: relative;
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  border-bottom-left-radius: 0.75rem;
}

.ribbon::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top-left-radius: 0.75rem;
  background: #b80002
}
/* END_SNIPPET:product-card */

/* START_SNIPPET:region-tabs (INDEX:55, SCOPED:FALSE) */
/* Scrollbar hide for horizontal scroll */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .region-tabs-nav {
    gap: 0.5rem;
  }

  .region-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Focus and hover states for accessibility */
.region-tab:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.region-tab:hover:not(.aria-current) {
  background-color: #f9fafb;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .region-tab {
    transition: none;
  }
}
/* END_SNIPPET:region-tabs */