*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial;
}

/* NAVBAR */
nav{
    width: 100%;
    height: 70px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    margin-top: 10PX;
    border: 1px solid #fff;
}

/* LOGO + TEXT */
.logo{ 
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo h2{
    color: rgb(7, 7, 7);
}
.logo img{
    width: 80px;
    border-radius: 5px;
}

/* NAV LINKS */
.links{
    display: flex;
    gap: 20%;
    margin-top: 10px;
    font-weight: 500;
}

.links a{
    color: rgb(2, 2, 2);
    
}
/* links hover */
.links a:hover{
    color: red;
}
/* ICONS */
.icons{
    display: flex;
    gap: 50px;
    font-size: 20px;
    color: rgb(7, 7, 7);
}
/* iamge */
.section1{
    padding: 100px 10%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:url(./98fb219fa11f805aade2224f1d6658764a2395df.jpg) center/cover no-repeat;
}

.another{
    /* border: 1px solid peru; */
    background-color:#fff3E3 ;
    width: 65vh;
    height: 50vh;
    border-radius: 10px;
    top: 53%;
    left: 53%;
    position: absolute;
    
}
.heading{
    font-size: small;
    padding: 10px;
    
}
.heading2{
    padding: 10px;
    color: #b88E2F;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.heading3{
    padding: 10px;
}
/* button */
.btn{
    padding: 40px;
    padding-left: 50px;
    
}
.my-btn{
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    background-color:#b88E2F ;
    border: 1px solid #b88E2F;
    color: #fff;
}
/* section2 */
.text{
    font-size:15px;
}
.text2{
        padding-left: 80vh;
    padding-top: 30px;
    font-weight: 600;
}
.text3{
    padding-left: 68vh;
    padding-top: 5px;
    font-size: larger;
}
.parent{
    display: grid;
    grid-template-columns:48vh 51vh 80vh;
    padding: 20px;
    padding-left:20vh ;
    gap: 30px;
}
.child img ,.child3 img ,.child4 img{
    border-radius: 20px;
    transition: transform 0.3s;
}
.parent,
.child ,.child3 ,.child4,  img:hover{
    transform: translateY(-5px);
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */

}
.info{
    display: flex;
    padding-left: 38vh;
    gap: 40vh;
}
/* cards */
.section-header{
    padding-left: 90vh;
    margin-bottom: 40px;
    font-weight: 900;
}
.product-section {
    padding: 80px 0;
    background: #F9F9F9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.item-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.product-box:hover,
.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.item-thumb {
    position: relative;
    overflow: hidden;
}

.item-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.item-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.item-badge.discount {
    background: #E97171;
    color: #fff;
}

.item-badge.new {
    background: #2EC1AC;
    color: #fff;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 58, 58, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-box:hover .item-overlay,
.item-card:hover .item-overlay {
    opacity: 1;
}

.item-overlay .btn-primary {
    padding: 12px 40px;
}

.item-actions {
    display: flex;
    gap: 15px;
}

.item-actions button {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.item-info {
    padding: 20px;
}

.item-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.item-desc {
    color: #898989;
    font-size: 14px;
    margin-bottom: 10px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-new {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.price-old {
    font-size: 16px;
    color: #B0B0B0;
    text-decoration: line-through;
}

.more-btn-wrap {
    text-align: center;
}

.btn-bordered {
    background: none;
    border: 2px solid #B88E2F;
    color: #B88E2F;
    padding: 15px 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-bordered:hover {
    background: #B88E2F;
    color: #fff;
}

#check{
    display: none;

}
* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif; }
    body { background:#fcf8f3; }
    .slider-container { width:90%; max-width:1200px; margin:60px auto; display:flex; gap:40px; align-items:center; }
    .slider-left { flex:1; }
    .slider-left h2 { font-size:2rem; font-weight:700; margin-bottom:15px; }
    .slider-left p { color:#666; margin-bottom:20px; }
    .slider-left button { background:#B88E2F; color:#fff; border:none; padding:12px 25px; cursor:pointer; transition:0.3s; }
    .slider-left button:hover { background:#9F7A1F; }
    
    .slider-right { flex:2; position:relative; overflow:hidden; }
    .slides { display:flex; transition:0.5s ease-in-out; }
    .slide { min-width:100%; position:relative; border-radius:10px; overflow:hidden; }
    .slide img { width:100%; height:500px; object-fit:cover; }
    
    .slide-info { position:absolute; bottom:20px; left:20px; background:rgba(255,255,255,0.9); padding:15px 20px; border-radius:5px; display:flex; flex-direction:column; }
    .slide-info span { font-size:0.9rem; color:#888; margin-bottom:5px; }
    .slide-info h3 { font-size:1.25rem; font-weight:600; color:#333; }
    
    .slider-nav { position:absolute; bottom:20px; right:20px; display:flex; gap:10px; }
    .slider-nav button { width:12px; height:12px; border-radius:50%; border:none; background:#ccc; cursor:pointer; transition:0.3s; }
    .slider-nav button.active { background:#B88E2F; }
    
    .arrow { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.8); border:none; padding:10px; cursor:pointer; border-radius:50%; font-size:1rem; }
    .arrow-left { left:10px; }
    .arrow-right { right:10px; }
    
    @media(max-width:768px){
      .slider-container { flex-direction:column; gap:20px; }
      .slider-left { text-align:center; }
      .slide img { height:300px; }
    }
    
/* --- Existing Footer CSS --- */

.footer {
    background-color: #ffffff;
    padding: 50px 0 20px 0;
    border-top: 1px solid #eaeaef;
    margin-top: 50px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.brand-col {
    flex-basis: 30%;
}

.newsletter-col {
    flex-basis: 25%;
}

.footer-col h4 {
    font-size: 16px;
    color: #9F9F9F; /* Grey color for headings */
    font-weight: 500;
    margin-bottom: 40px;
}

.footer .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
}

.address {
    color: #9F9F9F;
    font-size: 16px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 30px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    border: none;
    border-bottom: 1px solid #000000;
    padding: 5px 0;
    font-size: 14px;
    outline: none;
    color: #9F9F9F;
    background: transparent;
}

.newsletter-form button {
    border: none;
    border-bottom: 1px solid #000000;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 0;
    text-transform: uppercase;
}
/* Base Grid Setup (Desktop: 1400px wide) */
        .funiro-grid-container {
            /* General styling for the header text container */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 40px;
            padding-bottom: 20px;
        }

        /* --- New CSS for FuniroFurniture Grid Gallery (10 Items) --- */
        .funiro-grid {
            display: grid;
            /* Define 6 columns for precise placement */
            grid-template-columns: repeat(6, 1fr); 
            /* Define 5 rows for the 10-item asymmetric layout */
            grid-template-rows: 150px 180px 150px 150px 150px; 
            gap: 15px;
            max-width: 1400px;
            width: 95%; /* Use 95% width on large screens */
            margin: 0 auto 60px auto; 
            padding: 0 20px;
        }

        .grid-item {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .grid-item:hover {
            transform: scale(1.01);
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Desktop Specific Placement (6-Column Grid) */
        /* 1. Tall Bookshelf */
        .item-1 { grid-column: 1 / 2; grid-row: 1 / 5; }
        /* 2. Wide Laptop */
        .item-2 { grid-column: 2 / 5; grid-row: 1 / 3; }
        /* 3. Tall Dining Room */
        .item-3 { grid-column: 5 / 7; grid-row: 1 / 4; }
        /* 4. Tall Chair */
        .item-4 { grid-column: 2 / 3; grid-row: 3 / 5; }
        /* 5. Wide Vase/Camera */
        .item-5 { grid-column: 3 / 5; grid-row: 3 / 5; }
        /* 6. Tall Bedroom (Spans 2 rows now) */
        .item-6 { grid-column: 5 / 6; grid-row: 4 / 6; }
        /* 7. Tall Kitchen (Spans 2 rows now) */
        .item-7 { grid-column: 6 / 7; grid-row: 4 / 6; }
        /* --- New Items in Row 5 --- */
        /* 8. Bottom Left (Below Item 1) */
        .item-8 { grid-column: 1 / 2; grid-row: 5 / 6; } 
        /* 9. Bottom Center Wide */
        .item-9 { grid-column: 2 / 4; grid-row: 5 / 6; } 
        /* 10. Bottom Center Small */
        .item-10 { grid-column: 4 / 5; grid-row: 5 / 6; }

        
        /* --- Responsive Adjustments --- */

        /* Tablet and Small Laptops (Max-width: 1024px) */
        @media (max-width: 1024px) {
            .funiro-grid {
                /* Reduce to 4 columns for tablet */
                grid-template-columns: repeat(4, 1fr);
                /* Allow rows to be auto and set uniform height for better flow */
                grid-template-rows: auto;
                gap: 12px;
                padding: 0 15px;
            }

            /* Redefine item placement for 4-column layout (Stacking items logically) */
            
            .item-1 { grid-column: 1 / 2; grid-row: auto; height: 350px; }
            .item-2 { grid-column: 2 / 5; grid-row: auto; height: 250px; }
            .item-3 { grid-column: 1 / 3; grid-row: auto; height: 300px; }
            .item-4 { grid-column: 3 / 5; grid-row: auto; height: 200px; }
            .item-5 { grid-column: 1 / 3; grid-row: auto; height: 200px; }
            .item-6 { grid-column: 3 / 5; grid-row: auto; height: 250px; }
            .item-7 { grid-column: 1 / 5; grid-row: auto; height: 300px; } /* Kitchen spans full width */
            
            /* New items stack sequentially */
            .item-8 { grid-column: 1 / 3; grid-row: auto; height: 200px; }
            .item-9 { grid-column: 3 / 5; grid-row: auto; height: 200px; }
            .item-10 { grid-column: 1 / 5; grid-row: auto; height: 200px; }
        }

        /* Mobile Devices (Max-width: 768px) */
        @media (max-width: 768px) {
            .funiro-grid {
                /* Single column stacking for all items */
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 0 10px;
                margin: 0 auto 40px auto;
            }
            .grid-item {
                /* All items take full width */
                grid-column: 1 / span 1 !important;
                grid-row: auto !important;
                height: 220px;
            }
            /* A few items can be slightly taller for visual break */
            .item-2, .item-3, .item-7 {
                height: 280px;
            }
        }

.footer-bottom {
    border-top: 1px solid #D9D9D9;
    padding-top: 35px;
}

.footer-bottom p {
    color: #000000;
    font-size: 16px;
}

/* --- Media Queries for Tablets and Large Phones (Max-width: 1024px) --- */
@media (max-width: 1024px) {
    /* Main Layout */
    .container {
        padding: 0 30px; /* Reduce padding for smaller screens */
    }

    /* NAVBAR */
    nav {
        padding: 20px 30px; 
    }
    .links {
        display: none; /* Hide desktop links */
    }
    .icons {
        gap: 25px; 
    }
    
    /* SECTION 1 - HERO BANNER */
    .section1 {
        padding: 50px 5%;
        min-height: 70vh;
        background-position: left center;
    }
    .another {
        /* Position static/relative for normal flow on smaller screens */
        position: static; 
        transform: none; 
        width: 90%; 
        height: auto;
        padding: 20px;
        margin: 0 auto;
        top: auto; 
        left: auto;
    }
    .heading2 {
        font-size: 2rem; 
    }
    .btn {
        padding: 20px 0;
        text-align: left;
    }
    
    /* SECTION 2 - BROWSE THE RANGE */
    .text2, .text3 {
        padding-left: 5%;
        text-align: center;
    }
    .text3 {
        padding-left: 5%;
    }
    .parent {
        /* Change grid to 1 column for stacking */
        grid-template-columns: 1fr;
        padding: 20px 5%;
        padding-left: 5%;
        gap: 20px;
    }
    .info {
        /* Align info text with stacked images */
        flex-direction: column;
        align-items: center;
        padding-left: 5%;
        gap: 20px;
    }

    /* PRODUCTS GRID */
    .section-header {
        padding-left: 5%;
        text-align: center;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 20px;
    }

    /* SLIDER SECTION */
    .slider-container {
        flex-direction: column; /* Stack left and right parts */
        gap: 20px;
        width: 95%;
    }
    .slider-left {
        text-align: center;
    }
    .slide img {
        height: 350px;
    }
}
/* --- Media Queries for Standard Mobile Devices (Max-width: 768px) --- */
@media (max-width: 768px) {
    /* NAVBAR AND HAMBURGER */
    .links {
        position: absolute;
        top: 80px; /* Adjust based on new nav height */
        right: -100%;
        width: 100%;
        background: white; /* Changed background for visibility */
        border: 1px solid #ccc;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
        z-index: 1000;
        height: auto;
    }
    .links a {
        padding: 10px 0;
        display: block;
    }
    .links li {
        margin: 0;
    }

    /* The following is required to show/hide the menu using the checkbox */
    #check:checked ~ .links{
        right: 0;
    }

    .hamburger {
        display: block; /* Show hamburger */
        font-size: 28px;
        cursor: pointer;
    }

    .icons {
        display: none; /* Hide icons on tiny screens, or keep a minimum set */
        gap: 15px;
        font-size: 18px;
    }

    /* SECTION 1 - HERO BANNER */
    .heading2 {
        font-size: 1.8rem; 
    }
    .heading3 {
        font-size: 0.9rem;
    }
    .my-btn {
        padding: 15px 30px;
    }

    /* SECTION 2 - BROWSE THE RANGE */
    .text2 {
        font-size: 1.5rem;
    }
    .text3 {
        font-size: medium;
    }

    /* PRODUCTS GRID (1 column on small mobile) */
    .product-grid {
        grid-template-columns: 1fr; 
    }

    /* FOOTER (Already defined in your code, keeping it simple) */
    .footer-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .brand-col, .newsletter-col, .footer-col {
        align-items: center;
    }
    .newsletter-form {
        justify-content: center;
    }
}

