* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: #ffffff;
    color: #1a1a1a;
    padding-bottom: 5rem;
}

.section-header {
    text-align: center;
    padding: 6rem 2rem 4rem;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
 
}

.section-header h1 {
    ffont-family: "Didot", "Bodoni MT", "Noto Serif Display", "Playfair Display", serif;
    font-size: clamp(3rem, 8vw, 4.5rem); /* Responsive size that pops */
    font-weight: 400;
    font-style: italic; /* Italic serifs are very trendy for 2026 fashion */
    color: #111;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    line-height: 1;
}

.section-header p {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em; /* Wide spacing = luxury */
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    margin-top: 10px;
}

/* Horizontal Grid Setup */
.horizontal-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1%;
}

.horizontal-display-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1%;
}


.outfit-info {
    display: none;
    margin-top: 30px;
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.outfit-info.active {
    display: block;
}

.outfit-info {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.outfit-info.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cms-prod-track {
    display: flex;
    gap: 12px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: #555555 #ebebeb;
}  

.banner-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
  position: relative;
    padding: 1.5rem; /* Creates a gallery-like matte around the image */
    background: #ffffff;
    z-index: 1;
}



.banner-card:hover::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: #111;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-card-B {
    display: flex;
    flex-direction: column;
    gap: 20px;
  position: relative;
    padding: 1rem; /* Creates a gallery-like matte around the image */
    background: #ffffff;
    z-index: 1;
}

.banner-card-B:hover::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: #111;
}

.banner-card-B::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-title {
   font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #111;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1.5px;
    background: #000;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  cursor: crosshair;
  border-radius: 0; 
    overflow: hidden;
}

.banner-wrapper-1 {
    position: relative;
    width: 100%;
    overflow: hidden;
  cursor: crosshair;
  border-radius: 0; 
    overflow: hidden;
/*    background: #f8f8f8;*/
/*    border: 2px solid transparent;*/
    border: 1px solid rgba(140, 149, 159, 0.10);
    box-shadow: 0px 3px 6px 0px rgba(140, 149, 159, 0.15);
}

/* For an extra touch of 2026 tech: */
.banner-wrapper:active {
    cursor: grabbing;
}

.banner-img {
    width: 100%;
/*    aspect-ratio: 4/5;*/
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  filter: contrast(1.05) brightness(0.95); /* Editorial photo finish */
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-wrapper:hover .banner-img {
    transform: scale(1.05);
}

/* Hotspot Aesthetics */
.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
}

.hotspot-pulse {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    border: 2px solid #000;
    border-radius: 50%;
    animation: pulse 2s infinite;
  backdrop-filter: blur(4px); /* Frosts the image behind the dot */
    border: 1.5px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* 2026 Glassmorphic Card */
.hotspot-card {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
    background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2)), 
                      linear-gradient(to bottom right, rgba(255,255,255,0.5), rgba(255,255,255,0));
    background-origin: border-box;
    background-clip: padding-box, border-box;
  
}

.hotspot:hover .hotspot-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5);
  box-shadow: 
        0 15px 30px -5px rgba(0, 0, 0, 0.1), 
        0 25px 40px -10px rgba(0, 0, 0, 0.05);
}

.hotspot.active .hotspot-pulse{
    background: #000;
    border-color: #000;
    animation: none;
}

.hotspot-pulse {
    transition: all .3s ease;
}

.hotspot:hover .hotspot-pulse {
    transform: scale(1.25);
}

.hotspot-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hotspot-card p {
    font-weight: 700;
    margin-bottom: 12px;
}

.buy-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.8rem;
    transition: opacity 0.2s;
  letter-spacing: 0.05em; /* Wider for high-end readability */
    text-transform: uppercase;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.buy-btn:hover {
    opacity: 0.8;
  transform: translateY(-2px); /* Subtle lift on hover */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .horizontal-display {
        grid-template-columns: repeat(2, 1fr); /* Stack vertically on small screens */
        padding: 0 15px;
    }
}


@media (max-width: 430px) {
    
.horizontal-display-3 {
    display: grid; 
grid-template-columns: repeat(1, 3fr);*/
    gap: 20px;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1%;
} 
    
.banner-card-B {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    position: relative;
    padding: 0.8rem;
    background: #ffffff;
    z-index: 1;
}    
    
.horizontal-display { 
    gap: 2px;
    padding-top: 1%;}
}