/* ==========================================
   SabzAbi Store
   Main StyleSheet V1
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:"Vazirmatn",sans-serif;

background:#f7f9fc;

color:#222;

line-height:1.9;

direction:rtl;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

transition:.3s;

}

ul{

list-style:none;

}

.container{

width:min(1200px,92%);

margin:auto;

}

/* ===========================
HEADER
=========================== */

.header{

position:sticky;

top:0;

z-index:999;

background:#ffffff;

box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.header .container{

display:flex;

align-items:center;

justify-content:space-between;

padding:18px 0;

}

.logo{

display:flex;

align-items:center;

gap:14px;

}

.logo img{

width:55px;

height:55px;

border-radius:14px;

}

.logo h2{

font-size:24px;

font-weight:800;

color:#0f766e;

}

.logo span{

font-size:13px;

color:#777;

}

nav ul{

display:flex;

gap:28px;

}

nav a{

font-weight:600;

padding:8px 0;

position:relative;

}

nav a:hover,

nav a.active{

color:#0f766e;

}

nav a::after{

content:"";

position:absolute;

right:0;

bottom:-6px;

width:0;

height:3px;

background:#0f766e;

border-radius:50px;

transition:.3s;

}

nav a:hover::after,

nav a.active::after{

width:100%;

}

.header-phone{

background:#0f766e;

color:#fff;

padding:12px 22px;

border-radius:10px;

font-weight:700;

}

.header-phone:hover{

background:#115e59;

}

/* ===========================
PAGE BANNER
=========================== */

.page-banner{

padding:90px 0;

background:linear-gradient(135deg,#0f766e,#14b8a6);

color:#fff;

text-align:center;

}

.page-banner h1{

font-size:48px;

margin-bottom:15px;

font-weight:800;

}

.page-banner p{

font-size:18px;

opacity:.95;

}

/* ===========================
HERO
=========================== */

.hero{

padding:80px 0;

background:#ffffff;

}

.hero .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.hero h1{

font-size:52px;

line-height:1.4;

margin-bottom:20px;

color:#0f172a;

font-weight:900;

}

.hero p{

font-size:18px;

color:#666;

margin-bottom:30px;

}

.hero-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

/* ===========================
BUTTONS
=========================== */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 28px;

background:#0f766e;

color:#fff;

border-radius:12px;

font-weight:700;

transition:.3s;

}

.btn:hover{

background:#115e59;

transform:translateY(-3px);

}

.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 28px;

border:2px solid #0f766e;

color:#0f766e;

border-radius:12px;

font-weight:700;

transition:.3s;

}

.btn-outline:hover{

background:#0f766e;

color:#fff;

}

/* ===========================
SECTION
=========================== */

section{

padding:80px 0;

}

.section-header{

text-align:center;

margin-bottom:55px;

}

.section-header h2{

font-size:38px;

margin-bottom:15px;

font-weight:800;

color:#0f172a;

}

.section-header p{

color:#666;

font-size:17px;

}

/* ===========================
CARDS
=========================== */

.product-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(260px,1fr));

gap:28px;

}

.product-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.product-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.product-card img{

height:240px;

width:100%;

object-fit:cover;

}

.product-info{

padding:22px;

}

.product-category{

display:inline-block;

padding:6px 14px;

background:#d1fae5;

color:#065f46;

border-radius:50px;

font-size:13px;

margin-bottom:12px;

}

.product-info h3{

font-size:23px;

margin-bottom:12px;

}

.product-info p{

color:#666;

font-size:15px;

margin-bottom:18px;

}

.product-footer{

display:flex;

justify-content:space-between;

align-items:center;

}

.price{

font-size:18px;

font-weight:800;

color:#0f766e;

}

.product-btn{

padding:10px 18px;

background:#0f766e;

color:#fff;

border-radius:10px;

font-size:14px;

}

.product-btn:hover{

background:#115e59;

}

/* ===========================
ABOUT SECTION
=========================== */

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

border-radius:22px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.about-content h2{

font-size:40px;

margin-bottom:20px;

color:#0f172a;

}

.about-content p{

margin-bottom:18px;

color:#555;

font-size:17px;

}

.about-list{

margin-top:25px;

}

.about-list li{

margin-bottom:14px;

font-size:17px;

font-weight:600;

color:#0f766e;

}

/* ===========================
COUNTER
=========================== */

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.counter-box{

background:#ffffff;

padding:35px;

text-align:center;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.counter-box:hover{

transform:translateY(-8px);

}

.counter-box h2{

font-size:42px;

color:#0f766e;

margin-bottom:12px;

}

.counter-box p{

color:#666;

font-weight:600;

}

/* ===========================
CONTACT
=========================== */

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

}

.contact-info,

.contact-form{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.contact-item{

display:flex;

align-items:center;

gap:18px;

margin-bottom:24px;

}

.contact-item span{

font-size:28px;

}

.contact-item h4{

margin-bottom:6px;

}

.contact-item a{

color:#0f766e;

font-weight:700;

}

.form-group{

margin-bottom:22px;

}

.form-group label{

display:block;

margin-bottom:8px;

font-weight:700;

}

.form-group input,

.form-group textarea,

.tool-box input,

.tool-box select{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:12px;

font-family:inherit;

font-size:15px;

outline:none;

transition:.3s;

}

.form-group input:focus,

.form-group textarea:focus,

.tool-box input:focus,

.tool-box select:focus{

border-color:#0f766e;

box-shadow:0 0 0 4px rgba(15,118,110,.12);

}

/* =====================================
FOOTER
===================================== */

.footer{

background:#0f172a;

color:#fff;

padding:70px 0 25px;

margin-top:80px;

}

.footer-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(230px,1fr));

gap:40px;

}

.footer-logo{

width:70px;

margin-bottom:18px;

border-radius:14px;

}

.footer h3{

margin-bottom:18px;

font-size:22px;

}

.footer p{

color:#cbd5e1;

line-height:1.9;

}

.footer ul li{

margin-bottom:12px;

}

.footer ul li a{

color:#cbd5e1;

transition:.3s;

}

.footer ul li a:hover{

color:#14b8a6;

padding-right:6px;

}

.footer hr{

margin:40px 0 25px;

border:none;

height:1px;

background:rgba(255,255,255,.1);

}

.footer-bottom{

text-align:center;

color:#94a3b8;

font-size:14px;

}

/* =====================================
FAQ
===================================== */

.faq-list{

display:grid;

gap:22px;

}

.faq-item{

background:#fff;

padding:28px;

border-radius:16px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

transition:.3s;

}

.faq-item:hover{

transform:translateY(-5px);

}

.faq-item h3{

margin-bottom:12px;

color:#0f766e;

}

/* =====================================
PRODUCT DETAILS
===================================== */

.single-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:start;

}

.product-image img{

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.product-price{

font-size:34px;

font-weight:800;

color:#0f766e;

margin:20px 0;

}

.product-features{

margin:25px 0;

}

.product-features li{

margin-bottom:12px;

font-weight:600;

}

.product-specs{

width:100%;

margin-top:25px;

border-collapse:collapse;

background:#fff;

overflow:hidden;

border-radius:14px;

}

.product-specs th,

.product-specs td{

padding:16px;

border:1px solid #eee;

text-align:right;

}

.product-specs th{

background:#f8fafc;

width:180px;

font-weight:700;

}

.product-buttons{

display:flex;

gap:15px;

margin-top:30px;

flex-wrap:wrap;

}

/* =====================================
MISSION & WHY US
===================================== */

.mission-grid,

.why-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.mission-card,

.why-card{

background:#fff;

padding:30px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.mission-card:hover,

.why-card:hover{

transform:translateY(-8px);

}

.icon{

font-size:45px;

margin-bottom:18px;

}

.map-placeholder{

height:350px;

display:flex;

align-items:center;

justify-content:center;

background:#eef2f7;

border:2px dashed #cbd5e1;

border-radius:18px;

font-size:28px;

color:#64748b;

margin-top:25px;

}

/* =====================================
CTA
===================================== */

.cta-box,
.quick-box,
.instagram-box{

background:linear-gradient(135deg,#0f766e,#14b8a6);

padding:60px;

border-radius:24px;

text-align:center;

color:#fff;

}

.cta-box h2,
.quick-box h2,
.instagram-box h2{

font-size:40px;

margin-bottom:20px;

}

.cta-box p,
.quick-box p,
.instagram-box p{

font-size:18px;

margin-bottom:30px;

opacity:.95;

}

.cta-buttons,
.quick-buttons,
.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/* =====================================
BACK TO TOP
===================================== */

.back-to-top{

position:fixed;

left:25px;

bottom:25px;

width:52px;

height:52px;

background:#0f766e;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

cursor:pointer;

box-shadow:0 10px 30px rgba(0,0,0,.25);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:999;

}

.back-to-top.show{

opacity:1;

visibility:visible;

}

.back-to-top:hover{

transform:translateY(-5px);

background:#115e59;

}

/* =====================================
SCROLLBAR
===================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#e5e7eb;

}

::-webkit-scrollbar-thumb{

background:#0f766e;

border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

background:#115e59;

}

/* =====================================
ANIMATION
===================================== */

.fade-up{

animation:fadeUp .7s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* =====================================
UTILITY
===================================== */

.text-center{

text-align:center;

}

.mt-30{

margin-top:30px;

}

.mt-50{

margin-top:50px;

}

.mb-30{

margin-bottom:30px;

}

.shadow{

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.rounded{

border-radius:18px;

}

/* =====================================
SELECTION
===================================== */

::selection{

background:#0f766e;

color:#fff;

}

/* =====================================
END OF FILE
SabzAbi Store V1
===================================== */

