/* ===============================================
   TEMA365 — Ambalaj365 tarzı WooCommerce/WoodMart teması
   Statik HTML/CSS yeniden üretim
   Marka adını değiştirmek için: HTML içinde "marka" logosunu düzenleyin
   =============================================== */
:root{
  --primary:#96c700;        /* ana yeşil */
  --primary-dark:#7ea800;
  --accent:#a5c621;         /* buton yeşili */
  --cream:#f5ebd2;          /* header krem */
  --cream-light:#f9f1df;    /* zemin krem */
  --title:#242424;
  --text:#767676;
  --link:#333333;
  --page:#f6f6f6;
  --white:#ffffff;
  --orange:#e8973d;
  --olive:#7c8b5f;
  --radius:12px;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --font:"Rethink Sans",Arial,Helvetica,sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font);color:var(--text);background:var(--white);font-size:16px;line-height:1.6}
a{text-decoration:none;color:var(--link);transition:color .2s}
a:hover{color:var(--primary)}
img{max-width:100%;display:block}
ul{list-style:none}
button{font-family:var(--font);cursor:pointer}
.container{max-width:1222px;margin:0 auto;padding:0 15px}
h1,h2,h3,h4{color:var(--title);line-height:1.3}

/* ---------- Top bar ---------- */
.topbar{background:var(--primary);color:#fff;font-size:14px}
.topbar .container{display:flex;align-items:center;justify-content:space-between;height:42px}
.topbar-social{display:flex;gap:16px;align-items:center}
.topbar-social a{color:#fff;display:flex;opacity:.95}
.topbar-social a:hover{opacity:.7;color:#fff}
.topbar-social svg{width:15px;height:15px;fill:#fff}
.topbar-links{display:flex;align-items:center}
.topbar-links a{color:#fff;font-weight:600;padding:0 14px;position:relative}
.topbar-links a:hover{color:#f5ebd2}
.topbar-links a+a::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:1px;height:14px;background:rgba(255,255,255,.4)}

/* ---------- Header ---------- */
.site-header{background:var(--cream);padding:18px 0}
.site-header .container{display:flex;align-items:center;gap:32px}
.logo{display:block;line-height:1;flex-shrink:0}
.logo .logo-main{font-size:34px;font-weight:800;letter-spacing:-1px;color:#58a618}
.logo .logo-main .logo-365{color:#96c700;font-style:italic}
.logo .logo-main sup{font-size:11px;color:#58a618}
.logo .logo-sub{display:flex;align-items:center;gap:5px;font-size:12px;font-weight:700;letter-spacing:2px;color:#e8973d;margin-top:2px}
.logo .logo-sub svg{width:13px;height:13px;fill:#58a618}
.header-search{flex:1;max-width:560px;margin:0 auto;position:relative}
.header-search input{width:100%;height:46px;border:none;border-radius:30px;padding:0 56px 0 22px;font-size:15px;font-family:var(--font);color:#333;background:#fff;outline:none;box-shadow:0 1px 3px rgba(0,0,0,.05)}
.header-search input::placeholder{color:#a9a9a9}
.header-search .search-btn{position:absolute;right:4px;top:4px;width:38px;height:38px;border-radius:50%;border:none;background:var(--primary);display:flex;align-items:center;justify-content:center}
.header-search .search-btn svg{width:17px;height:17px;stroke:#fff;fill:none;stroke-width:2}
.header-right{display:flex;align-items:center;gap:20px;flex-shrink:0}
.header-account{font-size:15px;font-weight:600;color:var(--title)}
.header-cart{display:flex;align-items:center;gap:10px;position:relative;padding-left:20px;border-left:1px solid rgba(0,0,0,.12)}
.header-cart .cart-icon{position:relative;display:flex}
.header-cart svg{width:26px;height:26px;stroke:#3e3e3e;fill:none;stroke-width:1.6}
.header-cart .cart-count{position:absolute;top:-7px;right:-9px;background:var(--primary);color:#fff;font-size:11px;font-weight:700;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center}
.header-cart .cart-total{font-size:15px;font-weight:600;color:var(--title)}

/* ---------- Nav ---------- */
.main-nav{background:var(--primary)}
.main-nav>.container>ul{display:flex;justify-content:center;flex-wrap:wrap}
.main-nav li{position:relative}
.main-nav li>a{display:flex;align-items:center;gap:5px;color:#fff;font-weight:600;font-size:15px;padding:14px 17px;position:relative}
.main-nav li>a:hover{color:#f9f1df}
.main-nav li+li>a::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:1px;height:16px;background:rgba(255,255,255,.35)}
.main-nav .caret{width:9px;height:9px;border-right:2px solid rgba(255,255,255,.8);border-bottom:2px solid rgba(255,255,255,.8);transform:rotate(45deg) translateY(-3px)}
.main-nav .dropdown{position:absolute;top:100%;left:0;background:#fff;min-width:230px;border-radius:0 0 10px 10px;box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(8px);transition:.25s;z-index:60;padding:10px 0}
.main-nav li:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.main-nav .dropdown a{display:block;padding:9px 22px;font-size:14px;color:#555;font-weight:500}
.main-nav .dropdown a:hover{color:var(--primary);background:#f8f8f8}

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar{background:var(--cream);padding:13px 0;font-size:14px}
.breadcrumb-bar .container{display:flex;align-items:center;justify-content:space-between}
.breadcrumb-bar .crumbs a{color:#555}
.breadcrumb-bar .crumbs span.sep{margin:0 8px;color:#aaa}
.breadcrumb-bar .crumbs .current{color:var(--title);font-weight:600}

/* ---------- Hero slider ---------- */
.hero-section{padding:26px 0 0}
.hero{border-radius:var(--radius);overflow:hidden;position:relative;min-height:520px;display:flex;align-items:center;background:
  radial-gradient(ellipse at 25% 110%, rgba(214,164,96,.85), transparent 55%),
  radial-gradient(ellipse at 80% -10%, rgba(60,42,25,.9), transparent 60%),
  linear-gradient(115deg,#4a3722 0%,#6b5236 35%,#8a6a44 60%,#3a2c1c 100%)}
.hero-badge{position:absolute;top:36px;left:44px;width:56px;height:56px;opacity:.9}
.hero-badge svg{width:100%;height:100%;stroke:#f0e2c4;fill:none;stroke-width:1.4}
.hero-content{position:relative;margin-left:auto;text-align:right;padding:60px;max-width:560px;z-index:2}
.hero-content h2{font-size:42px;font-weight:800;color:#f3e7c8;text-transform:uppercase;line-height:1.15;margin-bottom:22px;text-shadow:0 2px 14px rgba(0,0,0,.35)}
.hero-content p{color:#fdf6e3;font-size:19px;font-weight:500;line-height:1.5;margin-bottom:6px;text-shadow:0 1px 8px rgba(0,0,0,.4)}
.hero-content p u{text-underline-offset:4px}
.hero-content .hero-link{display:inline-block;margin-top:26px;background:var(--olive);color:#fff;font-weight:700;font-size:16px;letter-spacing:.5px;padding:15px 34px;border-radius:30px;text-transform:uppercase;box-shadow:0 6px 18px rgba(0,0,0,.3)}
.hero-content .hero-link:hover{background:#6b7a50;color:#fff}
.hero-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:3}
.hero-dots span{width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.5)}
.hero-dots span.active{background:#fff}

/* ---------- Marquee ---------- */
.marquee{background:var(--primary);overflow:hidden;padding:12px 0;margin:26px 0}
.marquee-track{display:flex;gap:56px;white-space:nowrap;animation:marquee 28s linear infinite;width:max-content}
.marquee-item{display:flex;align-items:center;gap:10px;color:#fff;font-size:17px;font-weight:700}
.marquee-item svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2;flex-shrink:0}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---------- Kategori satırı ---------- */
.cat-row-section{background:var(--cream-light);padding:8px 0 26px}
.cat-row{display:grid;grid-template-columns:repeat(5,1fr);gap:24px;text-align:center}
.cat-row a{display:block}
.cat-row .cat-img{height:150px;border-radius:14px;margin-bottom:12px;display:flex;align-items:center;justify-content:center;background:linear-gradient(140deg,#e8d9bd,#d9c49b);transition:transform .25s}
.cat-row a:hover .cat-img{transform:translateY(-4px)}
.cat-row .cat-img svg{width:54px;height:54px;stroke:#8a6f45;fill:none;stroke-width:1.4}
.cat-row .cat-name{font-size:14px;font-weight:600;color:#333}

/* ---------- Bölüm başlığı ---------- */
.section{padding:44px 0}
.section-title{text-align:center;margin-bottom:34px}
.section-title h2{display:inline-block;font-size:20px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding-bottom:8px;border-bottom:2px solid var(--accent)}
.section-title.orange h2{border-bottom-color:var(--orange)}

/* ---------- Ürün kartları ---------- */
.product-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.product-grid.cols-4{grid-template-columns:repeat(4,1fr)}
.product-card{background:#fff;border-radius:var(--radius);padding:12px 12px 20px;text-align:center;transition:box-shadow .25s;display:flex;flex-direction:column}
.product-card:hover{box-shadow:var(--shadow)}
.product-card .p-img{background:#f6f6f8;border-radius:10px;height:200px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.product-card .p-img svg{width:64px;height:64px;stroke:#c4c4c4;fill:none;stroke-width:1.2}
.product-card .p-stock{display:flex;align-items:center;justify-content:center;gap:6px;font-size:14px;font-weight:700;color:#3e3e3e;margin-bottom:8px}
.product-card .p-stock svg{width:15px;height:15px;stroke:var(--primary);fill:none;stroke-width:2.5}
.product-card .p-title{font-size:15px;font-weight:600;color:#3e3e3e;margin-bottom:6px;min-height:44px}
.product-card .p-title a{color:#3e3e3e}
.product-card .p-title a:hover{color:var(--primary)}
.product-card .p-cats{font-size:13px;color:#ababab;margin-bottom:12px}
.product-card select{width:100%;border:1px solid #ddd;border-radius:8px;height:40px;padding:0 12px;font-family:var(--font);font-size:14px;color:#555;background:#fff;margin-bottom:14px;appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%2396c700' stroke-width='2' fill='none'/></svg>");background-repeat:no-repeat;background-position:right 12px center}
.product-card .p-price{margin-top:auto;font-size:17px;font-weight:800;color:var(--primary)}
.product-card .p-price small{font-size:12px;font-weight:500;color:#999}

/* ---------- Sektörler ---------- */
.sector-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.sector-card{position:relative;height:160px;border-radius:var(--radius);overflow:hidden;display:flex;align-items:flex-end;padding:14px;transition:transform .25s}
.sector-card:hover{transform:translateY(-4px)}
.sector-card span{position:relative;z-index:2;font-size:26px;font-weight:900;font-stretch:condensed;color:#fff;text-transform:uppercase;letter-spacing:.5px;text-shadow:0 2px 10px rgba(0,0,0,.55);line-height:1}
.sector-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.45),transparent 60%)}
.sector-burger{background:radial-gradient(circle at 50% 35%,#d98e3a,#8a4a1e 75%)}
.sector-coffee{background:radial-gradient(circle at 50% 35%,#a9805a,#4e3421 75%)}
.sector-bakery{background:radial-gradient(circle at 50% 35%,#caa06a,#6e4d2a 75%)}
.sector-pizza{background:radial-gradient(circle at 50% 35%,#c96f3a,#7a2f18 75%)}
.sector-dessert{background:radial-gradient(circle at 50% 35%,#6e4a3a,#2e1c16 75%)}

/* ---------- CTA banner ---------- */
.cta-banner{border-radius:18px;background:
  radial-gradient(ellipse at 15% 80%,rgba(190,200,160,.5),transparent 50%),
  radial-gradient(ellipse at 85% 20%,rgba(220,225,200,.4),transparent 50%),
  linear-gradient(120deg,#8a9478,#6f7a5c 60%,#828d6c)}
.cta-inner{padding:80px 40px;text-align:center}
.cta-inner h2{font-size:34px;font-weight:800;color:#fff;margin-bottom:14px;text-shadow:0 2px 10px rgba(0,0,0,.25)}
.cta-inner p{color:#f3e04e;font-weight:700;font-size:17px;margin-bottom:28px}
.cta-inner a{display:inline-block;background:#fff;color:#555;font-weight:700;font-size:15px;padding:13px 30px;border-radius:26px}
.cta-inner a:hover{background:var(--primary);color:#fff}

/* ---------- Info text ---------- */
.info-block{max-width:1140px;margin:0 auto;text-align:center}
.info-block h2{font-size:26px;margin-bottom:20px}
.info-block p{margin-bottom:14px;font-size:16.5px}
.info-block b{color:#333}

/* ---------- Blog kartları ---------- */
.blog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.blog-card{background:#fff;border-radius:var(--radius);overflow:hidden;transition:box-shadow .25s;display:flex;flex-direction:column}
.blog-card:hover{box-shadow:var(--shadow)}
.blog-card .b-img{height:170px;position:relative;display:flex;align-items:center;justify-content:center;padding:20px;background:linear-gradient(120deg,#96c700,#4e8a12 70%)}
.blog-card .b-img h4{color:#fff;font-size:19px;font-weight:800;text-align:center;text-shadow:0 2px 8px rgba(0,0,0,.3)}
.blog-card .b-img .b-date{position:absolute;left:16px;bottom:14px;background:rgba(255,255,255,.2);color:#fff;font-size:11px;font-weight:700;padding:3px 9px;border-radius:4px}
.blog-card .b-body{padding:20px 22px 24px;display:flex;flex-direction:column;flex:1}
.blog-card .b-meta{font-size:13px;color:#999;margin-bottom:10px}
.blog-card .b-title{font-size:19px;font-weight:700;margin-bottom:10px}
.blog-card .b-title a{color:var(--title)}
.blog-card .b-title a:hover{color:var(--primary)}
.blog-card .b-excerpt{font-size:14px;margin-bottom:16px}
.blog-card .b-more{margin-top:auto;color:var(--primary);font-weight:700;font-size:14px}
.blog-card .b-more:hover{color:var(--primary-dark)}

/* ---------- Instagram ---------- */
.insta-section{padding:44px 0 0;text-align:center}
.insta-section .insta-icon{display:inline-flex;margin-bottom:14px}
.insta-section .insta-icon svg{width:30px;height:30px;stroke:#555;fill:none;stroke-width:1.6}
.insta-section p{font-weight:700;color:#333;margin-bottom:26px}
.insta-section p a{color:var(--orange);text-decoration:underline}
.insta-strip{display:grid;grid-template-columns:repeat(8,1fr);gap:4px}
.insta-strip .insta-item{aspect-ratio:1;border-radius:6px;display:flex;align-items:center;justify-content:center;padding:12px;text-align:center;color:#fff;font-size:12px;font-weight:700;text-shadow:0 1px 6px rgba(0,0,0,.4)}
.ig1{background:linear-gradient(140deg,#b98d54,#6e4d2a)}
.ig2{background:linear-gradient(140deg,#8a6a44,#4a3722)}
.ig3{background:linear-gradient(140deg,#a9805a,#5e4021)}
.ig4{background:linear-gradient(140deg,#7c8b5f,#4c5a38)}
.ig5{background:linear-gradient(140deg,#5e5244,#2e2820)}
.ig6{background:linear-gradient(140deg,#c29b62,#7e5c32)}
.ig7{background:linear-gradient(140deg,#4e3a2e,#241a12)}
.ig8{background:linear-gradient(140deg,#9b7346,#5a3f22)}

/* ---------- Footer ---------- */
.site-footer{background:var(--cream-light);margin-top:56px;padding:56px 0 0}
.footer-cols{display:grid;grid-template-columns:1.2fr 1.1fr 1.1fr 1fr;gap:36px}
.footer-cols h4{font-size:18px;margin-bottom:18px}
.footer-cols p{font-size:15px;margin-bottom:10px}
.footer-cols ul li{margin-bottom:11px}
.footer-cols ul a{font-size:15px;color:#767676}
.footer-cols ul a:hover{color:var(--primary)}
.footer-social{display:flex;gap:10px;margin-top:20px}
.footer-social a{width:36px;height:36px;border-radius:50%;background:#111;display:flex;align-items:center;justify-content:center}
.footer-social a:hover{background:var(--primary)}
.footer-social svg{width:16px;height:16px;fill:#fff}
.footer-bottom{margin-top:44px;border-top:1px solid rgba(0,0,0,.35);padding:22px 0;display:flex;align-items:center;justify-content:space-between;font-size:15px}
.pay-icons{display:flex;gap:5px}
.pay-icons span{background:#fff;border:1px solid #e2dcc9;color:#666;font-size:9px;font-weight:800;padding:4px 7px;border-radius:4px;letter-spacing:.3px}

/* ---------- Kategori sayfası ---------- */
.shop-page{background:var(--page);padding:26px 0 50px}
.shop-toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px;font-size:14.5px;flex-wrap:wrap;gap:14px}
.shop-toolbar .show-opts{display:flex;align-items:center;gap:14px}
.shop-toolbar .show-opts b{color:#333}
.shop-toolbar .grid-switch{display:flex;gap:8px}
.shop-toolbar .grid-switch span{display:grid;grid-template-columns:repeat(3,4px);gap:2px;cursor:pointer;opacity:.35}
.shop-toolbar .grid-switch span.active{opacity:1}
.shop-toolbar .grid-switch i{width:4px;height:4px;background:#333;border-radius:1px}
.shop-toolbar select{border:1px solid #e2e2e2;border-radius:22px;height:44px;padding:0 40px 0 18px;font-family:var(--font);font-size:14px;color:#555;background:#fff;appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/></svg>");background-repeat:no-repeat;background-position:right 16px center}
.pagination{display:flex;justify-content:center;gap:8px;margin-top:36px}
.pagination a{width:40px;height:40px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;color:#555}
.pagination a.active,.pagination a:hover{background:var(--primary);color:#fff}

/* ---------- Ürün sayfası ---------- */
.product-page{background:var(--page);padding:34px 0 10px}
.product-layout{display:grid;grid-template-columns:43fr 57fr;gap:36px;align-items:start}
.product-gallery{background:#fff;border-radius:var(--radius);padding:30px;position:sticky;top:20px}
.product-gallery .g-img{background:#fafafa;border-radius:10px;height:420px;display:flex;align-items:center;justify-content:center}
.product-gallery .g-img svg{width:120px;height:120px;stroke:#c9c9c9;fill:none;stroke-width:1}
.product-gallery .g-zoom{margin-top:-408px;margin-left:2px;width:40px;height:40px;border-radius:50%;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.12);display:flex;align-items:center;justify-content:center;position:relative;z-index:2}
.product-gallery .g-zoom svg{width:16px;height:16px;stroke:#555;fill:none;stroke-width:2}
.product-info h1{font-size:30px;font-weight:700;margin-bottom:24px}
.product-desc-box{background:#edf3e0;border-radius:var(--radius);padding:26px 30px;font-size:15.5px;color:#5c6650;margin-bottom:26px}
.buy-card{background:#fff;border-radius:var(--radius);padding:36px 40px;text-align:center}
.buy-card .b-price{font-size:28px;font-weight:800;color:var(--primary)}
.buy-card .b-price small{font-size:15px;font-weight:500;color:#888}
.buy-card .b-stock{display:flex;align-items:center;justify-content:center;gap:6px;font-size:13.5px;color:#333;font-weight:600;margin:14px 0 22px}
.buy-card .b-stock svg{width:14px;height:14px;stroke:var(--primary);fill:none;stroke-width:2.5}
.buy-row{display:flex;gap:14px;align-items:center}
.qty{display:flex;align-items:center;border:1px solid #e2e2e2;border-radius:24px;height:48px;flex-shrink:0}
.qty button{width:38px;height:100%;border:none;background:none;font-size:18px;color:#888}
.qty input{width:34px;border:none;text-align:center;font-family:var(--font);font-size:15px;font-weight:600;color:#333;outline:none}
.add-to-cart{flex:1;height:48px;border:none;border-radius:24px;background:var(--accent);color:#fff;font-size:15px;font-weight:700;letter-spacing:.3px;transition:background .2s}
.add-to-cart:hover{background:var(--primary-dark)}
.buy-links{display:flex;justify-content:center;gap:28px;margin:22px 0 26px;font-size:14.5px}
.buy-links a{color:#333;font-weight:500;display:flex;align-items:center;gap:7px}
.buy-links svg{width:16px;height:16px;stroke:#333;fill:none;stroke-width:1.8}
.buy-card .b-cargo{font-size:14px;color:#555;margin-bottom:20px}
.buy-card .b-cargo b{color:#2456a4}
.buy-card .pay-icons{justify-content:center}
.product-tabs{background:#fff;border-radius:var(--radius);padding:40px 46px;margin:40px 0 0}
.product-tabs .tab-heads{display:flex;gap:32px;margin-bottom:28px}
.product-tabs .tab-heads a{font-size:16px;font-weight:700;color:#333;padding-bottom:6px}
.product-tabs .tab-heads a.active{color:var(--primary)}
.product-tabs h2{font-size:22px;margin:22px 0 12px}
.product-tabs p{font-size:15.5px;margin-bottom:10px}
.spec-table{width:100%;border-collapse:collapse;margin-top:10px}
.spec-table th,.spec-table td{text-align:left;padding:12px 16px;border:1px solid #eee;font-size:15px}
.spec-table th{width:220px;color:var(--title);background:#fafafa}

/* ---------- Sepet ---------- */
.cart-empty{background:var(--page);text-align:center;padding:90px 20px 100px}
.cart-empty svg{width:120px;height:120px;stroke:#d5d5d5;fill:none;stroke-width:1.2;margin:0 auto 26px}
.cart-empty h1{font-size:36px;font-weight:800;margin-bottom:16px}
.cart-empty p{max-width:420px;margin:0 auto 30px}
.btn-green{display:inline-block;background:var(--accent);color:#fff;font-weight:700;font-size:15px;padding:13px 30px;border-radius:26px;border:none}
.btn-green:hover{background:var(--primary-dark);color:#fff}

/* ---------- İletişim ---------- */
.contact-page{background:var(--page);padding:50px 0 60px}
.contact-head{text-align:center;max-width:640px;margin:0 auto 50px}
.contact-head h1{font-size:32px;margin-bottom:12px}
.contact-cols{display:grid;grid-template-columns:1fr 1fr;gap:60px}
.contact-cols h3{font-size:22px;margin-bottom:12px}
.contact-cols .sub{margin-bottom:30px;font-size:15px}
.contact-cols .c-line{font-size:15px;margin-bottom:6px}
.contact-form label{display:block;font-size:14px;font-weight:600;color:#333;margin:16px 0 6px}
.contact-form input,.contact-form textarea{width:100%;border:1px solid #e2e2e2;border-radius:8px;padding:12px 16px;font-family:var(--font);font-size:15px;color:#333;background:#fff;outline:none}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--primary)}
.contact-form textarea{min-height:140px;resize:vertical}
.contact-form button{margin-top:22px}

/* ---------- Sayfa başlığı (blog vb.) ---------- */
.page-head{text-align:center;padding:44px 0 10px}
.page-head h1{font-size:32px}

/* ---------- Responsive ---------- */
@media(max-width:1024px){
  .product-grid,.sector-grid{grid-template-columns:repeat(3,1fr)}
  .product-grid.cols-4{grid-template-columns:repeat(3,1fr)}
  .cat-row{grid-template-columns:repeat(3,1fr)}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .insta-strip{grid-template-columns:repeat(4,1fr)}
  .footer-cols{grid-template-columns:1fr 1fr}
  .product-layout{grid-template-columns:1fr}
  .product-gallery{position:static}
  .main-nav li>a{padding:12px 10px}
}
@media(max-width:640px){
  .topbar .container{justify-content:center}
  .topbar-social{display:none}
  .site-header .container{flex-wrap:wrap;gap:14px}
  .header-search{order:3;max-width:100%;flex-basis:100%}
  .product-grid,.product-grid.cols-4,.sector-grid{grid-template-columns:repeat(2,1fr)}
  .cat-row{grid-template-columns:repeat(2,1fr)}
  .blog-grid,.contact-cols,.footer-cols{grid-template-columns:1fr}
  .hero-content{padding:40px 24px;text-align:center;margin:0 auto}
  .hero-content h2{font-size:30px}
  .cta-inner h2{font-size:24px}
  .buy-row{flex-direction:column}
  .qty{width:100%;justify-content:center}
  .add-to-cart{width:100%}
  .footer-bottom{flex-direction:column;gap:14px}
}


/* ---------- vitrin ek stilleri ---------- */
.flash{background:#dcf1c7;color:#42691a;border-radius:10px;padding:13px 18px;margin:16px 0;font-weight:600;font-size:14.5px}
.flash-err{background:#fbdcd7;color:#a02a1a}
.btn-sm{padding:9px 18px;font-size:13.5px}
.btn-outline{background:none;border:1px solid #ccc;color:#555;font-weight:600;font-size:14px;padding:11px 22px;border-radius:24px;cursor:pointer;font-family:inherit}
.btn-outline:hover{border-color:#96c700;color:#7ea800}
.hero-hidden{display:none!important}
.cart-table{width:100%;border-collapse:collapse;background:#fff;border-radius:12px;overflow:hidden}
.cart-table th{text-align:left;padding:14px 18px;background:#fafaf7;font-size:13.5px;color:#242424}
.cart-table td{padding:14px 18px;border-top:1px solid #f0f0ec;font-size:14.5px}
.ct-name a{font-weight:600;color:#3e3e3e}
.ct-qty{width:74px;border:1px solid #ddd;border-radius:8px;height:38px;padding:0 8px;font-family:inherit;text-align:center}
.ct-del{background:none;border:none;font-size:22px;color:#c0392b;cursor:pointer;line-height:1}
.cart-actions{display:flex;justify-content:space-between;align-items:flex-start;margin-top:22px;gap:20px;flex-wrap:wrap}
.cart-summary{background:#fff;border-radius:12px;padding:22px 26px;min-width:280px;text-align:right}
.cart-summary>div{margin-bottom:10px;font-size:15.5px}
.ship-free{color:#7ea800;font-weight:700}
.checkout-cols{display:grid;grid-template-columns:3fr 2fr;gap:30px;align-items:start}
.checkout-form{background:#fff;border-radius:12px;padding:28px 32px}
.checkout-form h3{margin-bottom:4px}
.order-summary{background:#fff;border-radius:12px;padding:26px 30px;position:sticky;top:20px}
.order-summary h3{margin-bottom:14px}
.os-line{display:flex;justify-content:space-between;gap:14px;font-size:14px;padding:8px 0;border-bottom:1px solid #f2f2ee}
.os-total{display:flex;justify-content:space-between;font-size:17px;margin-top:14px}
.pay-opt{display:flex!important;gap:12px;align-items:flex-start;background:#fafaf7;border:1px solid #eee;border-radius:10px;padding:14px 16px;margin-top:10px;cursor:pointer;font-weight:500!important}
.pay-opt input{width:auto!important;margin-top:4px}
.pay-opt small{color:#888;font-weight:400}
.pay-off{opacity:.55;cursor:not-allowed}
@media(max-width:900px){.checkout-cols{grid-template-columns:1fr}}

/* ---------- seçenekli fiyatlandırma ---------- */
.unit-line{font-size:22px;font-weight:700;color:var(--title);margin:-10px 0 20px}
.unit-line #unitPrice{color:var(--primary);font-size:26px;font-weight:800}
.unit-line small{font-weight:500;color:#999;font-size:14px}
.opt-group{margin-bottom:16px}
.opt-label{display:block;font-size:14px;font-weight:700;color:#333;margin-bottom:8px}
.opt-pills{display:flex;flex-wrap:wrap;gap:8px}
.opt-pill input{display:none}
.opt-pill span{display:inline-block;border:1.5px solid #ddd;border-radius:9px;padding:9px 16px;font-size:14px;font-weight:600;color:#555;cursor:pointer;background:#fff;transition:.15s}
.opt-pill input:checked+span{border-color:var(--primary);color:#3e5b00;background:#f2f8df}
.opt-pill span:hover{border-color:var(--primary)}
.tier-box{margin-top:18px}
.tier-title{font-size:15px;font-weight:800;color:var(--title);margin-bottom:8px}
.tier-table{width:100%;border-collapse:collapse;font-size:14px}
.tier-table th{background:var(--primary);color:#fff;text-align:left;padding:9px 14px;font-size:13px}
.tier-table td{padding:9px 14px;border:1px solid #eee;background:#fff}
.tier-table tr.tier-on td{background:#f2f8df;font-weight:700}
.total-line{margin-top:14px;font-size:18px;color:var(--title)}
.total-line b{color:var(--primary);font-size:22px}
.tier-note{font-size:13px;color:#7ea800;font-weight:600}

/* ---------- etiketler ---------- */
.tag-chips{background:#fff;border-radius:var(--radius);padding:20px 26px;margin-top:20px;display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-size:14px}
.tag-chips span{font-weight:700;color:var(--title)}
.tag-chips a{display:inline-block;background:#f2f2ee;border-radius:16px;padding:6px 14px;font-size:13px;font-weight:600;color:#555}
.tag-chips a:hover{background:var(--primary);color:#fff}

/* ---------- özel logo ---------- */
.logo-img{max-height:60px;width:auto;display:block}
@media(max-width:640px){.logo-img{max-height:44px}}

/* ---------- slider: yumuşak geçiş, önceden yükleme ---------- */
.hero-wrap{display:grid;border-radius:var(--radius);overflow:hidden}
.hero-wrap>.hero{grid-area:1/1;opacity:0;transition:opacity .8s ease;pointer-events:none;background-size:cover;background-position:center;background-repeat:no-repeat}
.hero-wrap>.hero.active{opacity:1;pointer-events:auto}
.hero-wrap>.hero .hero-content{transform:translateY(12px);transition:transform .8s ease}
.hero-wrap>.hero.active .hero-content{transform:none}

/* görselli slaytta dekoratif rozet gizli */
.hero.has-img .hero-badge{display:none}

/* ---------- kategori sayfası başlık + alt kategori çipleri ---------- */
.cat-title{font-size:28px;margin-bottom:12px}
.subcat-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
.subcat-chips a{display:inline-block;background:#fff;border:1.5px solid #e4e4e4;border-radius:20px;padding:8px 16px;font-size:14px;font-weight:600;color:#444}
.subcat-chips a:hover{border-color:var(--primary);color:var(--primary-text)}

/* ---------- kategori açıklaması ---------- */
.cat-desc{max-width:900px;font-size:15.5px;color:#666;margin-bottom:18px;line-height:1.7}

/* ---------- ürün karuseli ---------- */
.pc-wrap{position:relative}
.pc-track{display:flex;gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;-ms-overflow-style:none;padding-bottom:4px}
.pc-track::-webkit-scrollbar{display:none}
.pc-track .product-card{flex:0 0 calc((100% - 4*18px)/5);scroll-snap-align:start}
.pc-btn{position:absolute;top:38%;width:42px;height:42px;border-radius:50%;border:none;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,.15);font-size:26px;line-height:1;color:#333;cursor:pointer;z-index:2;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .2s}
.pc-wrap:hover .pc-btn{opacity:1}
.pc-prev{left:-14px}.pc-next{right:-14px}
.pc-btn:hover{background:var(--primary);color:var(--on-primary)}
@media(max-width:1024px){.pc-track .product-card{flex-basis:calc((100% - 2*18px)/3)}}
@media(max-width:640px){.pc-track .product-card{flex-basis:calc((100% - 18px)/2)}.pc-btn{display:none}}

/* ---------- panelden yönetilen görseller ---------- */
.cat-row .cat-img.has-img{overflow:hidden;padding:0}
.cat-row .cat-img.has-img img{width:100%;height:100%;object-fit:cover;display:block}
.cta-banner.has-img{background-size:cover;background-position:center;position:relative;overflow:hidden}
.cta-banner.has-img .cta-inner{position:relative;z-index:1}
.cta-banner.has-img::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.45)}
.insta-item.has-img{position:relative;overflow:hidden;padding:0;display:block}
.insta-item.has-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.insta-item.has-img:hover img{transform:scale(1.06)}
.insta-item.has-img span{position:absolute;left:0;right:0;bottom:0;padding:8px;background:linear-gradient(transparent,rgba(0,0,0,.6));font-size:12px;font-weight:700;color:#fff;text-align:center}
