/* General Styles */
body {
    width: match-parent; /* Changed 100vh to 100vw for full-width body */
    margin: 0;
    background-color: #F6F4F3;
    display: flex;
    flex-direction: column; /* Stack Header, Content, and Footer vertically */
    min-height: 100vh;
}

/* ====== HEADER ====== */
.head {
    display: flex; /* Use flexbox for the header */
    justify-content: space-between; /* Space out logo and navigation */
    align-items: center; /* Align items vertically */
    padding: 15px 5%;
    background-color: #F6F4F3;
    width:match-parent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.product-item p:hover{
	color:#8B5E3C;
	cursor: pointer;
}


.sticky {
    position: fixed;
    width: 90%;
    background-color: #F6F4F3;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.div1-1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.div1-2 {
    display: flex;
    gap: 20px;
}

.logo {
    width: 40%;
    height: auto;
}

/* ====== TYPOGRAPHY ====== */
.p1 {
    font-size: 3rem;
    font-weight: bold;
    white-space: nowrap;
    font-family: Montserrat;
	/* font-family:system-ui, Poppins; */
    color: #31241E;
}

.p1-1 {
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s;
    font-family: Montserrat;
    color: #31241E;
}

.p1-1:hover {
    color: #A08872;
}

/* ====== HERO SECTION ====== */
.page1 {
    width: 100%; /* Ensures full-width */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    font-family: 'The Seasons', serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    opacity: 0.7;
    position: relative;
}

.page1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    z-index: -1;
}

a {
    text-decoration: none;
}

.p2 {
    font-size: 5rem;
    font-weight: bold;
    text-align: center;
    max-width: 80%;
}



.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}



/* ====== RESPONSIVE DESIGN ====== */

/* Large Desktops (1440px and below) */
@media (max-width: 1440px) {
    .p1-1 {
        font-size: 1.2rem;
    }
	.p1 {
        font-size: 1.5rem;
    }
    .p2 {
        font-size: 2rem;
    }
	.head{
		padding: 3px 0.5%;
	}
	
	
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}


}

/* Laptops (1280px) */
@media (max-width: 1280px) {
    .p1-1 {
        font-size: 1.1rem;
    }
	.p1 {
        font-size: 1.5rem;
    }
	
	
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 900px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}


}

/* Tablets (768px) */
@media (max-width: 768px) {
    .head {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center;
    }
    .div1-2 {
        flex-direction: column;
        gap: 10px;
    }
    .logo {
        width: 80px;
    }
    .p1, .p1-1 {
        font-size: 0.9rem;
    }
    .p2 {
        font-size: 1.5rem;
    }
	
	
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    width: 370px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item p {
    margin: 0;
    font-size: 1rem;
    font-family: Montserrat;
    color: #31241E;
}


}

/* Mobile (480px) */
@media (max-width: 480px) {
    .logo {
        width: 60px;
    }
    .p1, .p1-1 {
        font-size: 0.6rem;
    }
    .p2 {
        font-size: 1rem;
    }
	
	
}

/*PAGE 2 OUR PRODUCTS */
.page2 {
	padding-top:4%;
    width: match-parent;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.div2-2 {
	padding:2px;
    display: flex;
	flex-direction:row;
	flex-wrap: nowrap;
	/* justify-content:space-around; */
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* white-space: nowrap; */
    padding: 20px;
	width: match-parent; /* Ensure it takes full width of parent */
    max-width: 100vw;
    /* position: relative; */
	gap: 20px;
}
 
/* Style for horizontal scrolling */
.div2-2::-webkit-scrollbar {
    height: 8px;
} 

.div2-2::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.div2-2::-webkit-scrollbar-track {
    background: #ddd;
}
 
.divproduct {
	display: flex;
	flex-direction:column;
	align-items:center;
	flex: 0 0 calc(100% / 4.5); /* Show ~4.5 items at a time */
	/* justify-content:space-around; */
    /* min-width: 250px; */
    padding: 15px;
    /* display: inline-block; */
    text-align: center;
	background-color:#f5f5f5;
	border-radius: 10px;
}

.divproduct img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4; /* Ensures the image is always taller than wide */
    object-fit: cover;
}


.prodimg {
    /* width: 60%;
    height: 90%;
    object-fit: cover;
	padding:2%; */
	 /* width: 100%; 
    height: auto; 
    max-height: 250px;
    object-fit: cover;
    padding: 5px;
    border-radius: 10px; */
}

.p3{
	font-family:system-ui, The Seasons;
	font-family:The Seasons;
	color:#31241E;
	font-size:3.3rem;
}

.p4 {
	background-color:#d1c8c1;
	color: #31241e;
	border:none;
	font-family:Montserrat;
	text-align: center;
	font-weight:bold;
	cursor:none;
	align-items:center;
    display: block;
    margin-top: 10px;
    padding: 2% 15%;
    font-size:1.2em;
}

.b1{
	background-color:#d1c8c1;
	color: #31241e;
	border:none;
	font-family:Montserrat;
	text-align: center;
	font-weight:bold;
	cursor:pointer;
	align-items:center;
    /* display: block; */
    margin-top: 10px;
    padding: 1% 10%;
    font-size: 1.6rem;
	border-radius:40px;
}

/* Scroll Buttons */
.scroll-left, .scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    border-radius: 50%;
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

/* Small Phones */
@media (max-width: 480px) {
  .divproduct {
    flex: 0 0 48%; /* two items per row, consistent width */
  }

  .divproduct img.prodimg {
    width: 100%;              /* Take full width of container */
    aspect-ratio: 3 / 4;      /* Same aspect ratio for all images */
    object-fit: cover;        /* Crop image to fit the box */
    display: block;
  }

.p4 {
  font-size: 0.7em;
  white-space: nowrap;     /* Prevent text from wrapping */
  overflow: hidden;        /* Hide overflowed text */
  text-overflow: ellipsis; /* Show "..." if text overflows */
  max-width: 100%;         /* Keep it within its container */
}

.p3{
	font-size:2.5rem;
}

}





/*page 3*/
.page3 {
	width:match-parent;
    text-align: center;
    padding: 20px;
}

.p5 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.span1 {
    color: #8B5E3C; /* Adjust color as needed */
}

.div3-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.img1 {
    width: calc(25% - 30px); /* Four images per row */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .img1 {
        width: calc(33.33% - 10px); /* Three images per row */
    }
}

@media (max-width: 768px) {
    .img1 {
        width: calc(40% - 10px); /* Two images per row */
    }
	.p5{
		font-size:2rem;
	}
}

@media (max-width: 480px) {
    .img1 {
        width: calc(40% - 10px); /* Two images per row */
    }
}

/*PAGE 4 NEW PRODUCT*/
.page4 {
    width: match-parent;
	height:auto;
    padding: 40px;
    text-align: center;
    box-sizing: border-box;
}

.div4-1 {
    margin-bottom: 40px;
}

.p6 {
	font-family:Beautifully Delicious Script;
    font-size: 3.5rem;
    font-weight: bold;
    font-style: italic;
	color:#86654b;
}

.p7 {
	font-family:The Seasons;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
	color:#492b1a;
}

.p8 {
	font-family:Kollektif;
    font-size: 1.5rem;
    color:#86654b;
    /* max-width: 800px; */
    margin: auto;
}

.div4-2 {
    display: flex;
    flex-wrap: wrap;
	flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

.div4A {
    width: 30%;
    min-width: 250px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
	justify-content:center;
}

.ul5 {
	font-family:Poppins;
	color:#492b1a;
	font-size:2rem;
    list-style: none;
    padding: 0;
    font-weight: bold;
}

.li2 {
	font-family:Poppins;
	color:#86654b;
    font-size: 1.5rem;
    margin: 10px 0;
    font-weight: normal;
}

.ul1 {
    list-style-type:none;
    padding: 0;
}

.li1 {
	font-family:Poppins;
	color:#492b1a;
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}

.p10 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: 5px;
    color: #86654b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .p6 {
        font-size: 20px;
    }
    
    .p7 {
        font-size: 24px;
    }
    
    .p8 {
        font-size: 14px;
    }
    
    .div4-2 {
        flex-direction: column;
        align-items: center;
    }
    
    .div4A {
        width: 90%;
    }
}

/* PAGE 5 MR MFC PANELS */
.page5 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2%;
    padding: 20px;
}

/* Flex container for sections */
.div5-1, .div5-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
}

/* Standardizing Image Size */
.div5-1 img,
.div5-2 img {
    width: 100%;  /* Ensures the images take full width of their container */
    height: auto; /* Maintains natural aspect ratio */
    object-fit: cover; /* Ensures visual consistency */
    max-height: 300px; /* Prevents excessive stretching */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Text Content Box */
.div5A, .div5B {
    width: 100%;
    padding: 10px;
    text-align: left;
}

/* List Styles */
.ul2 {
    font-family: Poppins;
    color: #a28158;
    font-size: 1.2rem;
    list-style-type: circle;
    padding-left: 20px;
}

.ul2 li {
    margin: 5px 0;
    font-family: Poppins;
    font-size: 1rem;
    color: #492b1a;
    font-weight: 300;
}

/* Headings */
.p12 {
    font-size: 1rem;
    color: #a28a75;
    font-family: Montserrat;
    font-weight: normal;
    margin-bottom: 10px;
}

/* Tablets */
@media (max-width: 1024px) {
    .page5 {
        flex-direction: column;
        align-items: center;
    }

    .div5-1, .div5-2 {
        width: 90%;
    }

    .div5A, .div5B {
        text-align: center;
        margin-top: 15px;
    }
	
	.ul2 li {
        font-size: 1rem;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .page5 {
        padding: 15px;
    }

    .div5-1, .div5-2 {
        width: 100%;
        text-align: center;
    }

    .ul2 {
        font-size: 1rem;
    }

    .ul2 li {
        font-size: 1rem;
    }

    .p12 {
        font-size: 1rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .page5 {
        padding: 10px;
    }

    .ul2 {
        font-size: 1.4rem;
    }

    .ul2 li {
        font-size: 1.2rem;
    }
}

html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100%;
}

/* PAGE 6 TYPES OF CHIPBOARDS */
.page6 {
    width: 100%;
    max-width: 100vw; /* Prevents horizontal scrolling */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 20px auto;
    gap: 2%;
    padding: 20px;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    overflow-x: hidden; /* Prevents stretching beyond screen width */
}

/* Flex containers for sections */
.div6-1, .div6-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    height: auto;
    gap: 2%;
    flex-wrap: wrap;
    max-width: 100%;
}

/* Standardizing Image Size */
.div6-1 img, 
.div6-2 img {
    max-width: 100vw; /* Ensures image fits within container */
    height: auto; /* Maintains aspect ratio */
	aspect-ratio: 16/9;
	max-width: 900px;
    object-fit: cover;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}


/* Text Content Box */
.div6A, .div6B {
    flex: 1;
    margin-left: 20px;
    width: 90%;
	margin-right:20px;
}

.div6A{
	
}

/* List Styles */
.ul2 {
    font-family: Poppins;
    color: #a28158;
    font-size: 2rem;
    list-style-type: circle;
    padding: 0;
}

.ul2 li {
    font-size: 1.5rem;
    color: #4c4847;
    font-family: Poppins;
    font-weight: normal;
    display: block;
    margin-top: 5px;
}

/* Headings */
.p13 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.p14 {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
}

.span2 {
    /* font-size: 1.6rem; */
	font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #31241e;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Tablets */
@media (max-width: 1024px) {
    .page6 {
        flex-direction: column;
        align-items: center;
    }

    .div6-1, .div6-2 {
        width: 90%;
        flex-direction: row; /* Keeps it in row direction */
    }

    .div6A, .div6B {
        text-align: center;
        margin-top: 15px;
    }

    .div6-1 img, .div6-2 img {
        max-width: 100vw; /* Ensures image fits within container */
    height: auto; /* Maintains aspect ratio */
	max-width: 900px;
    object-fit: cover;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }
	
	.p14 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
}


.span2 {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #31241e;
}
}

/* Large Desktops (1440px and below) */
@media (max-width: 1440px) {
	.p14{
		/* font-size:1rem; */
		font-size:1.4rem;
	}
	
	.span2{
		
	}
}

/* Mobile Screens */
@media (max-width: 768px) {
    .page6 {
        flex-direction: row; /* Keep row direction */
        flex-wrap: wrap;
        align-items: center;
        padding: 15px;
    }

    .div6-1, .div6-2 {
        width: 100%;
        text-align: center;
        flex-direction: row; /* Ensures row direction */
    }

    .div6-1 img, .div6-2 img {
		max-width: 100vw; /* Ensures image fits within container */
    height: auto; /* Maintains aspect ratio */
	
    object-fit: cover;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        
    }

    .ul2 {
        font-size: 1.8rem;
    }

    .ul2 li {
        font-size: 1.4rem;
    }

    .p13 {
        font-size: 1.5rem;
    }

    .p14 {
        font-size: 1.2rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .page6 {
        padding: 10px;
        flex-direction: row; /* Keep row layout */
    }

    .div6-1, .div6-2 {
        width: 100%;
        flex-direction: row; /* Keep row layout */
    }

    .div6-1 img, .div6-2 img {
    width: 100vw; /* Ensures image fits within container */
    height: auto; /* Maintains aspect ratio */
	max-width: 900px;
    object-fit: cover;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .ul2 {
        font-size: 1.5rem;
    }

    .ul2 li {
        font-size: 1.2rem;
    }

    .p13 {
        font-size: 1.6rem;
    }

    .p14 {
        font-size: 1.2rem;
    }
}


/* PAGE 7 MELAMINE FACED MF */
.page7 {
    width: 100%;                        /* Ensures full width */
    max-width: 100vw;                   /* Prevents horizontal stretching */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;               /* Ensures both divs have equal height */
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;             /* Ensures padding doesn't stretch the container */
    overflow-x: hidden;                 /* Prevents horizontal scrolling */
}

/* .div7A, .div7B {
    flex: 1;
    min-width: 300px;
    max-width: 50%;                     
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
} */

.div7A {
    flex: 1;
    min-width: 300px;
    max-width: 50%;                     /* Ensures both divs take up 50% width on large screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


.div7B {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    display: flex;
    flex-direction: column; /* Stack images vertically */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between images */
}

.div7B img {
    width: 100%; /* Make images take full width of container */
    /* max-width: 300px; /* Adjust based on your design */
}


/* Typography */
.p15 {
    font-family: Lato;
    font-size: 3rem;
    font-weight: bold;
    color: #000000;
}

.p16 {
    font-family: Montserrat;
    /* font-size: 2.5rem; */
	font-size: 2rem;
    color: #333231;
}

.ul3 {
    font-family: Montserrat Classic;
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    color: #000000;
    /* font-size: 1.5rem; */
	font-size: 2rem;
}

.li3 {
    /* font-size: 1.5rem; */
	font-size: 1rem;
    color: #333231;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.ul3 li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
}


/* ============ RESPONSIVE DESIGN ============ */

/* Tablets */
@media (max-width: 1024px) {
    .page7 {
        flex-direction: column;
        align-items: center;
    }

    .div7A, .div7B {
        max-width: 100%;
        text-align: center;
    }

    .ul3 li {
        font-size: 1rem;
        text-align: center;
    }

}

/* Mobile Screens */
@media (max-width: 768px) {
    .page7 {
        flex-direction: row;            /* Keeps row direction on small screens */
        align-items: center;
    }

    .div7A, .div7B {
        max-width: 100%;
        text-align: center;
    }

    .ul3 li {
		font-size: 1rem;
        text-align: center;
    }
	
	
}

/* Small Phones */
@media (max-width: 480px) {
    .p15 {
        font-size: 3rem;
    }

    .p16 {
        /* font-size: 2rem; */
		font-size: 1.4rem;
    }

    .ul3 li {
        font-size: 13px;
    }
	
}


/* PAGE 8 SYNCHRONIZED MELAMINE */
.page8 {
    width: 100%;                        /* Ensures full width */
    max-width: 100vw;                   /* Prevents horizontal stretching */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;               /* Ensures both divs have equal height */
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;             /* Ensures padding doesn't stretch the container */
    overflow-x: hidden;
}



.div8A, .div8B {
    flex: 1;
    min-width: 300px;
    max-width: 50%;                     /* Ensures both divs take up 50% width on large screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Make images the same height */
.div7B {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    display: flex;
    flex-direction: column; /* Stack images vertically */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between images */
}

.div7B img {
    width: 100%; /* Make images take full width of container */
    /* max-width: 300px; /* Adjust based on your design */
}

/* Typography */
.p17 {
    font-family: Lato;
    /* font-size: 3rem; */
	font-size: 2rem;
    font-weight: bold;
    color: #7a563a; /* Matching the brown text */
    text-align: left;
}

.p18 {
    font-family: Montserrat;
    /* font-size: 2.5rem; */
	font-size: 2rem;
    font-weight: bold;
    color: #a27b5c; /* Slightly lighter brown */
    text-align: left;
}

.p19 {
    font-family: Montserrat;
    font-size: 2rem;
    color: #333231;
    line-height: 1.5;
    text-align: left;
}

.ul3 {
    font-family: Montserrat Classic;
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    color: #000000;
    /* font-size: 1.5rem; */
	font-size: 2rem;
}

.li3 {
    /* font-size: 1.5rem; */
	font-size: 1.4rem;
    color: #333231;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.ul3 li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7a563a;
}

/* ============ RESPONSIVE DESIGN ============ */

/* Tablets */
@media (max-width: 1024px) {
    .page8 {
        flex-direction: column;
        align-items: center;
    }

    .div8A, .div8B {
        max-width: 100%;
        text-align: center;
    }

    .div8A {
        grid-template-columns: 1fr;  /* Stack images vertically on small screens */
    }

    .p17, .p18, .p19, .ul3 {
        text-align: center;
    }

    .ul3 li {
        /* font-size: 1rem; */
		font-size: 1.2rem;
        text-align: center;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .page7 {
        flex-direction: column;
        align-items: center;
    }

    .div7A, .div7B {
        max-width: 100%;
        text-align: center;
    }

    .ul3 li {
        /* font-size: 1rem; */
		font-size: 1.2rem;
        text-align: center;
    }

}


/* Mobile Screens */
@media (max-width: 768px) {
    .page8 {
        flex-direction: row;            /* Keeps row direction on small screens */
        align-items: center;
    }

    .div8A, .div8B {
        max-width: 100%;
        text-align: center;
    }

    .div8A {
        flex-direction: column;        /* Ensures images are stacked vertically on small screens */
    }

    .p17, .p18, .p19, .ul3 {
        text-align: center;
    }

    .ul3 li {
        font-size: 1rem;
        text-align: center;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .p17 {
        /* font-size: 2rem; */
		font-size: 1.4rem;
    }

    .p18 {
        /* font-size: 1.8rem; */
		font-size: 1.4rem;
    }

    .p19 {
        font-size: 1.5rem;
    }

    .ul3 li {
        font-size: 13px;
    }
}






/* PAGE 9 DECORATIVE HPL/CDF PANELS */
.page9 {
	width:match-parent;
	height:auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch; /* Ensures equal height for elements */
  padding: 20px;
  gap: 20px;
}

/* Image Containers */
.div9A, .div9C {
  flex: 1;
  min-width: 250px;
  max-width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div9A img, .div9C img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures consistent display */
  border-radius: 5px;
}

/* Text Content */
.div9B {
  flex: 2;
  min-width: 300px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Typography */
.p20 {
  font-family: Lato;
  /* font-size: 3rem; */
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  text-align: left;
}

.ul4 {
  font-family: Montserrat;
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  color: #333231;
  font-size: 3rem;
}

.ul4 li {
  /* font-size: 2.5rem; */
  font-size: 1rem;
  color: #333231;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.ul4 li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7a563a;
}


/* Large Desktops (1440px and below) */
@media (max-width: 1440px) {
	 .p20 {
    /* font-size: 2.5rem !important;  */        /* Slightly smaller font size on tablet */
	font-size: 2rem !important; 
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page9 {
    flex-direction: column;   /* Stack elements vertically on tablet */
    align-items: center;
  }

  .div9A, .div9B, .div9C {
    max-width: 100%;           /* Ensure full width */
    text-align: center;
  }

  /* Adjust the images in div9A and div9C */
  .div9A img, .div9C img {
    width: 90%;                /* Reduce the width of images to prevent them from stretching too much */
    height: auto;              /* Maintain aspect ratio */
    object-fit: cover;         /* Keep the images well proportioned */
    margin-bottom: 20px;       /* Add some spacing between images and text */
  }

  /* Adjust typography */
  .p20 {
    /* font-size: 2.5rem !important; */
	font-size: 2rem !important;         /* Slightly smaller font size on tablet */
  }

  .ul4 {
    font-size: 2.5rem;         /* Adjust list font size */
    padding-left: 0;           /* Remove padding for list on tablet */
  }

  .ul4 li {
    /* font-size: 2rem;           /* Ensure list items don't feel too large */
	font-size: 1.4rem;
  }

  .ul4 li::before {
    color: #7a563a;            /* Keep the bullet color consistent */
  }
}


@media (max-width: 768px) {
  .p20 {
    /* font-size: 4rem; */
	font-size: 1.8rem;
  }

  .ul4 li {
    /* font-size: 2rem; */
	font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .p20 {
    font-size: 20px;
  }

  .ul4 li {
    font-size: 14px;
  }
}



/* PAGE 10 - LAMICOLOR */
.page10 {
  width: 100%;                   /* Ensure full width */
  max-width: 100vw;              /* Prevent overflow */
  height: auto;
  display: flex;
  flex-direction: row;           /* Default flex-direction */
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 20px;
  box-sizing: border-box;        /* Prevents padding from expanding width */
  overflow-x: hidden;            /* Prevents horizontal scrolling */
}

/* Text Sections */
.div10A, .div10C {
  flex: 1;
  min-width: 250px;
  width: 23%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Image Section */
.div10B {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Makes both images take equal space */
  gap: 10px;
  align-items:center;
  align-items: stretch; /* Ensures both images stretch to the same height */
}

.div10B img {
  width: 100%;  /* Ensures the images take full width of their container */
    height: auto; /* Maintains natural aspect ratio */
    object-fit: cover; /* Ensures visual consistency */
    max-height: 700px; /* Prevents excessive stretching */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Typography */
.p20 {
  font-family: The Seasons;
  /* font-size: 1.5rem; */
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.p21 {
  font-family: Montserrat, sans-serif;
  /* font-size: 1.2rem; */
  font-size: 1rem;
  color: #333231;
  line-height: 1.6;
}

/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
  .page10 {
    flex-direction: column;  /* Stack elements vertically on tablets */
    align-items: center;
    text-align: center;
  }

  .div10A, .div10B, .div10C {
    width: 100%;            /* Ensure all elements take full width */
    max-width: 100%;        /* Prevent overflow */
  }

  .div10B img {
    width: 80%;            /* Adjust image size */
	height: auto;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .p20 {
    font-size: 2.5rem;
  }
  
  .p21 {
    font-size: 1.4rem;
  }

  .div10B {
    grid-template-columns: 1fr; /* Stack images vertically on small screens */
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .p20 {
    font-size: 2rem;
  }

  .p21 {
    /* font-size: 1rem; */
	font-size: 1.2rem;
  }

  .div10B img {
    width: 100%;           /* Make images full width on small screens */
  }
}


/*PAGE 11 HPL & COMPACT LAMINATE*/
.page11 {
  width: match-parent;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TITLE SECTION */
.div11A {
  width: 100%;
  text-align: center;
  background-color: #645f57; /* Background color */
  /* padding: 15px 30px; /* Space inside */ 
  padding:5% 2%;
}

.p22 {
  font-family: High Cruiser;
  font-size: 3rem;
  font-weight: bold;
  color: #fff; /* White text */
  text-align: center;
  margin: 0;
}

/* IMAGES SECTION */
.div11B {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px; 
  width: 100%;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Ensures equal size and alignment for direct children */
.div11B > div {
  flex: 1;
  /* max-width: 30%; */
  display: flex;
  justify-content: center;
  align-items: center;
}


.div11B img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* MIDDLE IMAGE CONTAINER */
.div11B1 {
  display: flex;
  flex:1;
  /* justify-content: center; */
  gap: 10px; 
}

.div11B1 img {
  width: 48%; 
  /* max-width: 100%; */
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}


/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .p22 {
    font-size: 2.5rem;
  }

  .div11B {
    flex-direction: column;
    align-items: center
  }

  .div11B > div {
    width: 80%;
  }

  .div11B1 {
    flex-direction: row;
    justify-content: space-between;
	width:80%;
  }

  .div11B1 img {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .p22 {
    font-size: 2rem;
  }

  .div11B > div {
    width: 90%;
  }

  .div11B1 {
	  width:90%;
    flex-direction: row;
  }

  .div11B1 img {
    width: 48%;
  }
}

@media (max-width: 480px) {
  .p22 {
    font-size: 1.8rem;
    padding: 10px 0;
  }

  .div11B {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers all divs inside div11B */
  }

  .div11B > div {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center images */
    gap: 10px; /* Adds space between images */
  }

  .div11B1 {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center images */
    gap: 10px; /* Adds space between images */
  }

  .div11B1 img {
    width: 80%; /* Adjust image width to fit properly */
    max-width: 250px; /* Prevents images from becoming too large */
  }
}


/* Main container */
.div11C {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 20px;
  width: 100%;
}

/* Two columns inside div11C */
.div11C1, .div11C2 {
  flex: 1; /* Both take equal width */
  text-align: center; /* Align text to center */
}

/* Title Styling */
.p23 {
  font-family: High Cruiser;
  /* font-size:2.5rem; */
  font-size:2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #492b1a;
  margin-bottom: 10px;
}

/* Description Text */
.p24 {
  font-family: Montserrat;
  /* font-size: 2rem; */
  font-size: 1rem;
  color: #86654b;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* List Styling */
.ul6 {
  font-family: Montserrat Classic;
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  /* font-size: 1.8rem; */
  font-size: 1rem;
  color: #492b1a;
}

.ul6 li {
  /* font-size:1.5rem; */
  font-size:1rem;
  color: #86654b;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

/* Bullet point */
.ul6 li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #86654b;
}

/* RESPONSIVE DESIGN */

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
  .div11C {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


/* Small Phones */
@media (max-width: 480px) {
  .div11C {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
}


.product-item p:hover{
	color:#8B5E3C;
}

.product-item p:visited{
	color:gray;
}