/* RESET */ *{ margin:0; padding:0; box-sizing:border-box; } body{ background:#f4f6fa; font-family:tahoma; direction:rtl; } /* HEADER */ .top{ background:#fff; padding:25px; border-radius:0 0 30px 30px; box-shadow: 0 10px 40px rgba(0,0,0,.08); } .logo{ transform:scale(1.2); } .search{ width:50%; } .search input{ height:60px; background:#f5f6fa; border:none; border-radius:18px; padding:20px; } .addtocart{ background: linear-gradient( 135deg, #111, #D6AE52 ); padding:15px; border-radius:18px; } /* CATEGORY */ .categories{ background:white; border-radius:30px; padding:25px; box-shadow: 0 15px 50px rgba(0,0,0,.08); } .categories a{ padding:12px; display:block; } /* SLIDER */ .bigslider{ overflow:hidden; border-radius:40px; box-shadow: 0 30px 80px rgba(0,0,0,.15); } .slider1 img{ height:620px; width:100%; object-fit:cover; } /* FEATURES */ .shopfeatures{ display:flex; gap:20px; margin:50px 0; } .shopfeatures>div{ flex:1; background:white; padding:30px; border-radius:26px; } /* PRODUCTS */ .produces{ display:grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap:30px; } .post{ background:white; border-radius:30px; overflow:hidden; box-shadow: 0 20px 60px rgba(0,0,0,.08); transition:.35s; } .post:hover{ transform: translateY(-10px); } .thumbpost{ height:320px; overflow:hidden; } .thumbpost img{ width:100%; height:100%; object-fit:cover; } .name{ padding:25px; } .name h3{ font-size:20px; height:70px; } .price{ font-size:34px; color:#D6AE52; font-weight:700; } .addtocartkey{ display:block; background:#111; color:white; padding:18px; border-radius:18px; text-align:center; } /* PRODUCT PAGE */ .produceinfo{ background:white; padding:40px; border-radius:30px; } .fullcontent{ background:white; padding:40px; border-radius:30px; margin-top:20px; } /* FOOTER */ #footer{ background:#0f172a; color:white; padding:80px; } .footerwrap{ max-width:1500px; margin:auto; } /* MOBILE */ @media(max-width:768px){ .shopfeatures{ display:block; } .search{ width:100%; } .slider1 img{ height:300px; } }