/** Shopify CDN: Minification failed

Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:shop-featured-collection (INDEX:60) */
/* ─────────────────────────────────────────────
   Product Video Preview — Section Styles
   Scoped to .cvp-* to avoid theme conflicts
   Updated with dynamic video sizing support
───────────────────────────────────────────── */

.cvp-wrap {
  width: 100%;
  background: {{ section.settings.bg_color }};
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
}

.cvp-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.cvp-layout {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.2rem 2rem 2.5rem;
}

/* ── Sidebar ── */
.cvp-sidebar {
  flex: 1.2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.cvp-sidebar-heading {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: bold;
    color: #000;
    margin-bottom: 1.2rem;
    border-left: 3px solid #c5aa8b;
    padding-left: 0.75rem;
}

.cvp-collection-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cvp-collection-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.7rem 0.5rem 0.7rem 0;
  border-bottom: 1px solid #edeae6;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.cvp-collection-item:hover {
  background: #faf8f6;
  padding-left: 0.5rem;
  border-radius: 12px;
}

.cvp-col-name {
  font-weight: 500;
  font-size: 1.05rem;
  color: #2c241e;
  letter-spacing: -0.2px;
}

.cvp-view-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: #b38b60;
}

.cvp-collection-item.active .cvp-col-name {
  color: #b4692e;
  font-weight: 600;
}

.cvp-collection-item.active .cvp-view-tag {
  color: #b4692e;
  font-weight: 600;
  border-bottom: 1px dashed #d9bc9a;
}

/* ── Video Box with Dynamic Sizing ── */
.cvp-video-box {
  width: 100%;
  border-radius: 0.875rem;
  overflow: hidden;
  position: relative;
  background: #1e1a16;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cvp-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Portrait (3:4) */
.cvp-video-wrapper[data-video-size="portrait"] {
  padding-top: 133.33%;
}

/* Landscape (16:9) */
.cvp-video-wrapper[data-video-size="landscape"] {
  padding-top: 56.25%;
}

/* Original size - use aspect-ratio from inline style or default to auto */
.cvp-video-wrapper[data-video-size="original"] {
  padding-top: 0;
  aspect-ratio: var(--video-aspect-ratio, 16 / 9);
}

/* Fallback for when aspect ratio not set */
.cvp-video-wrapper:not([data-video-size]) {
  padding-top: 56.25%;
}

.cvp-video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.4s ease;
}

/* Video fit options */
.cvp-video-box video[data-video-fit="cover"] {
  object-fit: cover;
}

.cvp-video-box video[data-video-fit="contain"] {
  object-fit: contain;
  background: #000;
}

.cvp-video-box video[data-video-fit="fill"] {
  object-fit: fill;
}

.cvp-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0, var(--overlay-opacity, 0.4)), transparent);
  padding: 1rem 1.2rem;
  pointer-events: none;
}

.cvp-video-label {
  display: inline-block;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.3px;
}

/* ── Sidebar Note ── */
.cvp-sidebar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #a88f76;
  flex-wrap: wrap;
}

/* ── Products / Variant Grid ── */
.cvp-products {
  flex: 2.2;
  min-width: 260px;
}

.cvp-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.8rem;
  transition: opacity 0.25s ease;
}

.cvp-product-grid.cvp-updating {
  opacity: 0.45;
}

.cvp-product-card {
  display: block;
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid #f0eae4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  text-decoration: none;
  color: inherit;
}

.cvp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 28px -16px rgba(0, 0, 0, 0.08);
  border-color: #e2d6cc;
}

.cvp-card-img {
  background: linear-gradient(135deg, #f9f4ef 0%, #ede3d9 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cvp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cvp-img-placeholder {
  font-size: 2.4rem;
  color: #ac8e6f;
}

.cvp-product-info {
  padding: 0.9rem 1rem 1rem;
}

.cvp-product-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2b241f;
  letter-spacing: -0.2px;
  margin-bottom: 0.25rem;
}

.cvp-variant-options {
  font-size: 0.7rem;
  font-weight: 400;
  color: #9a8a72;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  border-left: 1px solid #e0d6cc;
  padding-left: 0.5rem;
}

.cvp-product-price {
  margin-top: 0.4rem;
}

.cvp-price-main {
  font-weight: 600;
  font-size: 1rem;
  color: #4f3a28;
}

/* ── Footer Note ── */
.cvp-footer-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  color: #a88f76;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f0e8e1;
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.cvp-dot {
  width: 4px;
  height: 4px;
  background: #cfbcab;
  border-radius: 50%;
  display: inline-block;
}

/* ── Video Transitions ── */
.cvp-video-fade-out {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cvp-video-fade-in {
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* ── Responsive ── */
@media(min-width: 781px) {
  .medium-up-hidden {display:none!important;}
}
@media (max-width: 780px) {
  .small-hidden {display:none!important;}
  .cvp-layout {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  .cvp-sidebar,
  .cvp-products {
    width: 100%;
    min-width: auto;
  }

  .cvp-product-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .cvp-video-wrapper:not([data-video-size]) {
    padding-top: 100%;
    aspect-ratio: 3 / 4 !important;
}
.cvp-video-box video {
    object-fit: cover;
}
.cvp-wrap {padding-top:0!important;}
.cvp-collection-item.active .cvp-col-name {
  font-size: 1.25rem;
}
.cvp-sidebar-heading {
    position: relative!important;
    text-align: center!important;
    border-left: none!important;
    font-size: 1.5rem!important;
    padding-left: 0!important;
    color: #000 !important;
    font-weight: bold!important;
} 
h3.cvp-sidebar-heading:after {
    content: "";
    height: 2px;
    background: #c5aa8b;
    position: absolute;
    bottom: -2px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 185px;
}
}

@media (max-width: 560px) {
  .cvp-collection-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .cvp-view-tag {
    font-size: 0.7rem;
  }
}
/* END_SECTION:shop-featured-collection */