#fw-section-featured-collection-0 {

/* Custom Pop-Out Hover Animation for Fourthwall Products */

/* Target the product cards - adjust selectors based on your theme */
.product-card,
.featured-product,
[class*="product"] {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* Pop-out effect on hover */
.product-card:hover,
.featured-product:hover,
[class*="product"]:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Keep first image visible and prevent transitions */
.product-card img,
.featured-product img,
[class*="product"] img {
  transition: none !important;
  transform: none !important;
}

.product-card:hover img,
.featured-product:hover img,
[class*="product"]:hover img {
  transform: none !important;
}

/* Keep first image always visible */
.product-card img:first-child,
.featured-product img:first-child,
[class*="product"] img:first-child {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Hide secondary image on hover */
.product-card img:nth-child(2),
.featured-product img:nth-child(2),
[class*="product"] img:nth-child(2),
.product-card:hover img:nth-child(2),
.featured-product:hover img:nth-child(2),
[class*="product"]:hover img:nth-child(2) {
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* Optional: Add a glow effect */
.product-card:hover,
.featured-product:hover,
[class*="product"]:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(255, 255, 255, 0.1);
}

/* Smooth transition for product title/price */
.product-card .product-title,
.product-card .product-price,
.featured-product .product-title,
.featured-product .product-price {
  transition: color 0.3s ease;
}

.product-card:hover .product-title,
.featured-product:hover .product-title {
  color: #007bff; /* Change to your brand color */
}

/* Optional: Overlay effect */
.product-card::before,
.featured-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}

.product-card:hover::before,
.featured-product:hover::before {
  opacity: 1;
}
}



#fw-section-header {

/* Collections Mega Menu - Multi Column Layout */
.header__list-item {
    position: relative !important;
}

.fw-collections-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 99999;
    padding: 40px 100px;
}

.fw-collections-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

/* Show dropdown when hovering */
.header__list-item:hover .fw-collections-dropdown {
    display: block !important;
}

/* Container for all columns */
.fw-mega-menu-container {
    display: flex;
    gap: 80px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

/* Individual column */
.fw-mega-column {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

/* Column header */
.fw-mega-column h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    color: #000;
}

/* Links container */
.fw-mega-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual links */
.fw-mega-links a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
    line-height: 1.5;
}

.fw-mega-links a:hover {
    color: #000;
}
}