@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --teal: #3fb8af;
    --teal-dark: #2d9a91;
    --teal-light: #e0f5f3;
    --teal-pale: #f0faf9;
    --graphite: #1a2332;
    --gray-50: #f8fafb;
    --gray-100: #f0f3f5;
    --gray-200: #e1e6eb;
    --gray-300: #cdd4da;
    --gray-400: #a8b5c2;
    --gray-500: #6b7d8f;
    --white: #ffffff;
    --accent: #e8952e;
    --red: #d44;
    --green: #2a9d5c;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;color:var(--graphite);background:var(--gray-50);line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:var(--teal);text-decoration:none;transition:color .2s}
a:hover{color:var(--teal-dark)}
img{max-width:100%;height:auto}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 28px;border-radius:12px;border:none;font-family:'Outfit',sans-serif;font-size:15px;font-weight:600;cursor:pointer;transition:all .3s;text-decoration:none}
.btn-primary{background:var(--teal);color:#fff}
.btn-primary:hover{background:var(--teal-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(63,184,175,.3);color:#fff}
.btn-outline{background:transparent;color:var(--teal);border:2px solid var(--teal)}
.btn-outline:hover{background:var(--teal);color:#fff}
.btn-danger{background:var(--red);color:#fff}
.btn-sm{padding:8px 16px;font-size:13px;border-radius:10px}
.btn-lg{padding:16px 36px;font-size:17px;border-radius:16px}
.btn-block{width:100%;justify-content:center}

/* Cards */
.card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 2px 16px rgba(0,0,0,.04);transition:transform .4s cubic-bezier(.175,.885,.32,1.275),box-shadow .4s}
.card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.08)}

/* Typography */
.section-title{font-family:'Playfair Display',serif;font-size:36px;font-weight:700;color:var(--graphite);margin-bottom:12px}
.text-center{text-align:center}
.section-subtitle{color:var(--gray-500);font-size:16px;margin-bottom:48px;max-width:600px}
.wave-divider{width:60px;height:4px;background:var(--teal);border-radius:2px;margin:12px 0 24px}
.mx-auto{margin-left:auto;margin-right:auto}

/* Forms */
.form-group{margin-bottom:16px}
.form-label{display:block;font-size:13px;font-weight:600;margin-bottom:6px}
.form-input{width:100%;padding:14px 18px;border:2px solid var(--gray-200);border-radius:12px;font-size:15px;font-family:'Outfit',sans-serif;transition:border-color .3s;outline:none;background:#fff}
.form-input:focus{border-color:var(--teal)}
textarea.form-input{resize:vertical;min-height:80px}
.form-check{display:flex;align-items:center;gap:10px;cursor:pointer;font-size:13px;color:var(--gray-500)}
.form-check input[type=checkbox]{width:18px;height:18px;accent-color:var(--teal)}

/* Badge */
.badge{display:inline-flex;align-items:center;gap:4px;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:600}
.badge-teal{background:var(--teal-light);color:var(--teal-dark)}
.badge-new{background:#fff3cd;color:#856404}
.badge-processing{background:#cce5ff;color:#004085}
.badge-shipped{background:#d1ecf1;color:#0c5460}
.badge-delivered{background:#d4edda;color:#155724}
.badge-cancelled{background:#f8d7da;color:#721c24}

/* Grid */
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(auto-fill,minmax(270px,1fr))}
.grid-auto{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}

/* Flex */
.flex{display:flex}.flex-center{align-items:center}.flex-between{justify-content:space-between}.flex-wrap{flex-wrap:wrap}
.gap-8{gap:8px}.gap-12{gap:12px}.gap-16{gap:16px}.gap-24{gap:24px}

/* Spacing */
.section{padding:80px 0}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}
.pt-100{padding-top:100px}

/* ═══ HEADER ═══ */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(255,255,255,.97);backdrop-filter:blur(20px);border-bottom:1px solid rgba(0,0,0,.05);padding:14px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.header-logo{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--graphite)}
.header-logo-icon{width:42px;height:42px;border-radius:10px;background:var(--teal);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.header-logo-icon svg{width:24px;height:24px;stroke:white;fill:none}
.header-logo-text{font-size:20px;font-weight:800;letter-spacing:-.5px;line-height:1.2}
.header-logo-sub{font-size:10px;font-weight:500;color:var(--gray-400);letter-spacing:2px;text-transform:uppercase}
.header-nav{display:flex;gap:32px;align-items:center}
.header-nav a{font-size:15px;font-weight:500;color:var(--graphite);text-decoration:none;position:relative;transition:color .2s}
.header-nav a:hover,.header-nav a.active{color:var(--teal)}
.header-nav a.active::after{content:'';position:absolute;bottom:-6px;left:50%;transform:translateX(-50%);width:20px;height:3px;border-radius:2px;background:var(--teal)}
.header-actions{display:flex;align-items:center;gap:12px}
.cart-btn{position:relative;width:44px;height:44px;border-radius:12px;background:var(--teal-light);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center}
.cart-btn svg{width:20px;height:20px;stroke:var(--teal);fill:none}
.cart-badge{position:absolute;top:-4px;right:-4px;width:22px;height:22px;border-radius:50%;background:var(--accent);color:#fff;font-size:11px;font-weight:700;display:flex;align-items:center;justify-content:center}
.mobile-menu-btn{display:none;width:44px;height:44px;border-radius:12px;background:var(--teal-light);border:none;cursor:pointer;align-items:center;justify-content:center}
.mobile-menu-btn svg{width:20px;height:20px;stroke:var(--teal);fill:none}
.mobile-menu{position:absolute;top:100%;left:0;right:0;background:#fff;padding:24px;box-shadow:0 20px 40px rgba(0,0,0,.1);display:none}
.mobile-menu.open{display:block}
.mobile-menu a{display:block;padding:14px 0;border-bottom:1px solid var(--gray-100);font-size:16px;font-weight:500;color:var(--graphite);text-decoration:none}

/* ═══ HERO ═══ */
.hero{position:relative;min-height:100vh;overflow:hidden;background:linear-gradient(135deg,#1a2332 0%,#1e3a4c 40%,#205560 70%,#2d9a91 100%);display:flex;align-items:center}
.hero-waves{position:absolute;top:0;left:0;right:0;bottom:0;opacity:.07;pointer-events:none}
.hero-grid{position:relative;z-index:2;display:flex;align-items:center;gap:48px}
.hero-content{flex:1;min-width:0;max-width:600px}
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(63,184,175,.2);padding:8px 16px;border-radius:30px;margin-bottom:28px;font-size:13px;font-weight:600;color:#6fd5ce;letter-spacing:1px}
.hero h1{font-family:'Playfair Display',serif;font-size:clamp(40px,6vw,72px);font-weight:700;color:#fff;line-height:1.1;margin-bottom:24px}
.hero h1 span{color:var(--teal)}
.hero-desc{font-size:20px;color:rgba(255,255,255,.7);line-height:1.6;margin-bottom:40px;max-width:520px}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap}
.hero .btn-outline{color:#fff;border-color:rgba(255,255,255,.3)}
.hero .btn-outline:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.5);color:#fff}
.hero-stats{display:flex;gap:40px;margin-top:60px;flex-wrap:wrap}
.hero-stat-num{font-size:36px;font-weight:800;color:var(--teal)}
.hero-stat-label{font-size:13px;color:rgba(255,255,255,.5);font-weight:500}
.hero-wave-bottom{position:absolute;bottom:-1px;left:0;width:100%}
.hero-wave-bottom svg{display:block;width:100%}
/* Hero images */
.hero-images{flex:0 0 420px;display:flex;gap:16px;align-items:center}
.hero-img{border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.3)}
.hero-img img{width:100%;height:100%;object-fit:cover;display:block}
.hero-img-main{flex:1;aspect-ratio:3/2;transform:translateY(-20px)}
.hero-img-secondary{flex:0.7;aspect-ratio:2/3;max-height:320px;transform:translateY(20px)}

/* ═══ TRUST ═══ */
.trust-card{padding:28px;display:flex;gap:18px;align-items:flex-start}
.trust-icon{width:50px;height:50px;border-radius:14px;flex-shrink:0;background:linear-gradient(135deg,var(--teal-light),rgba(63,184,175,.12));display:flex;align-items:center;justify-content:center}
.trust-icon svg{width:24px;height:24px;stroke:var(--teal);fill:none}
.trust-card h3{font-size:16px;font-weight:700;margin-bottom:4px}
.trust-card p{font-size:14px;color:var(--gray-500);line-height:1.5}

/* ═══ UZV ═══ */
.uzv-bg{background:linear-gradient(180deg,var(--gray-50) 0%,var(--teal-pale) 100%)}
.uzv-steps{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;padding:20px 0}
.uzv-step{background:#fff;border-radius:18px;padding:24px;width:200px;text-align:center;position:relative;box-shadow:0 6px 24px rgba(0,0,0,.05)}
.uzv-step-num{position:absolute;top:-8px;right:-8px;width:28px;height:28px;border-radius:50%;background:var(--teal);color:#fff;font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center}
.uzv-step-icon{margin-bottom:10px;font-weight:700;color:var(--teal);font-size:15px}
.uzv-step h4{font-size:14px;font-weight:700;margin-bottom:6px}
.uzv-step p{font-size:12px;color:var(--gray-500);line-height:1.4}
.uzv-benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;max-width:900px;margin:40px auto 0}
.uzv-benefit{display:flex;align-items:center;gap:12px;padding:12px 16px;background:rgba(255,255,255,.8);border-radius:12px;font-size:13px;font-weight:600}

/* ═══ CATEGORIES ═══ */
.cat-card{cursor:pointer;text-align:center}
.cat-card-top{padding:40px 24px 24px}
.cat-card-icon{font-size:18px;font-weight:700;color:var(--teal);margin-bottom:14px}
.cat-card h3{font-size:18px;font-weight:700;margin-bottom:6px}
.cat-card p{font-size:13px;color:var(--gray-500);line-height:1.5}
.cat-card-link{padding:14px;color:var(--teal);font-weight:600;font-size:14px;border-top:1px solid var(--gray-100)}
.cat-fresh .cat-card-top{background:linear-gradient(135deg,#e8f4fd,#d0ecf9)}
.cat-smoked .cat-card-top{background:linear-gradient(135deg,#fef3e2,#fde5c0)}
.cat-semi .cat-card-top{background:linear-gradient(135deg,#e8f5e9,#c8e6c9)}
.cat-canned .cat-card-top{background:linear-gradient(135deg,#f3e5f5,#e1bee7)}

/* ═══ ABOUT ═══ */
.about-bg{background:var(--graphite);color:#fff}
.about-bg .section-title{color:#fff}
.timeline-item{display:flex;gap:16px;align-items:flex-start;padding:20px;border-radius:14px;background:rgba(255,255,255,.05)}
.timeline-year{font-size:28px;font-weight:800;color:var(--teal);min-width:60px}
.timeline-text{font-size:14px;color:rgba(255,255,255,.7);line-height:1.6}

/* ═══ REVIEWS ═══ */
.review-card{padding:24px}
.review-stars{display:flex;gap:3px;margin-bottom:10px}
.star-filled svg{width:16px;height:16px;fill:var(--accent);stroke:var(--accent)}
.star-empty svg{width:16px;height:16px;fill:var(--gray-200);stroke:var(--gray-200)}
.review-text{font-size:14px;color:var(--gray-500);line-height:1.7;margin-bottom:14px;font-style:italic}
.review-author{font-size:14px;font-weight:700}
.review-date{font-size:12px;color:var(--gray-300)}

/* ═══ CONTACTS ═══ */
.contacts-bg{background:linear-gradient(180deg,var(--gray-50),var(--teal-pale))}
.contact-card{padding:28px;text-align:center}
.contact-icon{width:52px;height:52px;border-radius:50%;background:var(--teal-light);display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.contact-icon svg{width:22px;height:22px;stroke:var(--teal);fill:none}
.contact-card h3{font-size:16px;font-weight:700;margin-bottom:6px}
.contact-card p{font-size:14px;color:var(--gray-500);margin-bottom:4px}

/* ═══ CATALOG ═══ */
.search-bar{position:relative;flex:1 1 300px}
.search-bar svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);width:18px;height:18px;stroke:var(--gray-300);fill:none}
.search-bar input{padding-left:46px}
.cat-filters{display:flex;gap:10px;overflow-x:auto;padding-bottom:8px}
.cat-filter{padding:10px 20px;border-radius:30px;border:2px solid var(--gray-200);background:#fff;color:var(--graphite);cursor:pointer;white-space:nowrap;font-family:'Outfit',sans-serif;font-weight:600;font-size:14px;transition:all .3s;text-decoration:none;display:inline-block}
.cat-filter:hover{border-color:var(--teal);color:var(--teal)}
.cat-filter.active{border-color:var(--teal);background:var(--teal);color:#fff}

.product-card{display:flex;flex-direction:column}
.product-img{position:relative;overflow:hidden;aspect-ratio:4/3}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.product-card:hover .product-img img{transform:scale(1.06)}
.product-img-badge{position:absolute;top:10px;left:10px;background:rgba(26,35,50,.75);backdrop-filter:blur(8px);color:#fff;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:600}
.product-info{padding:18px;flex:1;display:flex;flex-direction:column}
.product-name{font-size:15px;font-weight:700;margin-bottom:6px;line-height:1.3}
.product-name a{color:var(--graphite);text-decoration:none}
.product-name a:hover{color:var(--teal)}
.product-weight{font-size:12px;color:var(--gray-400);margin-bottom:8px}
.product-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:12px}
.product-price{font-size:22px;font-weight:800;color:var(--teal)}

.pagination{display:flex;justify-content:center;gap:8px;margin-top:48px}
.pagination a,.pagination span{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;text-decoration:none;background:#fff;color:var(--graphite);box-shadow:0 2px 8px rgba(0,0,0,.06)}
.pagination .active{background:var(--teal);color:#fff}

/* ═══ PRODUCT DETAIL ═══ */
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:48px}
.product-detail-img{border-radius:20px;overflow:hidden;aspect-ratio:4/3}
.product-detail-img img{width:100%;height:100%;object-fit:cover}
.product-detail-price{font-size:36px;font-weight:800;color:var(--teal);margin-bottom:6px}
.product-detail h1{font-family:'Playfair Display',serif;font-size:30px;font-weight:700;margin-bottom:12px}
.qty-control{display:inline-flex;align-items:center;background:var(--gray-100);border-radius:12px;overflow:hidden}
.qty-btn{width:44px;height:44px;border:none;background:none;cursor:pointer;font-size:18px;font-weight:700;font-family:'Outfit'}
.qty-btn:hover{background:var(--gray-200)}
.qty-value{width:44px;text-align:center;font-weight:700;font-size:16px}
.detail-box{padding:14px 18px;background:var(--gray-100);border-radius:12px;margin-bottom:12px}
.detail-box-label{font-size:11px;font-weight:700;color:var(--teal);text-transform:uppercase;letter-spacing:1px;margin-bottom:4px}
.detail-box-value{font-size:14px;color:var(--gray-500);line-height:1.5}
.benefits-box{padding:20px;background:linear-gradient(135deg,var(--teal-light),var(--teal-pale));border-radius:16px;margin-top:24px}
.benefits-box h3{font-size:16px;font-weight:700;margin-bottom:12px}
.benefit-tag{display:inline-block;padding:6px 14px;background:#fff;border-radius:20px;font-size:13px;font-weight:500;color:var(--teal);margin:4px}

/* ═══ CART ═══ */
.cart-item{display:flex;align-items:center;padding:16px;gap:16px;flex-wrap:wrap}
.cart-item-img{width:80px;height:80px;border-radius:12px;object-fit:cover;flex-shrink:0}
.cart-item-info{flex:1;min-width:150px}
.cart-item-name{font-size:15px;font-weight:700;margin-bottom:4px}
.cart-item-weight{font-size:13px;color:var(--gray-500)}
.cart-item-cost{font-weight:800;font-size:18px;min-width:80px;text-align:right;color:var(--teal)}
.cart-remove{width:36px;height:36px;border-radius:10px;border:none;background:var(--gray-100);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s}
.cart-remove svg{width:16px;height:16px;stroke:var(--gray-500);fill:none}
.cart-remove:hover{background:var(--red)}
.cart-remove:hover svg{stroke:#fff}
.cart-total-bar{margin-top:24px;padding:24px;background:#fff;border-radius:16px;box-shadow:0 2px 16px rgba(0,0,0,.04)}
.cart-total{font-size:30px;font-weight:800}

/* ═══ CHECKOUT ═══ */
.order-summary{background:var(--teal-light);border-radius:14px;padding:20px;margin-bottom:28px}
.order-summary h3{font-size:14px;font-weight:700;color:var(--teal);margin-bottom:10px}
.order-line{display:flex;justify-content:space-between;padding:5px 0;font-size:14px}
.order-total-line{border-top:2px solid rgba(63,184,175,.2);margin-top:10px;padding-top:10px;display:flex;justify-content:space-between}
.order-total-val{font-weight:800;font-size:20px;color:var(--teal)}
.info-box{background:var(--gray-100);border-radius:12px;padding:16px;display:flex;align-items:center;gap:12px;font-size:13px;color:var(--gray-500)}
.info-box svg{flex-shrink:0;width:20px;height:20px;stroke:var(--gray-400);fill:none}
.errors{background:#fdf0f0;border:1px solid #f5c6cb;border-radius:12px;padding:14px 18px;margin-bottom:20px}
.errors p{font-size:14px;color:var(--red);margin-bottom:4px}
.success-icon{width:80px;height:80px;border-radius:50%;background:var(--teal-light);display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.success-icon svg{width:40px;height:40px;stroke:var(--teal);fill:none}
.empty-state{text-align:center;padding:60px 0}
.empty-state svg{width:64px;height:64px;stroke:var(--gray-300);fill:none;margin-bottom:20px}
.empty-state h2{font-family:'Playfair Display',serif;font-size:28px;margin-bottom:10px}
.empty-state p{color:var(--gray-500);margin-bottom:24px}

/* ═══ FOOTER ═══ */
.footer{background:var(--graphite);color:#fff;padding:56px 0 28px}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:40px;margin-bottom:40px}
.footer h4{font-size:14px;font-weight:700;margin-bottom:14px;color:var(--teal)}
.footer p,.footer a{font-size:13px;color:rgba(255,255,255,.5);display:block;margin-bottom:6px}
.footer a:hover{color:var(--teal)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:20px;text-align:center;font-size:12px;color:rgba(255,255,255,.3)}

/* ═══ ADMIN ═══ */
.admin-login{max-width:400px;margin:140px auto 60px;padding:0 24px;text-align:center}
.admin-icon{width:64px;height:64px;border-radius:16px;background:var(--teal-light);display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.admin-icon svg{width:32px;height:32px;stroke:var(--teal);fill:none}
.admin-tabs{display:flex;gap:8px;margin-bottom:28px;overflow-x:auto}
.admin-tab{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border-radius:12px;border:none;cursor:pointer;background:#fff;color:var(--graphite);font-weight:600;font-size:14px;font-family:'Outfit',sans-serif;box-shadow:0 2px 8px rgba(0,0,0,.04);transition:all .2s;text-decoration:none}
.admin-tab svg{width:18px;height:18px}
.admin-tab:hover{background:var(--teal-light);color:var(--teal)}
.admin-tab.active{background:var(--teal);color:#fff}
.stat-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;margin-bottom:32px}
.stat-card{background:#fff;border-radius:16px;padding:24px;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.stat-card-num{font-size:32px;font-weight:800;color:var(--teal)}
.stat-card-label{font-size:13px;color:var(--gray-500);margin-top:4px}
.table-wrap{overflow-x:auto}
.table{width:100%;border-collapse:collapse;background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.table th{padding:14px 16px;text-align:left;font-size:11px;font-weight:700;color:var(--gray-500);text-transform:uppercase;letter-spacing:1px;background:var(--gray-100)}
.table td{padding:12px 16px;font-size:14px;border-bottom:1px solid var(--gray-100)}
.table tr:last-child td{border-bottom:none}

/* ═══ NOTIFICATION ═══ */
.notification{position:fixed;bottom:28px;right:28px;z-index:9999;background:var(--graphite);color:#fff;padding:14px 22px;border-radius:12px;font-size:14px;font-weight:500;box-shadow:0 10px 40px rgba(0,0,0,.2);display:flex;align-items:center;gap:10px;animation:fadeIn .3s ease}
.notification svg{stroke:var(--teal);fill:none;width:18px;height:18px}

@keyframes fadeIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}

/* ═══ RESPONSIVE ═══ */
@media(max-width:768px){
    .header-nav{display:none}
    .mobile-menu-btn{display:flex}
    .hero h1{font-size:36px}
    .hero-desc{font-size:16px}
    .section-title{font-size:28px}
    .product-detail{grid-template-columns:1fr;gap:24px}
    .grid-2,.grid-3{grid-template-columns:1fr}
    .hero-grid{flex-direction:column;text-align:center}
    .hero-content{max-width:100%}
    .hero-images{flex:none;width:100%;max-width:400px;margin:0 auto}
    .hero-stats{justify-content:center}
    .hero-btns{justify-content:center}
    .hero{
        margin-top: 50px;
    }
}
@media(max-width:480px){
    .container{padding:0 16px}
    .hero-btns{flex-direction:column}
    .hero-btns .btn{width:100%;justify-content:center}
}
