.elementor-190 .elementor-element.elementor-element-df16af3{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2fc98a7 */.collection-section {
  position: relative;
  width: 100%;
  padding: 40px 0 0px;
  background: #FFFFFF;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);

}

.collection-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #6BC2F5;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.badge-text {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
}

.section-title {
  margin: 0 0 20px;
  font-family: 'Playfair Display', serif;
}

.title-light {
  display: block;
  font-size: 26px;
  font-weight: 400;
  color: #666;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.title-gradient {
  display: block;
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(135deg, #1a1a1a 0%, #6BC2F5 40%, #4A9FBF 70%, #1a1a1a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  letter-spacing: -1px;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6BC2F5, #4A9FBF);
  margin: 0 auto;
  border-radius: 3px;
  animation: underlineExpand 0.8s ease forwards;
}

@keyframes underlineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}

/* ========== COLLECTION GRID (DEFAULT: DESKTOP GRID) ========== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Collection Card - Clickable (base styles) */
.collection-card {
  position: relative;
  background: #F5F5F5;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 90%;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.collection-card:hover .card-image img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.collection-card:hover .image-overlay {
  opacity: 0.6;
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(107, 194, 245, 0.95);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 2;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.collection-card:hover .card-badge {
  transform: translateY(-3px);
  background: #6BC2F5;
}

/* Card Info */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.card-link svg {
  transition: transform 0.3s ease;
}

.collection-card:hover .card-info {
  padding-bottom: 24px;
}

.collection-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

.collection-card:hover .card-title {
  transform: translateY(-4px);
}

.card-link:hover {
  color: #6BC2F5;
}

.collection-card:hover .card-link svg {
  transform: translateX(5px);
}

/* Featured Card Styling */
.collection-card.featured .card-image-wrapper {
  padding-bottom: 130%;
}

.collection-card.featured .card-title {
  font-size: 26px;
}

.collection-card.featured .card-badge {
  background: #FF6B6B;
  color: white;
}

.collection-card.featured:hover .card-badge {
  background: #FF5252;
}

/* ========== RESPONSIVE: TABLET & MOBILE -> HORIZONTAL CARROUSEL WITH SCROLLBAR ========== */
/* Tablet breakpoint (max-width: 1024px) and Mobile (max-width: 768px) 
   We unify the carousel behavior for both phone and tablet to ensure horizontal scroll with visible scrollbar */
@media (max-width: 1024px) {
  .collection-section {
    padding: 60px 0 80px;
  }
  
  .collection-container {
    padding: 0 20px;
  }
  
  /* Transform grid into a horizontal scrolling carousel */
  .collection-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    scrollbar-width: thin; /* For Firefox: shows thin scrollbar */
    scrollbar-color: #6BC2F5 #e0e0e0;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    padding-bottom: 20px; /* space for scrollbar */
    margin-bottom: 20px;
    grid-template-columns: unset; /* remove grid definition */
  }
  
  /* Make each card take a consistent width suitable for tablet & phone */
  .collection-card {
    flex: 0 0 75%;         /* 75% width on tablets, good visibility */
    min-width: 260px;
    height: auto;
    scroll-snap-align: start;
  }
  
  /* improve featured card on carousel */
  .collection-card.featured .card-image-wrapper {
    padding-bottom: 120%;  /* keep consistent ratio with others in carousel */
  }
  
  .collection-card.featured .card-title {
    font-size: 22px;
  }
  
  /* Customize scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  .collection-grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .collection-grid::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
  }
  
  .collection-grid::-webkit-scrollbar-thumb {
    background: #6BC2F5;
    border-radius: 10px;
  }
  
  .collection-grid::-webkit-scrollbar-thumb:hover {
    background: #4A9FBF;
  }
  
  /* Adjust card info and spacing */
  .title-gradient {
    font-size: 42px;
  }
  
  .title-light {
    font-size: 16px;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  .card-info {
    padding: 18px 16px 14px;
  }
  
  .card-badge {
    top: 12px;
    left: 12px;
    font-size: 9px;
    padding: 4px 10px;
  }
  
  /* Ensure card link becomes visible on touch devices for better UX (but remains interactive) */
  .collection-card .card-link {
    opacity: 0.9;
    transform: translateY(0);
  }
  
  .collection-card:hover .card-link {
    opacity: 1;
  }
}

/* ========== SPECIFIC PHONE OPTIMIZATION (max-width: 768px) ========== */
@media (max-width: 768px) {
  .collection-section {
    padding: 50px 0 60px;
  }
  
  .collection-container {
    padding: 0 16px;
  }
  
  /* Carousel remains horizontal, but cards take more screen width for better readability on phones */
  .collection-grid {
    gap: 16px;
    scrollbar-width: thin;
    padding-bottom: 16px;
  }
  
  .collection-card {
    flex: 0 0 85%;         /* 85% width on mobile for immersive swiping */
    min-width: 240px;
  }
  
  .card-image-wrapper {
    padding-bottom: 110%;
  }
  
  .collection-card.featured .card-image-wrapper {
    padding-bottom: 110%;
  }
  
  .title-gradient {
    font-size: 36px;
  }
  
  .title-light {
    font-size: 14px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .badge-text {
    font-size: 10px;
    letter-spacing: 3px;
  }
  
  .card-title {
    font-size: 20px;
  }
  
  .collection-card.featured .card-title {
    font-size: 22px;
  }
  
  .card-info {
    padding: 20px 18px 16px;
  }
  
  /* On mobile, always show link for clarity */
  .card-link {
    opacity: 1;
    transform: translateY(0);
  }
  
  .collection-card:hover .card-link {
    transform: translateY(0);
  }
  
  /* Optional: subtle active scale instead of hover for touch */
  .collection-card:active {
    transform: scale(0.98);
    transition: transform 0.1s;
  }
}

/* ========== SMALL PHONES (max-width: 480px) further refinement ========== */
@media (max-width: 480px) {
  .collection-section {
    padding: 40px 0 50px;
  }
  
  .collection-container {
    padding: 0 14px;
  }
  
  .collection-grid {
    gap: 14px;
  }
  
  .collection-card {
    flex: 0 0 90%;
    min-width: 220px;
  }
  
  .title-gradient {
    font-size: 38px;
  }
  
  .title-light {
    font-size: 17px;
    letter-spacing: 2px;
  }
  
  .title-underline {
    width: 40px;
  }
  
  .card-title {
    font-size: 22px;
  }
  
  .card-info {
    padding: 16px 14px 12px;
  }
  
  .card-badge {
    top: 10px;
    left: 10px;
    font-size: 8px;
    padding: 3px 8px;
  }
  
  .card-link {
    font-size: 10px;
  }
  
  .collection-grid::-webkit-scrollbar {
    height: 4px;
  }
}

/* Additional: make carousel snap-proximity feel elegant */
@media (max-width: 1024px) {
  .collection-grid {
    scroll-snap-type: x mandatory;
  }
  .collection-card {
    scroll-snap-align: start;
  }
}

/* Ensure no layout shift on desktop (keep original grid) */
@media (min-width: 1025px) {
  .collection-grid {
    display: grid;
    flex-wrap: unset;
    overflow-x: unset;
    scroll-snap-type: unset;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
  .collection-card {
    flex: unset;
    min-width: unset;
    width: auto;
  }
  .card-link {
    opacity: 0;
  }
  .collection-card:hover .card-link {
    opacity: 1;
  }
}/* End custom CSS */