*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Roboto',sans-serif;
    background:#f6f6f3;
    color:#222;
}

/* NAVBAR */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 80px;
    background:#fff;
    border-bottom:1px solid #ddd;
}

.logo h2{
    font-size:22px;
    letter-spacing:2px;
    color: #556B2F;
}

.links ul{
    display:flex;
    list-style:none;
    gap:30px;
    align-items:center;
}

.links a{
    text-decoration:none;
    color:#333;
    font-size:16px;
    transition:.3s;
}

.links a:hover{
    color:#556B2F;
}

.sign{
    padding:8px 18px;
    border:1px solid #333;
    border-radius: 25px;
    background:transparent;
    cursor:pointer;
}

/* HOME SECTION */

#home{
    display:flex;
    height: 600px;
    justify-content:space-between;
    align-items:center;
    padding:80px;
    gap:60px;
}

/* TEXT */

.caption{
    width:50%;
}

.caption h1{
    font-size:45px;
    font-weight:500;
    margin-bottom:25px;
    line-height:1.2;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.title {
    font-weight: 900;
    font-size: 60px;
    line-height: 1.;
    position: relative;
    text-transform: uppercase;
    color: black;
}

.title .line2 {
    display: block;
    position: relative;
    left: 100px; 
}

.outline {
    color: transparent;
    -webkit-text-stroke: 2px #556B2F;
}


.caption p{
    font-size:16px;
    color:#555;
    margin-bottom:30px;
    line-height:1.6;
}

.shop{
    padding:12px 28px;
    border:none;
    border-radius: 25px;
    background:#556B2F;
    color:#fff;
    font-size:14px;
    letter-spacing:1px;
    cursor:pointer;
    transition:.3s;
}

.shop:hover{
    background:#333;
}

/* IMAGE */

.image{
    width:50%;
    position:relative;
}

.image img{
    width:100%;
    position:relative;
    z-index:2;
}

/* BACKGROUND SHAPE */

.design {
  position: absolute;
  width: 600px;
  height: 350px;
  background-color: rgba(85, 107, 47, 0.199);
  border-radius: 90% 20% 20% 90% / 90% 40% 90% 40%;
}

/* HERO TEXT SECTION */

.hero{
    text-align:center;
    padding:60px 20px 30px;
}

.hero h1{
    font-size:36px;
    margin-bottom:15px;
}

.hero p{
    max-width:600px;
    margin:auto;
    color:#666;
    font-size:14px;
}

/* FILTER */

.filter-box{
    display:flex;
    justify-content:center;
    gap:20px;
    padding:30px;
}

.filter-box select{
    padding:10px 15px;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    font-size:14px;
}

/* LOADING */

#loading{
    text-align:center;
    margin:30px 0;
    font-size:18px;
}

/* PRODUCTS GRID */

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding:40px 80px;
}

/* PRODUCT CARD */

.product-card{
    background:#fff;
    padding:20px;
    text-align:center;
    transition:.3s;
}

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

/* IMAGE */

.card-img img{
    width:100%;
    height:220px;
    object-fit:contain;
    margin-bottom:15px;
}

/* TITLE */

.card-body h4{
    font-size:16px;
    margin-bottom:8px;
    min-height:45px;
}

/* PRICE */

.price{
    color:#2e7d32;
    font-weight:bold;
    margin-bottom:10px;
}


.desc{
    font-size:13px;
    color:#666;
    height:60px;
    overflow:hidden;
}

/* CONTACT */

.contact{
    text-align:center;
    padding:60px 20px;
    background:#fff;
    margin-top:60px;
}

.contact h2{
    margin-bottom:20px;
}

.sub{
    margin-bottom:20px;
}

.sub input{
    padding:10px;
    width:250px;
    border:1px solid #ccc;
}

.sub button{
    padding:10px 20px;
    border:none;
    background:#556B2F;
    color:#fff;
    cursor:pointer;
}

.social i{
    margin:10px;
    font-size:18px;
    cursor:pointer;
}

.contact p{
    margin-top:20px;
    font-size:13px;
    color:#666;
}