/* ATLAS INTERIORS 2024 - FIXED VERSION */
/* Critical fixes applied: horizontal scroll, marquee removed, menu close button, accordion contrast */

/* ==========================================
   MARQUEE SECTION - REMOVED
   ========================================== */
.marquee-section {
    display: none !important;
}

/* Menu close button styling is in style.css - using GSAP scale animation */

/* Fix menu text visibility */
.menu-column h3 {
    color: #ccc !important;
}

.menu-column ul li a {
    color: #fff !important;
}

.menu-column ul li a:hover {
    color: #ccc !important;
}

.menu-column p {
    color: #ccc !important;
}

/* ==========================================
   HORIZONTAL SCROLL - FIXED WITH CSS
   ========================================== */
.horizontal-section {
    padding: 150px 0 !important;
    background: #fff !important;
    height: auto !important;
    overflow: visible !important;
}

.horizontal-title {
    position: relative !important;
    top: auto !important;
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    margin: 0 0 60px 8% !important;
}

.pin-wrap {
    display: flex !important;
    gap: 40px !important;
    padding: 0 8% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    height: auto !important;
    transform: none !important;
}

.pin-wrap::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 auto !important;
    width: 450px !important;
    min-width: 450px !important;
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100% !important;
    height: 550px !important;
    object-fit: cover;
    border-radius: 7px;
}

.product-card .product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.product-card .product-name {
    font-size: 1.75rem;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
}

.product-card .product-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
}

.product-card:hover .product-icon {
    background: #000;
    transform: rotate(90deg);
}

.product-card:hover .product-icon svg {
    stroke: #fff;
}

/* ==========================================
   ACCORDION - FIXED CONTRAST
   ========================================== */
.accordion-section {
    position: relative;
}

.accordion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 247, 245, 0.95);
    z-index: 1;
}

.accordion-wrapper {
    position: relative;
    z-index: 2;
}

.accordion-wrapper h2 {
    color: #000 !important;
}

.accordion-summary {
    color: #000 !important;
}

.accordion-summary::before,
.accordion-summary::after {
    background: #000 !important;
}

.accordion-item {
    border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}

.accordion-content p {
    color: #000 !important;
}

/* ==========================================
   FULL IMAGE SECTION - ALIGNMENT FIX
   ========================================== */
.full-image-section {
    display: flex;
    align-items: center;
}

.full-image-section .content-box {
    padding: 100px 0 100px 10%;
}

.full-image-section .bg-image {
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 75%;
}

/* ==========================================
   MENU LINKS - KEEP IMAGE PREVIEW FROM STYLE.CSS
   ========================================== */
/* The style.css has good hover image previews - don't override ::before */
.menu-link-item {
    padding: 30px 0 !important;
}

/* TWO COLUMN ALIGNMENT FIX */
.two-col .col-right {
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .product-card {
        width: 350px !important;
        min-width: 350px !important;
    }
    
    .product-card img {
        height: 450px !important;
    }
}

@media (max-width: 768px) {
    .menu-close {
        top: 30px;
        right: 30px;
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 300px !important;
        min-width: 300px !important;
    }

    .product-card img {
        height: 400px !important;
    }
}

/* ==========================================
   HERO CTA BUTTONS - MULTIPLE
   ========================================== */
.hero-content .cta + .cta {
    margin-left: 20px;
}

.hero-content .cta:nth-child(2) {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.875rem;
}

.hero-content .cta:nth-child(2):hover {
    background: #000 !important;
    color: #fff !important;
}

.hero-content .cta:nth-child(2)::after {
    display: none;
}

@media (max-width: 768px) {
    .hero-content .cta {
        margin-top: 20px !important;
    }

    .hero-content .cta + .cta {
        margin-left: 0;
        margin-top: 15px !important;
        display: inline-flex;
    }
}
