
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', LEMONMILK;
    padding-top: 0; /* No padding */
    background: #f8f9fa;
}

.navbar{
    background:#94A197;color:white;padding:1rem 2rem;display:flex;
    justify-content:space-between;align-items:center;position:fixed;
    top:0;left:0;right:0;z-index:1000;box-shadow:0 4px 20px rgba(0,0,0,0.1);
}

.logo{font-size:1.8rem;font-weight:700;color:whitesmoke;}

.logo {
    display: flex;
    align-items: center;
    gap: 8px; /* space between logo & text */
}

.logo-img {
    height: 50px;     /* SMALL clean size */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
}

.center-menu{display:flex;list-style:none;gap:3rem;align-items:center;}

.center-menu a{
    color:white;text-decoration:none;padding:0.7rem 1.2rem;
    border-radius:20px;transition:all 0.3s;font-weight:500;
}

.center-menu a:hover{color:#3d8057;background:rgba(255,255,255,0.2);}

/* CONTENTS SIDE DROPDOWN */
.contents{position:relative;}
.dropdown-content{
    position:absolute;top:100%;right:-20px;background:#94A197;
    min-width:200px;padding:1rem 0;box-shadow:0 8px 25px rgba(0,0,0,0.3);
    opacity:0;visibility:hidden;transform:translateY(-10px);
    transition:all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);border-radius:0 0 12px 12px;
    z-index:1001;border-top:3px solid #94A197;
}

.contents:hover .dropdown-content{
    opacity:1;visibility:visible;transform:translateY(0);
}

.dropdown-content a{display:block;padding:0.8rem 1.5rem;border-bottom:1px solid rgba(255,255,255,0.2);}
.dropdown-content a:hover{background:rgba(255,255,255,0.2);}
.dropdown-content a:last-child{border-bottom:none;border-radius:0 0 12px 12px;}

/* PERFECT 1/4 SCREEN MEGA (SHORTER + CONNECTED) */
.mega{position:relative;}
.mega-box{
    position:fixed;top:70px;left:0;right:0;
    height:380px;  /* TALLER FOR MORE IMAGES */
    background:#94A197;padding:2rem 3%;display:grid;
    grid-template-columns:repeat(4,1fr);gap:1.5rem;align-content:start;
    opacity:0;visibility:hidden;
    transform:scale(0.9) translateY(-30px);
    transition:all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index:1001;border-radius:0 0 25px 25px;
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

.mega:hover .mega-box{
    opacity:1;visibility:visible;
    transform:scale(1) translateY(0);
}

.mega-box .category{
    text-align:center;color:white;
    display:flex;
    flex-direction:column;
    align-items:center;  /* CENTER EVERYTHING */
}

.mega-box h3{
    font-size:0.9rem;font-weight:600;margin-bottom:0.8rem;
    text-transform:uppercase;letter-spacing:1px;color:#91dce3;
}

.mega-box img{
    width:45%;
    height:65px;
    object-fit:contain;      /* MAGIC: full body visible */
    object-position:center top;
    transition:all 0.3s ease;
    display:block;
    margin:0 auto -0.3rem;
}

.mega-box img:hover{
    transform:scale(1.08);
}

/* INVISIBLE LINKS */
.char-link {
    display: contents;
    text-decoration: none !important;
}

/* COOL HOVER ANIMATION */
.mega-box img {
    width:70%;
    height:95px;
    object-fit:contain;
    object-position:center top;
    transition:all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display:block;
    margin:0 auto -0.4rem;
    filter: brightness(0.9) saturate(1.1);
}

.char-link:hover img {
    transform: translateY(-8px) scale(1.08);
    filter: brightness(1.1) saturate(1.0) drop-shadow(0 8px 25px rgba(159,214,183,0.6));
    /* GLOW EFFECT */
}

/* FIT ALL */
.mega-box {
    height:480px !important;
    padding:1.5rem 3% !important;
    gap:1rem !important;
}
/* RESPONSIVE */
@media (max-width:1200px){
    .mega-box{left:15%;right:15%;}
}

@media (max-width:768px){
    .mega-box{left:5%;right:5%;height:500px;top:100px;grid-template-columns:repeat(2,1fr);}
}


.slideshow-container {
    position: relative;
    margin-top: -4px;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.2);
    animation: smoothLoop 24s infinite ease-in-out;  /* 32s = 8s per slide */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* FIXED: Images now fill perfectly */
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }

@keyframes smoothLoop {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    5% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 1;
        transform: scale(1);
    }
    30% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 3rem 2rem 6rem 2rem;  /* MORE BOTTOM PADDING */
    text-align: center;
    z-index: 2;
}

.slide-overlay h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FIX ALL SLIDESHOW BUTTONS */
.slide .shop-btn,
.slides .shop-btn {
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative !important;
}

/* ENSURE ANIMATED SLIDES STAY CLICKABLE */
.slide {
    pointer-events: auto !important;
}

.slide-overlay {
    pointer-events: auto !important;
}

/* YOUR WORKING BUTTON (keep this too) */
a.shop-btn {
    background: #94A197 !important;
    color: white !important;
    display: inline-block !important;
    padding: 1.2rem 3rem !important;
    margin-top: 1rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font: 600 1.1rem/1.2 'Poppins', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid #5d6e61 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 25px rgba(61,128,87,0.4) !important;
    transition: all 0.3s ease !important;
}

/* NEW ARRIVALS SECTION */
.new-arrivals {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #94A197;
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.arrival-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
}

.arrival-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(148,161,151,0.3);
}

.arrival-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.arrival-item:hover img {
    transform: scale(1.05);
}

.item-info {
    padding: 2rem;
    text-align: center;
}

.item-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.item-info p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3d8057;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .new-arrivals { padding: 3rem 1rem; }
    .section-header h2 { font-size: 2.5rem; text-align: center; }
    .arrivals-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
/* NEW ARRIVALS SECTION */
.new-arrivals {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #94A197;
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.arrival-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
}

.arrival-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(148,161,151,0.3);
}

.arrival-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.arrival-item:hover img {
    transform: scale(1.05);
}

/* MAKE LINKS INVISIBLE BUT FUNCTIONAL */
.arrival-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* ENHANCED HOVER */
.arrival-link:hover .arrival-item {
    transform: translateY(-20px) !important;
    box-shadow: 0 35px 80px rgba(148,161,151,0.4) !important;
}

.arrival-link:hover .arrival-item img {
    transform: scale(1.08) !important;
}

/* CLICK ANIMATION */
.arrival-link:active .arrival-item {
    transform: translateY(-10px) scale(0.98) !important;
    transition: all 0.1s ease !important;
}

.item-info {
    padding: 2rem;
    text-align: center;
}

.item-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.item-info p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3d8057;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .new-arrivals { padding: 3rem 1rem; }
    .section-header h2 { font-size: 2.5rem; text-align: center; }
    .arrivals-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* SPACING BETWEEN SECTIONS */
.new-arrivals + .new-arrivals {
    padding-top: 2rem;
    background: #fff;  /* ALTERNATE BACKGROUND */
}

/* FAVORITES SECTION SPECIAL */
.favorites-section .section-header h2 {
    color: #3d8057;  /* GREEN ACCENT */
}

.favorites-section .section-header h2::after {
    background: #3d8057;  /* GREEN UNDERLINE */
}


/* MEET BUILDERS - NO BOXES */

.custom-bg {
    background: url('Paper.png') center/cover;
    padding: 4rem 2rem;
    border-radius: 12px; /* Optional rounded corners */
    position: relative;
     width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
}

}
.builders-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.builders-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.builders-section .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    padding-bottom: 25px;
}

.builders-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: #94A197;
    border-radius: 3px;
}
.builders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* CENTER EVERYTHING */
.builder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.builder-item img {
    width: 70%;
    height: 445px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;  /* PERFECT CENTER */
}

.builder-name {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
    transition: all 0.3s;
}

/* HOVER */
.builder-item:hover img {
    transform: scale(1.05);
}

.builder-item:hover .builder-name {
    color: #3d8057;
}

.builder-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.builder-link:hover img {
    transform: scale(1.08);  /* BIGGER HOVER */
}

.builder-link:hover .builder-name {
    color: #3d8057 !important;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .builders-section { padding: 3rem 1rem; }
    .builders-grid { grid-template-columns: 1fr; gap: 2rem; }
    .builder-item img { width: 85%; }
}

.blindbox-section {
    padding: 5rem 2rem;
    text-align: center;
}

.blindbox-container {
    max-width: 400px;
    margin: 0 auto;
}

.blindbox-wrapper {
    position: relative;
}

.toggle-hidden {
    display: none;
}

.blindbox {
    display: block;
    width: 320px;
    height: 320px;
    margin: 0 auto 2rem;
    background: linear-gradient(145deg, #ff6b6b, #f06292);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px #4d8787;
    position: relative;
} 

.blindbox:hover {
    transform: scale(1.02);
}

#box-toggle:checked ~ .blindbox {
    transform: rotateX(90deg) scale(0.9);
    opacity: 0;
}

.box-top {
    height: 65%;
    background: linear-gradient(145deg, #599e9e, #3e6d80);
    border-radius: 25px 25px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-label {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.box-bottom {
    height: 35%;
    background: linear-gradient(145deg, #4ecdc4, #26de81);
    border-radius: 0 0 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.reveal-panel {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: white;
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#box-toggle:checked ~ .reveal-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-20px);
}

.reveal-content {
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reveal-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.reveal-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.reveal-content input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .blindbox, .reveal-panel { width: 280px; height: 280px; }
    .box-label { font-size: 4rem; }
}


.footer {
    background: #94A197 !important;
    color: white !important;
    text-align: center !important;
    padding: 2rem 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .hero h1 { font-size: 2rem !important; }
    .contact-container { grid-template-columns: 1fr !important; }
}