   .homepage-hero{
    background:white;
    padding:60px 20px;
}

.hero-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

/* TEXT SIDE */

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:42px;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:30px;
    color:#555;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-btn{
    padding:14px 24px;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
}

.hero-btn.primary{
    background: var(--button-primary);
    color: var(--text-dark);
}

.hero-btn.secondary{
    border:2px solid var(--button-secondary);
    color: var(--text-dark);
    background: var(--button-primary);
}

/* SLIDER SIDE */

.hero-slider{
    flex:1;
    position:relative;
}

.slides{
    position:relative;
}

.slide{
    width:100%;
    display:none;
    border-radius:8px;
}

.slide.active{
    display:block;
}

/* MOBILE */

@media (max-width:768px){

.hero-container{
    flex-direction:column;
}

.hero-text{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-text h1{
    font-size:30px;
}

}


*,
*::before,
*::after{
box-sizing:border-box;
}

.label-filter{
background:#f7f7f7;
padding:30px 20px;
}

.filter-container{
max-width:1200px;
margin:auto;
display:flex;
gap:20px;
align-items:end;
flex-wrap:wrap;
}

.filter-col{
flex:1;
min-width:0;
display:flex;
flex-direction:column;
}

.filter-col label{
margin-bottom:6px;
font-weight:600;
}

.filter-col select,
.size-inputs input{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:4px;
}

/* SIZE INPUTS */

.size-inputs{
display:flex;
align-items:center;
gap:6px;
width:100%;
}

.size-inputs input{
flex:1;
min-width:0;
}

.size-inputs span{
flex:0;
}

/* BUTTON */

.button-col{
justify-content:flex-end;
}

.search-btn{
background:var(--button-primary);
color:white;
border:none;
padding:12px;
border-radius:5px;
cursor:pointer;
font-weight:600;
width:100%;
}

/* TABLET + MOBILE */

@media(max-width:992px){

.filter-container{
flex-direction:column;
align-items:stretch;
}

.filter-col{
width:100%;
}

}

    .feature-section{
    padding:70px 20px;
    background:#ffffff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:36px;
    margin-bottom:10px;
}

.section-header p{
    color:#666;
    font-size:18px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    border:1px solid #eee;
    border-radius:8px;
    padding:25px;
    text-align:center;
    transition:0.2s;
}

.feature-card:hover{
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.feature-card img{
    width:100%;
    border-radius:6px;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:10px;
}

.feature-card p{
    color:#666;
    margin-bottom:20px;
}

.feature-card ul{
    list-style:none;
    padding:0;
}

.feature-card li{
    margin:8px 0;
}

.feature-card a{
    text-decoration:none;
    color: var(--button-primary);
    font-weight:500;
}

.check-list {
  list-style: none; /* Removes default bullets */
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start; /* Aligns tick to the top of the first line */
  margin-bottom: 12px;     /* Spacing between points */
  font-family: 'Jost', sans-serif;
  color: var(--text-light);
  font-size: 1rem;         /* 16px */
}

.check-list .icon {
  color: var(--button-primary);
  font-weight: bold;
  margin-right: 12px;      /* Space between tick and text */
  flex-shrink: 0;          /* Prevents the tick from squishing */
}

.check-list .text {
  line-height: 1.5;        /* Makes multi-line text easy to read */
}

.feature-card .btn-get-started {
  /* Layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  /* Spacing & Size */
  padding: 12px 32px;     /* Top/Bottom, Left/Right */
  min-width: 160px;

  /* Typography */
  font-weight: 600;       /* Semi-bold */
  text-decoration: none;  /* Removes underline from link */
  
  /* Styling */
  background-color: var(--button-primary);
  color: var(--text-dark);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  
  /* Animation */
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover State */
.btn-get-started:hover {
  background-color: var(--button-secondary);
  transform: translateY(-2px); /* Lifts the button slightly */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Active State (When Clicked) */
.btn-get-started:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive */

@media (max-width:900px){

.feature-grid{
    grid-template-columns:1fr;
}

.section-header h2{
    font-size:28px;
}

}

    .featured-categories{
padding:20px 20px;
background: #fff;
}

.container{
max-width:1200px;
margin:auto;
}

.section-header{
text-align:center;
margin-bottom:40px;
}

.section-header h2{
font-size:34px;
margin-bottom:10px;
}

.section-header p{
color: #666;
}

/* Tabs */

.tabs-menu{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:40px;
flex-wrap:wrap;
}

.tab{
background: #eee;
border:none;
padding:10px 20px;
cursor:pointer;
border-radius:5px;
font-weight:600;
}

.tab.active{
background: var(--button-primary);
color: var(--text-dark);
}

/* Cards */

.cards-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.category-card{
display:block;
text-align:center;
border:1px solid #eee;
border-radius:8px;
padding:20px;
text-decoration:none;
color: #333;
transition:0.2s;
}

.category-card:hover{
box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.category-card img{
width:100%;
margin-bottom:15px;
border-radius:6px;
}

.category-card h3{
margin-bottom:5px;
}

.category-card p{
color:#777;
font-size:14px;
}

/* Tabs content */

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

.more-materials-btn a{
    color: var(--button-primary);
    text-decoration:none;
}

.more-uses-btn a{
    color: var(--button-primary);
    text-decoration:none;
}
/* Responsive */

@media(max-width:900px){

.cards-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.cards-grid{
grid-template-columns:repeat(2,1fr);
}

}

    .best-sellers{
padding:70px 20px;
background: #fff;
}

.container{
max-width:1200px;
margin:auto;
}

.section-header{
text-align:center;
margin-bottom:40px;
}

.section-header h2{
font-size:34px;
margin-bottom:10px;
}

.tabs-menu{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;
}

.tab{
background: #eee;
border:none;
padding:10px 20px;
cursor:pointer;
border-radius:6px;
font-weight:600;
}

.tab.active{
background: var(--button-primary);
color: var(--text-dark);
}

/* PRODUCTS */

.product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.product-card{
border:1px solid #eee;
border-radius:8px;
padding:20px;
text-align:center;
}

.product-card img{
width:100%;
margin-bottom:15px;
}

.rating{
color:#f5a623;
margin-bottom:10px;
}

.rating span{
color:#777;
font-size:14px;
}

.product-card select{
width:100%;
padding:8px;
margin-bottom:10px;
border:1px solid #ccc;
border-radius:4px;
}

.cart-btn{
width:100%;
padding:10px;
background: var(--button-primary);
color: var(--text-dark);
border:none;
border-radius:5px;
cursor:pointer;
font-weight:600;
}

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

.more-roll-labels-btn{
    text-align:center;
    margin-top:30px;
    color: var(--button-primary);
    text-decoration:none;
}

.more-roll-labels-btn a{
    color: var(--button-primary);
    text-decoration:none;
}


/* Responsive */

@media(max-width:900px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.product-grid{
grid-template-columns:1fr;
}

}

    .customer-testimonials{
padding:70px 20px;
background:#f9f9f9;
}

.container{
max-width:1200px;
margin:auto;
}

.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header h2{
font-size:34px;
margin-bottom:10px;
}

.section-header p{
color:#666;
font-size:17px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.testimonial-card{
background:#fff;
border:1px solid #eee;
border-radius:8px;
padding:25px;
text-align:center;
transition:0.2s;
}

.testimonial-card:hover{
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.stars{
color:#f5a623;
font-size:18px;
margin-bottom:10px;
}

.testimonial-card h4{
margin-bottom:10px;
font-size:18px;
}

.testimonial-card p{
font-style:italic;
color:#555;
}

/* Responsive */

@media (max-width:900px){

.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:500px){

.testimonial-grid{
grid-template-columns:1fr;
}

}

    .trusted-businesses{
padding:70px 20px;
background:#ffffff;
}

.container{
max-width:1200px;
margin:auto;
}

.section-header{
text-align:center;
margin-bottom:40px;
}

.section-header h2{
font-size:34px;
margin-bottom:10px;
}

.section-header p{
color:#666;
font-size:17px;
}

/* Logo grid */

.logo-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:40px;
align-items:center;
}

.logo-item{
display:flex;
justify-content:center;
align-items:center;
}

.logo-item img{
max-width:120px;
opacity:0.8;
transition:0.3s;
}

.logo-item img:hover{
opacity:1;
transform:scale(1.05);
}

/* Tablet */

@media(max-width:900px){

.logo-grid{
grid-template-columns:repeat(3,1fr);
}

}

/* Mobile */

@media(max-width:500px){

.logo-grid{
grid-template-columns:repeat(2,1fr);
}

}