/* FlipDeals — main.css */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
	--fd-blue:#2874f0;--fd-blue-d:#1c5fd0;--fd-blue-l:#eef4ff;
	--fd-yellow:#ff9f00;--fd-green:#388e3c;--fd-green-l:#e7f5e8;
	--fd-red:#e23744;--fd-red-l:#fdeaec;
	--fd-dark:#0d1117;--fd-text:#212121;--fd-muted:#878787;
	--fd-border:#e0e0e0;--fd-bg:#f1f3f6;--fd-white:#fff;
	--fd-r:8px;--fd-rl:12px;
	--fd-sh:0 1px 3px rgba(0,0,0,.08);
	--fd-sh2:0 4px 16px rgba(0,0,0,.12);
}
html{scroll-behavior:smooth}
body{font-family:'Inter',-apple-system,sans-serif;background:var(--fd-bg);color:var(--fd-text);font-size:14px;line-height:1.6}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{cursor:pointer;font-family:inherit;border:none}
input,select,textarea{font-family:inherit}
ul{list-style:none}

/* ── HEADER ── */
.fd-header{background:var(--fd-blue);position:sticky;top:0;z-index:300;box-shadow:var(--fd-sh)}
.fd-header-inner{max-width:1280px;margin:0 auto;padding:0 20px;display:flex;align-items:center;gap:22px;height:60px}
.fd-logo{display:flex;align-items:center;gap:8px;flex-shrink:0}
.fd-logo-icon{font-size:24px}
.fd-logo-text{font-size:20px;font-weight:800;color:#fff;letter-spacing:-.4px}
.fd-logo .custom-logo{height:38px;width:auto}
.fd-header-search{flex:1;max-width:580px}
.fd-header-search form{display:flex;background:#fff;border-radius:var(--fd-r);overflow:hidden;box-shadow:0 1px 3px rgba(0,0,0,.15)}
.fd-header-search input{flex:1;padding:10px 16px;border:none;font-size:14px;outline:none;min-width:0}
.fd-header-search button{background:#fff;color:var(--fd-blue);padding:0 16px;display:flex;align-items:center;justify-content:center}
.fd-header-search button:hover{color:var(--fd-blue-d)}
.fd-nav ul{display:flex;align-items:center;gap:4px}
.fd-nav ul li a{color:#fff;font-size:13.5px;font-weight:600;padding:7px 13px;border-radius:6px;transition:background .15s;display:block;white-space:nowrap}
.fd-nav ul li a:hover,.fd-nav ul li.current-menu-item>a{background:rgba(255,255,255,.15)}
.fd-burger{display:none;flex-direction:column;gap:5px;background:none;padding:5px}
.fd-burger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px}

/* ── HERO ── */
.fd-hero{background:linear-gradient(135deg,#1c5fd0 0%,#2874f0 55%,#4b8ef5 100%);padding:60px 20px 66px;text-align:center}
.fd-hero-inner{max-width:680px;margin:0 auto}
.fd-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);color:#fff;font-size:12px;font-weight:600;padding:5px 14px;border-radius:20px;margin-bottom:18px}
.fd-hero-title{font-size:42px;font-weight:900;color:#fff;line-height:1.15;letter-spacing:-1px;margin-bottom:12px}
.fd-hero-sub{font-size:16px;color:rgba(255,255,255,.85);margin-bottom:30px;line-height:1.6}
.fd-hero-search{background:#fff;border-radius:50px;padding:6px 6px 6px 20px;display:flex;align-items:center;gap:10px;box-shadow:0 8px 30px rgba(0,0,0,.2);margin-bottom:16px}
.fd-hero-search svg{flex-shrink:0}
.fd-hero-search input{flex:1;border:none;outline:none;font-size:15px;min-width:0;color:var(--fd-text)}
.fd-hero-search button{background:var(--fd-yellow);color:#fff;font-size:14px;font-weight:700;padding:12px 30px;border-radius:50px;flex-shrink:0;transition:transform .15s}
.fd-hero-search button:hover{transform:scale(1.04)}
.fd-hero-tip{font-size:12.5px;color:rgba(255,255,255,.7);margin-bottom:22px}
.fd-hero-chips{display:flex;flex-wrap:wrap;gap:8px;justify-content:center}
.fd-chip{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:#fff;font-size:12.5px;font-weight:500;padding:6px 15px;border-radius:20px;cursor:pointer;transition:background .15s}
.fd-chip:hover{background:rgba(255,255,255,.25)}

/* ── HOW IT WORKS ── */
.fd-how{max-width:1000px;margin:0 auto;padding:40px 20px}
.fd-how-inner{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.fd-how-card{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);padding:24px;text-align:center;box-shadow:var(--fd-sh)}
.fd-how-icon{font-size:36px;margin-bottom:10px}
.fd-how-card h3{font-size:15px;font-weight:700;margin-bottom:6px}
.fd-how-card p{font-size:13px;color:var(--fd-muted);line-height:1.6}

/* ── SECTIONS ── */
.fd-section{max-width:1280px;margin:0 auto;padding:30px 20px 50px}
.fd-section-hd{margin-bottom:18px}
.fd-section-hd h2{font-size:20px;font-weight:800;color:var(--fd-dark)}

/* ── BLOG GRID ── */
.fd-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.fd-blog-card{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);overflow:hidden;box-shadow:var(--fd-sh);transition:transform .18s,box-shadow .18s;display:flex;flex-direction:column}
.fd-blog-card:hover{transform:translateY(-3px);box-shadow:var(--fd-sh2)}
.fd-blog-img{width:100%;height:170px;object-fit:cover}
.fd-blog-ph{display:flex;align-items:center;justify-content:center;font-size:38px;background:linear-gradient(135deg,var(--fd-blue-l),#dbe7ff)}
.fd-blog-body{padding:16px;flex:1;display:flex;flex-direction:column}
.fd-cat-badge{align-self:flex-start;background:var(--fd-blue-l);color:var(--fd-blue);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:3px 9px;border-radius:4px;margin-bottom:9px}
.fd-blog-title{font-size:15px;font-weight:700;line-height:1.35;margin-bottom:8px}
.fd-blog-title a:hover{color:var(--fd-blue)}
.fd-blog-excerpt{font-size:13px;color:var(--fd-muted);line-height:1.55;flex:1;margin-bottom:10px}
.fd-blog-meta{display:flex;gap:6px;font-size:12px;color:var(--fd-muted)}

/* ── EMPTY STATE ── */
.fd-empty{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);padding:48px 28px;text-align:center;box-shadow:var(--fd-sh);max-width:560px;margin:0 auto}
.fd-empty-icon{font-size:52px;margin-bottom:14px}
.fd-empty h2{font-size:20px;margin-bottom:8px}
.fd-empty p{font-size:14px;color:var(--fd-muted);margin-bottom:18px}
.fd-url-show{background:var(--fd-bg);border:1px solid var(--fd-border);border-radius:var(--fd-r);padding:9px 13px;font-size:12px;color:var(--fd-muted);word-break:break-all;margin-bottom:16px}

/* ── BUTTONS ── */
.fd-btn-primary{display:inline-flex;align-items:center;gap:7px;background:var(--fd-yellow);color:#fff;font-size:14px;font-weight:700;padding:11px 24px;border-radius:var(--fd-r);transition:filter .15s}
.fd-btn-primary:hover{filter:brightness(.95);color:#fff}
.fd-btn-secondary{display:inline-flex;align-items:center;gap:7px;background:var(--fd-white);color:var(--fd-text);font-size:13.5px;font-weight:600;padding:11px 20px;border-radius:var(--fd-r);border:1.5px solid var(--fd-border);transition:border-color .15s}
.fd-btn-secondary:hover{border-color:var(--fd-blue);color:var(--fd-blue)}

/* ── SEARCH PAGE ── */
.fd-search-page{max-width:1280px;margin:0 auto;padding:24px 20px 50px;display:grid;grid-template-columns:250px 1fr;gap:22px;align-items:start}
.fd-filters{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);padding:18px;box-shadow:var(--fd-sh);position:sticky;top:76px}
.fd-filters-hd{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;padding-bottom:10px;border-bottom:2px solid var(--fd-border)}
.fd-filters-hd h3{font-size:16px;font-weight:700}
.fd-clear{font-size:12px;font-weight:600;color:var(--fd-blue);cursor:pointer}
.fd-clear:hover{text-decoration:underline}
.fd-filter-block{margin-bottom:16px;padding-bottom:14px;border-bottom:1px solid var(--fd-border)}
.fd-filter-block:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.fd-filter-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px}
.fd-price-row{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.fd-price-row label{font-size:11px;color:var(--fd-muted);display:block;margin-bottom:3px}
.fd-price-row input{width:100%;padding:7px 9px;border:1.5px solid var(--fd-border);border-radius:6px;font-size:13px;outline:none}
.fd-price-row input:focus{border-color:var(--fd-blue)}
.fd-filter-search{width:100%;padding:7px 11px;border:1.5px solid var(--fd-border);border-radius:6px;font-size:13px;margin-bottom:9px;outline:none}
.fd-filter-search:focus{border-color:var(--fd-blue)}
.fd-check-list{display:flex;flex-direction:column;gap:7px;max-height:190px;overflow-y:auto}
.fd-check{display:flex;align-items:center;gap:8px;cursor:pointer;font-size:13px}
.fd-check input{width:15px;height:15px;accent-color:var(--fd-blue);flex-shrink:0}
.fd-check-count{margin-left:auto;font-size:11px;color:var(--fd-muted)}
.fd-mini-loading{font-size:12.5px;color:var(--fd-muted)}

.fd-results-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;flex-wrap:wrap;gap:10px}
.fd-results-query{font-size:15px;font-weight:600}
.fd-results-query em{color:var(--fd-blue);font-style:normal}
.fd-results-count{font-size:13px;color:var(--fd-muted);margin-top:2px}
.fd-results-controls{display:flex;gap:9px;align-items:center}
.fd-results-controls select{padding:7px 12px;border:1.5px solid var(--fd-border);border-radius:6px;font-size:13px;outline:none;background:#fff;cursor:pointer}
.fd-filter-toggle{display:none;background:var(--fd-blue-l);border:1.5px solid var(--fd-blue);color:var(--fd-blue);font-size:12.5px;font-weight:600;padding:7px 13px;border-radius:6px}
.fd-dots::after{content:'…';animation:fddots 1.3s infinite}
@keyframes fddots{0%,100%{content:'…'}33%{content:'.'}66%{content:'..'}}

/* ── PRODUCT GRID ── */
.fd-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.fd-product-card-item{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);overflow:hidden;box-shadow:var(--fd-sh);transition:transform .18s,box-shadow .18s;cursor:pointer;display:flex;flex-direction:column}
.fd-product-card-item:hover{transform:translateY(-3px);box-shadow:var(--fd-sh2)}
.fd-pc-img-zone{position:relative;background:#fafafa;height:170px;display:flex;align-items:center;justify-content:center}
.fd-pc-img{max-height:160px;max-width:90%;object-fit:contain}
.fd-pc-img-ph{font-size:46px}
.fd-pc-badge-disc{position:absolute;top:8px;right:8px;background:var(--fd-green);color:#fff;font-size:11px;font-weight:800;padding:2px 8px;border-radius:4px}
.fd-pc-badge-low{position:absolute;top:8px;left:8px;background:var(--fd-red);color:#fff;font-size:9px;font-weight:800;padding:2px 7px;border-radius:4px;letter-spacing:.04em}
.fd-pc-store{position:absolute;bottom:8px;left:8px;background:var(--fd-blue);color:#fff;font-size:9px;font-weight:700;padding:2px 8px;border-radius:4px}
.fd-pc-body{padding:11px 13px 13px;flex:1;display:flex;flex-direction:column;gap:5px}
.fd-pc-title{font-size:12.5px;font-weight:600;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.fd-product-card-item:hover .fd-pc-title{color:var(--fd-blue)}
.fd-pc-rating{display:flex;align-items:center;gap:4px;font-size:11px;color:var(--fd-muted)}
.fd-pc-stars{color:var(--fd-yellow)}
.fd-pc-price{display:flex;align-items:baseline;gap:6px;flex-wrap:wrap}
.fd-pc-now{font-size:16px;font-weight:800;color:var(--fd-dark)}
.fd-pc-mrp{font-size:11.5px;color:var(--fd-muted);text-decoration:line-through}
.fd-pc-off{font-size:11px;font-weight:700;color:var(--fd-green)}
.fd-pc-btn{margin-top:auto;background:var(--fd-blue-l);color:var(--fd-blue);font-size:12px;font-weight:700;padding:7px;border-radius:6px;text-align:center;transition:background .15s}
.fd-product-card-item:hover .fd-pc-btn{background:var(--fd-blue);color:#fff}

/* skeleton */
.fd-skeleton{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);overflow:hidden}
.fd-sk-img{height:170px;background:linear-gradient(90deg,#f0f0f0 25%,#e4e4e4 50%,#f0f0f0 75%);background-size:200% 100%;animation:fdshim 1.4s infinite}
.fd-sk-line{height:11px;margin:11px 13px;border-radius:5px;background:linear-gradient(90deg,#f0f0f0 25%,#e4e4e4 50%,#f0f0f0 75%);background-size:200% 100%;animation:fdshim 1.4s infinite}
.fd-sk-line.short{width:60%}
@keyframes fdshim{0%{background-position:200% 0}100%{background-position:-200% 0}}

/* ── TRACKER PAGE ── */
.fd-tracker-page{max-width:1280px;margin:0 auto;padding:24px 20px 50px;display:grid;grid-template-columns:1fr 300px;gap:24px;align-items:start}
.fd-breadcrumb{display:flex;gap:7px;font-size:12px;color:var(--fd-muted);margin-bottom:14px}
.fd-breadcrumb a:hover{color:var(--fd-blue)}
.fd-notice{background:#fff8e6;border:1px solid #f5e0a3;border-radius:var(--fd-r);padding:10px 14px;font-size:13px;color:#8a6d10;margin-bottom:14px}
.fd-notice a{color:#8a6d10;text-decoration:underline}
.fd-urlbar{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-r);padding:10px 14px;display:flex;align-items:center;gap:10px;margin-bottom:16px;box-shadow:var(--fd-sh)}
.fd-urlbar-tag{background:var(--fd-blue-l);color:var(--fd-blue);font-size:11.5px;font-weight:700;padding:3px 10px;border-radius:5px;flex-shrink:0}
.fd-urlbar-text{font-size:12px;color:var(--fd-muted);flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.fd-urlbar-change{font-size:12px;font-weight:700;color:var(--fd-blue);flex-shrink:0}
.fd-urlbar-change:hover{text-decoration:underline}

.fd-product-card{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);overflow:hidden;box-shadow:var(--fd-sh)}
.fd-product-top{display:grid;grid-template-columns:240px 1fr}
.fd-product-img{background:#fafafa;display:flex;align-items:center;justify-content:center;padding:24px;border-right:1px solid var(--fd-border)}
.fd-product-img img{max-height:200px;object-fit:contain}
.fd-product-img-ph{font-size:80px}
.fd-product-info{padding:22px 24px}
.fd-product-badges{display:flex;gap:8px;margin-bottom:11px;flex-wrap:wrap}
.fd-badge{font-size:10px;font-weight:700;padding:3px 9px;border-radius:5px;text-transform:uppercase;letter-spacing:.04em}
.fd-badge-low{background:var(--fd-red-l);color:var(--fd-red)}
.fd-badge-deal{background:var(--fd-green-l);color:var(--fd-green)}
.fd-badge-live{background:var(--fd-green-l);color:var(--fd-green)}
.fd-badge-est{background:#eef0f2;color:var(--fd-muted)}
.fd-product-title{font-size:19px;font-weight:700;line-height:1.3;margin-bottom:11px}
.fd-product-price{display:flex;align-items:baseline;gap:10px;margin-bottom:11px;flex-wrap:wrap}
.fd-price-now{font-size:30px;font-weight:900;color:var(--fd-dark);letter-spacing:-1px}
.fd-price-mrp{font-size:15px;color:var(--fd-muted);text-decoration:line-through}
.fd-price-off{background:var(--fd-green);color:#fff;font-size:13px;font-weight:800;padding:3px 10px;border-radius:6px}
.fd-product-rating{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--fd-muted);margin-bottom:14px}
.fd-stars{color:var(--fd-yellow);letter-spacing:.5px}
.fd-stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:9px;margin-bottom:14px}
.fd-stat{background:var(--fd-bg);border:1px solid var(--fd-border);border-radius:7px;padding:9px 11px}
.fd-stat-label{font-size:10px;color:var(--fd-muted);text-transform:uppercase;letter-spacing:.04em;margin-bottom:3px}
.fd-stat-value{font-size:15px;font-weight:800}
.fd-stat-value.low{color:var(--fd-green)}
.fd-stat-value.high{color:var(--fd-red)}
.fd-stat-value.avg{color:var(--fd-blue)}
.fd-savings{background:var(--fd-green-l);border:1px solid #b5dbb7;border-radius:7px;padding:9px 13px;font-size:13px;color:var(--fd-green);margin-bottom:14px}
.fd-savings strong{font-size:15px}
.fd-product-actions{display:flex;gap:10px;flex-wrap:wrap}

.fd-chart-zone{padding:20px 24px;border-top:1px solid var(--fd-border)}
.fd-chart-hd{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px;flex-wrap:wrap;gap:8px}
.fd-chart-title{font-size:15px;font-weight:700;display:flex;align-items:center;gap:9px}
.fd-chart-tag{font-size:10px;font-weight:700;padding:2px 8px;border-radius:4px}
.fd-range-btns{display:flex;gap:5px}
.fd-range-btn{font-size:12px;font-weight:600;padding:5px 12px;border-radius:6px;background:var(--fd-bg);color:var(--fd-muted);border:1px solid var(--fd-border)}
.fd-range-btn.active{background:var(--fd-blue);color:#fff;border-color:var(--fd-blue)}
.fd-chart-note{background:var(--fd-bg);border:1px solid var(--fd-border);border-radius:7px;padding:10px 13px;font-size:12.5px;color:var(--fd-muted);margin-top:13px;line-height:1.6}

/* tracker sidebar */
.fd-tracker-side{display:flex;flex-direction:column;gap:16px}
.fd-side-card{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);padding:18px;box-shadow:var(--fd-sh)}
.fd-side-hd{font-size:14px;font-weight:700;margin-bottom:10px}
.fd-side-card p{font-size:12.5px;color:var(--fd-muted);line-height:1.6;margin-bottom:12px}
.fd-side-alert{background:linear-gradient(135deg,#1c5fd0,#2874f0);border-color:transparent}
.fd-side-alert .fd-side-hd{color:#fff}
.fd-side-alert p{color:rgba(255,255,255,.85)}
.fd-side-alert input{width:100%;padding:9px 12px;border:none;border-radius:7px;font-size:13px;margin-bottom:8px;outline:none}
.fd-side-alert button{width:100%;background:var(--fd-yellow);color:#fff;font-size:13px;font-weight:700;padding:10px;border-radius:7px}
.fd-side-alert button:hover{filter:brightness(.95)}
.fd-side-info{background:var(--fd-blue-l);border-color:#c3d9fb}

/* ── PAGE / ARTICLE ── */
.fd-page-wrap{max-width:1180px;margin:0 auto;padding:30px 20px 50px}
.fd-two-col{display:grid;grid-template-columns:1fr 290px;gap:26px;align-items:start}
.fd-article{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);overflow:hidden;box-shadow:var(--fd-sh)}
.fd-article-hd{padding:24px 26px 0}
.fd-article-title{font-size:25px;font-weight:800;line-height:1.25;margin:9px 0 12px}
.fd-article-meta{display:flex;gap:7px;font-size:13px;color:var(--fd-muted);padding-bottom:18px;flex-wrap:wrap}
.fd-article-thumb img{width:100%;max-height:380px;object-fit:cover}
.fd-article-body{padding:22px 26px;font-size:15px;line-height:1.75}
.fd-article-body h2{font-size:20px;font-weight:700;margin:22px 0 10px}
.fd-article-body h3{font-size:17px;font-weight:700;margin:18px 0 8px}
.fd-article-body p{margin-bottom:15px}
.fd-article-body ul,.fd-article-body ol{margin:0 0 15px 22px}
.fd-article-body a{color:var(--fd-blue);text-decoration:underline}
.fd-article-body img{border-radius:var(--fd-r);margin:14px 0}
.fd-article-body blockquote{border-left:4px solid var(--fd-blue);background:var(--fd-blue-l);padding:12px 16px;border-radius:0 7px 7px 0;margin:15px 0;font-style:italic}
.fd-article-tags{padding:0 26px 22px;display:flex;gap:7px;flex-wrap:wrap}
.fd-tag{background:var(--fd-bg);border:1px solid var(--fd-border);color:var(--fd-muted);font-size:11.5px;font-weight:600;padding:3px 11px;border-radius:20px}
.fd-tag:hover{background:var(--fd-blue);color:#fff;border-color:var(--fd-blue)}

/* ── SIDEBAR ── */
.fd-sidebar{display:flex;flex-direction:column;gap:18px}
.widget{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);padding:18px;box-shadow:var(--fd-sh)}
.widget-hd{font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;margin-bottom:13px;padding-bottom:8px;border-bottom:2px solid var(--fd-blue-l)}
.fd-recent li{padding:7px 0;border-bottom:1px solid var(--fd-border)}
.fd-recent li:last-child{border-bottom:none}
.fd-recent li a{font-size:13px;font-weight:500}
.fd-recent li a:hover{color:var(--fd-blue)}

/* ── SEARCHFORM ── */
.fd-searchform{display:flex;background:var(--fd-bg);border:1.5px solid var(--fd-border);border-radius:var(--fd-r);overflow:hidden}
.fd-searchform:focus-within{border-color:var(--fd-blue)}
.fd-searchform input{flex:1;padding:9px 13px;border:none;background:transparent;font-size:13.5px;outline:none}
.fd-searchform button{background:var(--fd-blue);color:#fff;padding:0 14px;display:flex;align-items:center}

/* ── COMMENTS ── */
.fd-comments{background:var(--fd-white);border:1px solid var(--fd-border);border-radius:var(--fd-rl);padding:22px 26px;box-shadow:var(--fd-sh);margin-top:16px}
.fd-comments h3{font-size:16px;margin-bottom:14px}
.fd-comment-list{display:flex;flex-direction:column;gap:14px;margin-bottom:18px}
.fd-comment-list .comment-body{background:var(--fd-bg);border-radius:var(--fd-r);padding:13px 15px}
.comment-form label{display:block;font-size:11.5px;font-weight:700;text-transform:uppercase;margin-bottom:5px;color:var(--fd-muted)}
.comment-form input[type=text],.comment-form input[type=email],.comment-form input[type=url],.comment-form textarea{width:100%;padding:9px 12px;border:1.5px solid var(--fd-border);border-radius:7px;font-size:14px;outline:none;margin-bottom:12px;background:var(--fd-bg)}
.comment-form input:focus,.comment-form textarea:focus{border-color:var(--fd-blue)}
.comment-form textarea{min-height:100px;resize:vertical}
.form-submit input[type=submit],.submit{background:var(--fd-blue);color:#fff;font-size:13px;font-weight:700;padding:10px 22px;border-radius:7px}

/* ── PAGINATION ── */
.fd-pagination{margin-top:24px}
.fd-pagination ul{display:flex;gap:6px;flex-wrap:wrap}
.fd-pagination ul li a,.fd-pagination ul li span{display:flex;align-items:center;justify-content:center;min-width:36px;height:36px;padding:0 6px;border:1.5px solid var(--fd-border);border-radius:7px;background:var(--fd-white);font-size:13px;font-weight:600}
.fd-pagination ul li a:hover{border-color:var(--fd-blue);color:var(--fd-blue)}
.fd-pagination ul li .current{background:var(--fd-blue);color:#fff;border-color:var(--fd-blue)}

/* ── FOOTER ── */
.fd-footer{background:var(--fd-dark);color:rgba(255,255,255,.6)}
.fd-footer-top{max-width:1280px;margin:0 auto;padding:42px 20px 32px;display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;gap:32px}
.fd-footer-logo{font-size:19px;font-weight:800;color:#fff;margin-bottom:10px}
.fd-footer-brand p{font-size:13px;line-height:1.7}
.fd-footer-col h4{font-size:11px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px}
.fd-footer-col ul li{margin-bottom:7px}
.fd-footer-col ul li a{font-size:13px;color:rgba(255,255,255,.5)}
.fd-footer-col ul li a:hover{color:#fff}
.fd-footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:15px 20px;max-width:1280px;margin:0 auto;font-size:12px;text-align:center}

/* ── BACK TO TOP ── */
#fd-top{position:fixed;bottom:24px;right:24px;width:42px;height:42px;border-radius:50%;background:var(--fd-blue);color:#fff;font-size:19px;z-index:200;display:none;align-items:center;justify-content:center;box-shadow:var(--fd-sh2)}
#fd-top.show{display:flex}

/* ── MODAL ── */
.fd-modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:500;display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;pointer-events:none;transition:opacity .22s}
.fd-modal-overlay.open{opacity:1;pointer-events:all}
.fd-modal-box{background:#fff;border-radius:var(--fd-rl);max-width:480px;width:100%;max-height:90vh;overflow-y:auto;transform:scale(.96);transition:transform .22s;box-shadow:0 20px 60px rgba(0,0,0,.3)}
.fd-modal-overlay.open .fd-modal-box{transform:scale(1)}
.fd-modal-hd{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid var(--fd-border)}
.fd-modal-hd h3{font-size:15px;font-weight:700}
.fd-modal-x{width:30px;height:30px;border-radius:50%;background:var(--fd-bg);color:var(--fd-muted);font-size:16px;display:flex;align-items:center;justify-content:center}
.fd-modal-x:hover{background:var(--fd-red-l);color:var(--fd-red)}
.fd-modal-body{padding:20px}
.fd-modal-body label{display:block;font-size:11.5px;font-weight:700;text-transform:uppercase;color:var(--fd-muted);margin-bottom:5px}
.fd-modal-body input{width:100%;padding:10px 13px;border:1.5px solid var(--fd-border);border-radius:8px;font-size:14px;outline:none;margin-bottom:13px}
.fd-modal-body input:focus{border-color:var(--fd-blue)}
.fd-modal-submit{width:100%;background:var(--fd-blue);color:#fff;font-size:14px;font-weight:700;padding:12px;border-radius:8px}
.fd-modal-submit:hover{background:var(--fd-blue-d)}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
	.fd-product-grid{grid-template-columns:repeat(3,1fr)}
	.fd-blog-grid{grid-template-columns:repeat(2,1fr)}
	.fd-footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:880px){
	.fd-search-page,.fd-tracker-page,.fd-two-col{grid-template-columns:1fr}
	.fd-filters{position:static;display:none}
	.fd-filters.open{display:block}
	.fd-filter-toggle{display:block}
	.fd-product-top{grid-template-columns:1fr}
	.fd-product-img{border-right:none;border-bottom:1px solid var(--fd-border)}
	.fd-how-inner{grid-template-columns:1fr}
	.fd-nav,.fd-stats-row{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
	.fd-hero-title{font-size:31px}
	.fd-hero-search{flex-wrap:wrap;border-radius:var(--fd-rl)}
	.fd-hero-search button{width:100%;border-radius:8px}
	.fd-product-grid{grid-template-columns:repeat(2,1fr)}
	.fd-blog-grid{grid-template-columns:1fr}
	.fd-nav{display:none}
	.fd-nav.open{display:block;position:absolute;top:60px;left:0;right:0;background:var(--fd-blue);padding:12px 20px}
	.fd-nav.open ul{flex-direction:column;gap:3px}
	.fd-burger{display:flex}
	.fd-footer-top{grid-template-columns:1fr}
	.fd-stats-row{grid-template-columns:1fr 1fr}
}
