/* Container styling for the specific shadow & rounding seen in Screenshot 122323 */
.ga-mall-discovery {
    background-color: #fff;
    padding: 40px;
    min-height: 100vh;
    
    display: flex;
    
    gap: 40px;
    max-width: 1500px;
    justify-content: center;

}

.main-layout {
    display: flex;
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Sidebar Styling */
/* .filter-sidebar {
    width: 300px;
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); 
    height: fit-content;
} */

.filter-sidebar {

    width: 30%;
    background: #ffffff;
    border-radius: 25px; /* Rounded corners for the container */
    padding: 35px;
  box-shadow: 4px 0px 12px 0px rgba(0, 0, 0, 0.13);
   height: fit-content;
    position: sticky;
    top: 20px;
}

.search-container {
    background: #ffffff;
    border-radius: 4px; /* Adjusting for a cleaner look */
    padding: 0 10px;
    gab: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border: 1px solid rgb(255, 255, 255);
    
    /* Exact dimensions from image_5579b3.png */
    width: 100%;
    height: 54px;
    box-sizing: border-box;

    /* Drop shadow from image_5579b3.png: X:0, Y:0, Blur:9, Opacity:25% */
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.25);
}

.search-icon {
    color: #000000;
    padding: 0 10px;
    font-size: 16px; 
    font-weight: 600;
}

.search-container input {
    border: none;
    background: transparent;
    
    width: 100%;
    outline: none;
    
    /* Typography from image_55807a.png */
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 400; /* Regular */
    line-height: 24px;
    color: #475569; /* Matching the muted grey color in Screenshot 122323 */
}

/* Custom placeholder styling */
.search-container input::placeholder {
    color: #475569;
}

.filter-category h4 {
    font-family: serif; /* Matches GA Mall heading style */
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.filter-category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.filter-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #5d6d7e;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Checkbox Color from Screenshot 122403 */
.active-check {
    accent-color: #634a2e; 
}

/* Brand Grid Layout */
.brand-content { flex: 1; }

.section-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-family: serif;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    transition: 0.3s ease;
}

.brand-img-box {
    position: relative;
    aspect-ratio: 1/1;
    background: #ddd;
    overflow: hidden;
    width: 100%;
}

.brand-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching seen in some previews */
}

/* Maintain text alignment on large screens */
.brand-details p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #475569;
    max-width: 100%; /* Allow text to wrap naturally based on card width */
}

/* .floor-label {
    position: absolute;
    top: 10px; left: 10px;
    background: #fff;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: bold;
} */

/* Floor Label refinement */
/* .floor-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #E5E7EB; 
    color: #000000;
    padding: 6px 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.offer-label {
    position: absolute;
    top: 55px;
    left: 15px;
    background: #F59E0B;
    color: #FFFFFF;
    padding: 6px 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
} */
 
.tag-container {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px; /* Space between labels from Figma */
    align-items: flex-start; /* Aligns them to the left */
}

.floor-label, .offer-label {
    /* Critical: This makes them take the same width in the flex container */
    width: 100%; 
    min-width: fit-content;
    
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    box-sizing: border-box;
    white-space: nowrap;
    
    /* Typography */
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    letter-spacing: 0px;
}

.floor-label {
    background: #E5E7EB;
    color: #000000;
    font-weight: 400;
}

.offer-label {
    background: #F59E0B;
    color: #FFFFFF;
    font-weight: 700;
}

/* Sale Overlay from image_54a37f.jpg */
/* .sale-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 800; 
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
} */

/* Sale Overlay refined from image_46793d.png */
.sale-overlay {
    position: absolute;
    bottom: 20px;
    left: 0; /* Changed to 0 to allow width: 100% and internal padding */
    
    /* Layout specs from image_46793d.png */
    width: 100%; /* To mimic 'Fill' container behavior */
    height: 48px; /* Exact height from Figma */
    padding: 0 20px; /* Aligns text 20px from the left edge */
    box-sizing: border-box;
    
    /* Typography from image_46793d.png */
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 700; /* 'Bold' in Figma */
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    
    /* Vertical Alignment from image_46793d.png */
    display: flex;
    align-items: center; /* Matches the vertical-center icon in Figma */
    text-align: left; /* Matches the left-align icon in Figma */
}

.brand-details {
    /* Layout from image_3c8fb3.png */
    display: flex;
    flex-direction: column;
    padding-top: 12px; /* Top padding from Figma */
    width: 100%;
    max-width: 412px; /* W: 412 from Figma */
}

/* Typography Correction */
.brand-details h3 {
    font-family: 'Noto Serif', serif; 
    font-weight: 200;
    font-size: 20px;
    color: #191C1D; /* From selection colors */
   line-height: 24px;
   margin: 0;
   text-align: left;
}

.sub-title {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    letter-spacing: 1.6px; /* From image_549bff.png */
    color: #64748B; /* Slate blue-gray from image_54a7b9.png */
    text-transform: uppercase;
    margin-bottom: 10px;
}
.brand-details .sub-title {
    /* Based on previous Manrope styling */
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    letter-spacing: 1.6px;
    color: #64748B;
    text-transform: uppercase;
    margin-top: 4px; /* Adjusting gap based on visual design */
}

.brand-details p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 20px; /* From image_549c3e.png */
    color: #475569; /* Darker gray from selection colors */
    max-width: 412px;
    margin-top: 8px;
}

.pagination-link { text-align: center; margin-top: 40px; }
.pagination-link a { color: #2980b9; text-decoration: none; font-weight: bold; }

/* Responsive View */
@media (max-width: 1024px) {
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-layout { flex-direction: column; }
    .filter-sidebar { width: 100%; box-sizing: border-box; }
    .brand-grid { grid-template-columns: 1fr; }
}


.brand-slider-section {
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    /* Shadow effect from image_3c7d0f.png */
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.18);
    /* margin-bottom: 60px; */
}

.slider-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(250px * 16); /* Adjust based on number of items */
    animation: scrollLoop 30s linear infinite;
}

/* Pause animation on hover */
.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.logo-item img {
    max-width: 150px;
    height: auto;
    /* Standard grayscale to match image_3c7c50.png, remove if you want color */
    /* filter: grayscale(100%);  */
    transition: all 0.4s ease;
}

/* Hover effect: Logo becomes big and colored */
.logo-item:hover {
    transform: scale(1.3);
    z-index: 10;
}

.logo-item:hover img {
    /* filter: grayscale(0%); */
}

/* Infinite loop animation */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8)); /* Scroll exactly half the total width */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-item {
        width: 150px;
    }
    @keyframes scrollLoop {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 8)); }
    }
}


/* Section Container */
.lounge-section {
    padding: 60px 20px;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Manrope', sans-serif;
}

/* Title Styling - Using Noto Serif for elegance */
/* .lounge-title {
    font-family: 'Noto Serif', serif;
    font-size: 2.2rem;
    color: #191C1D;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
} */
 .lounge-title {
    font-family: 'Libertinus Serif', serif; 
    font-weight: 600  ;
    font-size: 40px; 
    line-height: 72px; 
    letter-spacing: 0px; 
    color: #191C1D; 
    text-transform: uppercase;

    width: 100%;
    max-width: 569px; 
    margin-left: 0; 
    margin-bottom: 30px; 
    
    text-align: left;
}

/* Description Styling */
/* .lounge-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 40px;
    max-width: 1100px;
} */

.lounge-description {
    width: 100%;
    max-width: 1723px;
    margin-bottom: 40px;

    font-family: 'Manrope', sans-serif;
    font-weight: 500; 
    font-size: 28px; 
    line-height: 50px;
    letter-spacing: 0px;
    color: #000000;
    text-align: left;
}

/* Gallery Grid */
.lounge-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Gallery Images with Rounded Corners from image_bf15f4.jpg */
.gallery-item {
    width: 100%;
    overflow: hidden;
    border-radius: 30px; /* Matches the curve in image_bf15f4.jpg */
}

.gallery-item img {
    width: 100%;
    height: 450px; /* Set a fixed height for symmetry */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* View More Link */
.view-more-container {
    text-align: center;
}

.view-more-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2980b9;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more-link:hover {
    text-decoration: underline;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .lounge-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .lounge-title {
        font-size: 1.8rem;
    }
}

