/*
Theme Name: Optiview
Theme URI: https://myoptiview.com
Author: Deshpande's Optiview
Description: Custom theme for Deshpande's Optiview - Nashik's trusted optical chain since 1993
Version: 1.0
*/

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

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --blue: #1a7abf;
  --blue-dark: #155f96;
  --blue-light: #e6f3fb;
  --blue-mid: #cce5f6;
  --navy: #0f2d44;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f4f6f8;
  --gray-100: #e8ecf0;
  --gray-200: #d0d7de;
  --gray-400: #8a9bb0;
  --gray-600: #4a5568;
  --gray-800: #1e2a35;
  --text: #1e2a35;
  --text-light: #5a6a7a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(26,122,191,0.08);
  --shadow: 0 4px 16px rgba(26,122,191,0.12);
  --shadow-lg: 0 12px 40px rgba(26,122,191,0.16);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
  --border: 0.5px solid var(--gray-200);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
============================================ */
.serif { font-family: var(--serif); }
h1, h2, h3, h4 { line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-family: var(--serif); font-weight: 400; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-family: var(--serif); font-weight: 400; }
h3 { font-size: 1.15rem; font-weight: 500; }
p { color: var(--text-light); line-height: 1.8; }
.eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.text-blue { color: var(--blue); }
.text-italic { font-style: italic; }

/* ============================================
   LAYOUT
============================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ============================================
   BUTTONS
============================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-size: 14px; font-weight: 500; transition: var(--transition); font-family: var(--sans); cursor: pointer; }
.btn-primary { background: var(--blue); color: var(--white); border: 1.5px solid var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--blue); border: 1.5px solid var(--white); }
.btn-white:hover { background: var(--blue-light); border-color: var(--blue-light); }
.btn-ghost { background: transparent; color: var(--text-light); padding: 12px 0; font-size: 14px; }
.btn-ghost:hover { color: var(--blue); }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ============================================
   NAVIGATION
============================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 90px; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 70px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 14px; color: var(--text-light); font-weight: 400; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--blue); transition: width var(--transition); }
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--blue); color: var(--white); padding: 9px 20px; border-radius: 50px; font-size: 13px; font-weight: 500; transition: var(--transition); }
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: var(--transition); }

/* ============================================
   HERO
============================================ */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; max-height: 800px; border-bottom: var(--border); overflow: hidden; }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 5rem 3rem 5rem 2rem; max-width: 600px; margin-left: auto; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: italic; color: var(--blue); }
.hero-subtitle { font-size: 16px; color: var(--text-light); line-height: 1.8; max-width: 420px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-visual { background: var(--blue-light); display: flex; align-items: center; justify-content: center; padding: 3rem; position: relative; overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: var(--blue-mid); border-radius: 50%; opacity: 0.4; }
.hero-cards { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 360px; position: relative; z-index: 1; }
.hero-card { background: var(--white); border: var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.hero-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.hero-card-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-card-title { font-size: 13px; font-weight: 600; color: var(--text); }
.hero-card-sub { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ============================================
   TRUST STRIP
============================================ */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: var(--border); }
.trust-item { padding: 2rem 1.5rem; text-align: center; border-right: var(--border); transition: background var(--transition); }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--blue-light); }
.trust-num { font-size: 2.2rem; font-weight: 500; color: var(--blue); font-family: var(--serif); line-height: 1; }
.trust-label { font-size: 11px; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* ============================================
   COLLECTIONS
============================================ */
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.coll-card { border: var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); cursor: pointer; }
.coll-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.coll-img { height: 140px; display: flex; align-items: center; justify-content: center; }
.coll-img.men { background: linear-gradient(135deg, #dceefb, #c5e0f5); }
.coll-img.women { background: linear-gradient(135deg, #fbe9f0, #f5cfe0); }
.coll-img.kids { background: linear-gradient(135deg, #e8f7e4, #cceec7); }
.coll-img.premium { background: linear-gradient(135deg, #fdf4e3, #f5e4bb); }
.coll-img.sunglasses { background: linear-gradient(135deg, #e8e4f7, #d0c8f0); }
.coll-img.sports { background: linear-gradient(135deg, #e4f7f7, #c0eaee); }
.coll-img svg { width: 48px; height: 48px; }
.coll-body { padding: 1rem 1.25rem; border-top: var(--border); }
.coll-name { font-size: 14px; font-weight: 600; color: var(--text); }
.coll-desc { font-size: 12px; color: var(--text-light); margin-top: 3px; }
.coll-link { font-size: 12px; color: var(--blue); margin-top: 8px; display: flex; align-items: center; gap: 4px; font-weight: 500; }

/* ============================================
   ABOUT STRIP
============================================ */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; border-top: var(--border); border-bottom: var(--border); }
.about-left { padding: 5rem 3rem 5rem 2rem; }
.about-right { padding: 5rem 2rem 5rem 3rem; background: var(--gray-50); border-left: var(--border); }
.about-quote { font-size: 1.5rem; font-family: var(--serif); font-style: italic; line-height: 1.5; color: var(--text); margin-bottom: 1.5rem; position: relative; padding-left: 1.5rem; }
.about-quote::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); border-radius: 2px; }
.about-body { font-size: 15px; color: var(--text-light); line-height: 1.9; margin-bottom: 1.5rem; font-weight: 300; }
.value-list { display: flex; flex-direction: column; gap: 1.5rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.value-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-title { font-size: 14px; font-weight: 600; color: var(--text); }
.value-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-top: 3px; }

/* ============================================
   BLOG
============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card { border: var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-img.tip1 { background: linear-gradient(135deg, #dceefb, #c5e0f5); }
.blog-img.tip2 { background: linear-gradient(135deg, #fdf4e3, #f5e4bb); }
.blog-img.tip3 { background: linear-gradient(135deg, #fbe9f0, #f5cfe0); }
.blog-img.tip4 { background: linear-gradient(135deg, #e8f7e4, #cceec7); }
.blog-img.tip5 { background: linear-gradient(135deg, #e8e4f7, #d0c8f0); }
.blog-body { padding: 1.25rem; }
.blog-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.blog-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.45; }
.blog-read { font-size: 12px; color: var(--text-light); margin-top: 10px; display: flex; align-items: center; gap: 4px; }
.blog-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog listing page */
.blog-grid--full { grid-template-columns: repeat(3, 1fr); }
.blog-card--full .blog-img { height: 160px; }
.blog-empty { text-align: center; padding: 4rem 2rem; color: var(--text-light); }
.blog-empty svg { margin: 0 auto 1rem; stroke: var(--gray-200); display: block; }
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 3rem; flex-wrap: wrap; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 14px; border: var(--border); color: var(--text-light); transition: var(--transition); text-decoration: none; }
.blog-pagination .page-numbers:hover, .blog-pagination .current { background: var(--blue); color: var(--white); border-color: var(--blue); }
.blog-pagination .prev, .blog-pagination .next { width: auto; padding: 0 1.25rem; border-radius: 50px; }

/* Single post */
.post-hero { padding: 4.5rem 2rem 3.5rem; }
.post-meta-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.post-read-time { font-size: 12px; color: var(--text-light); }
.post-date { font-size: 13px; color: var(--text-light); margin-top: 0.75rem; }
.post-container { max-width: 760px; }
.post-body { font-size: 16px; line-height: 1.95; color: var(--text-light); }
.post-body h1, .post-body h2, .post-body h3 { color: var(--text); font-family: var(--serif); font-weight: 400; margin: 2.5rem 0 1rem; line-height: 1.3; }
.post-body h2 { font-size: 1.5rem; }
.post-body h3 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; }
.post-body p { margin-bottom: 1.25rem; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body ul li, .post-body ol li { margin-bottom: 0.5rem; line-height: 1.8; }
.post-body hr { border: none; border-top: var(--border); margin: 2.5rem 0; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 14px; }
.post-body th { background: var(--gray-50); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--text); border-bottom: 2px solid var(--gray-200); }
.post-body td { padding: 10px 14px; border-bottom: var(--border); color: var(--text-light); }
.post-body em { font-style: italic; }
.post-body blockquote { border-left: 3px solid var(--blue); padding-left: 1.25rem; margin: 1.5rem 0; font-style: italic; color: var(--text); }
.post-back { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: var(--border); flex-wrap: wrap; }

/* ============================================
   CTA BANNER
============================================ */
.cta-banner { background: var(--blue); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60%; left: -10%; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-banner::after { content: ''; position: absolute; bottom: -40%; right: -5%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-banner-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 16px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   BRANCHES / FIND US
============================================ */
.branches-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.branch-card { border: var(--border); border-radius: var(--radius); padding: 1.75rem; transition: var(--transition); }
.branch-card:hover { box-shadow: var(--shadow); border-color: var(--blue-mid); }
.branch-num { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.branch-name { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 1rem; font-family: var(--serif); }
.branch-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.branch-detail svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.branch-detail span { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.branch-actions { display: flex; gap: 10px; margin-top: 1.25rem; flex-wrap: wrap; }
.branch-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 500; transition: var(--transition); border: 1.5px solid var(--blue); color: var(--blue); }
.branch-btn:hover { background: var(--blue); color: var(--white); }
.branch-btn.whatsapp { border-color: #25D366; color: #25D366; }
.branch-btn.whatsapp:hover { background: #25D366; color: var(--white); }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: var(--navy); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 2rem 3rem; max-width: var(--max-width); margin: 0 auto; }
.footer-brand-name { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.footer-brand-marathi { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.footer-brand-tagline { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; font-style: italic; font-family: var(--serif); margin-bottom: 1.25rem; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.1); padding: 1.5rem 2rem; max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic; font-family: var(--serif); }

/* ============================================
   WHATSAPP FLOAT
============================================ */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; display: flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); padding: 12px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); text-decoration: none; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: var(--white); }
.wa-float svg { width: 22px; height: 22px; fill: var(--white); }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero { background: var(--blue-light); padding: 4rem 2rem; border-bottom: var(--border); }
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 16px; max-width: 500px; }

/* ============================================
   TEAM
============================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { text-align: center; border: var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow); }
.team-photo { height: 200px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 80px; height: 80px; border-radius: 50%; background: var(--blue-mid); display: flex; align-items: center; justify-content: center; }
.team-photo-placeholder svg { width: 40px; height: 40px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.team-info { padding: 1.25rem; }
.team-name { font-size: 15px; font-weight: 600; color: var(--text); }
.team-role { font-size: 12px; color: var(--blue); font-weight: 500; margin-top: 4px; letter-spacing: 0.5px; }
.team-bio { font-size: 13px; color: var(--text-light); margin-top: 8px; line-height: 1.6; }

/* ============================================
   CONTACT
============================================ */
.contact-form { max-width: 560px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--sans); color: var(--text); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { height: 130px; resize: vertical; }

/* ============================================
   COLLECTIONS PAGE
============================================ */

/* ── Hero variant ── */
.page-hero--collections { padding: 5rem 2rem; }
.page-hero--collections h1 em { font-style: italic; color: var(--blue); }
.page-hero--collections p { font-size: 17px; max-width: 560px; line-height: 1.9; }

/* ── Category nav ── */
.collections-nav { background: var(--white); border-bottom: var(--border); position: sticky; top: 90px; z-index: 90; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.collections-nav::-webkit-scrollbar { display: none; }
.collections-nav-inner { display: flex; align-items: center; gap: 0; max-width: var(--max-width); margin: 0 auto; }
.coll-nav-item { display: flex; align-items: center; gap: 7px; padding: 1rem 1.25rem; font-size: 13px; font-weight: 500; color: var(--text-light); white-space: nowrap; border-bottom: 2px solid transparent; transition: var(--transition); text-decoration: none; }
.coll-nav-item svg { opacity: 0.6; transition: opacity var(--transition); }
.coll-nav-item:hover { color: var(--blue); border-bottom-color: var(--blue); }
.coll-nav-item:hover svg { opacity: 1; }

/* ── Section alternation ── */
.coll-section--alt { background: var(--off-white); }

/* ── Section header ── */
.coll-section-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.coll-section-header h2 em { font-style: italic; color: var(--blue); }
.coll-section-intro { font-size: 15px; color: var(--text-light); max-width: 560px; line-height: 1.85; margin-top: 0.75rem; font-weight: 300; }
.coll-section-meta { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; padding-top: 2.5rem; }
.coll-meta-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: var(--blue); background: var(--blue-light); padding: 6px 12px; border-radius: 50px; white-space: nowrap; }
.coll-meta-pill--expert { background: var(--navy); color: var(--white); }
.coll-meta-pill--expert svg { stroke: rgba(255,255,255,0.7); }

/* ── Brand grid ── */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.brand-grid--wide { grid-template-columns: repeat(3, 1fr); }
.brand-grid--lenses { grid-template-columns: repeat(3, 1fr); }
.brand-grid--contacts { grid-template-columns: repeat(2, 1fr); max-width: 640px; }

/* ── Brand card ── */
.brand-card { border: var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: var(--transition); display: flex; flex-direction: column; }
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-mid); }

.brand-card-logo { height: 120px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; position: relative; }
.brand-card-logo img { max-height: 52px; max-width: 80%; object-fit: contain; }
.brand-text-logo { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--text); letter-spacing: 0.5px; text-align: center; }

/* tier backgrounds for logo area */
.brand-card--luxury   .brand-card-logo { background: linear-gradient(135deg, #fdf4e3 0%, #f5e4bb 100%); }
.brand-card--premium  .brand-card-logo { background: var(--blue-light); }
.brand-card--fashion  .brand-card-logo { background: var(--gray-50); }
.brand-card--sport    .brand-card-logo { background: linear-gradient(135deg, #e4f7f0 0%, #c5ece0 100%); }
.brand-card--kids     .brand-card-logo { background: linear-gradient(135deg, #e8f7e4 0%, #cceec7 100%); }
.brand-card--value    .brand-card-logo { background: var(--gray-50); }
.brand-card--specialist .brand-card-logo { background: var(--white); border-bottom: var(--border); }
.brand-card--specialist .brand-card-logo img { max-height: 64px; }
.brand-card--specialist .brand-text-logo { color: var(--navy); }

.brand-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 6px; flex: 1; }

.expert-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; letter-spacing: 0.5px; color: var(--blue); background: var(--blue-light); padding: 4px 9px; border-radius: 50px; width: fit-content; }
.expert-badge svg { stroke: var(--blue); }

.brand-name { font-size: 15px; font-weight: 600; color: var(--text); }
.brand-tagline { font-size: 12px; color: var(--text-light); font-style: italic; font-family: var(--serif); }
.brand-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-top: 2px; }
.brand-usps { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; padding-top: 10px; }
.usp-chip { font-size: 11px; font-weight: 500; color: var(--gray-600); background: var(--gray-50); border: var(--border); padding: 3px 9px; border-radius: 50px; }

/* ── Powered goggles callout ── */
.powered-callout { background: var(--blue-light); border: 1.5px solid var(--blue-mid); border-radius: var(--radius-lg); padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.powered-callout-icon { width: 52px; height: 52px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.powered-callout-icon svg { stroke: var(--white); }
.powered-callout-text { flex: 1; min-width: 240px; }
.powered-callout-text strong { font-size: 15px; color: var(--text); display: block; margin-bottom: 4px; }
.powered-callout-text p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.7; }
.powered-callout .btn { flex-shrink: 0; }

/* ── Lens types grid ── */
.lens-types-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 3rem; padding-top: 2.5rem; border-top: var(--border); }
.lens-type-card { text-align: center; padding: 1.25rem 0.75rem; border: var(--border); border-radius: var(--radius); background: var(--white); transition: var(--transition); }
.lens-type-card:hover { background: var(--blue-light); border-color: var(--blue-mid); }
.lens-type-icon { width: 44px; height: 44px; margin: 0 auto 0.75rem; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lens-type-icon svg { stroke: var(--blue); }
.lens-type-name { font-size: 13px; font-weight: 600; color: var(--text); }
.lens-type-desc { font-size: 11px; color: var(--text-light); margin-top: 4px; line-height: 1.5; }

/* ── Solutions strip ── */
.solutions-strip { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; padding: 1.25rem 1.5rem; background: var(--white); border: var(--border); border-radius: var(--radius); }
.solutions-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text); }
.solutions-label svg { stroke: var(--blue); flex-shrink: 0; }
.solution-tag { font-size: 12px; font-weight: 500; color: var(--blue); background: var(--blue-light); border: 1px solid var(--blue-mid); padding: 4px 12px; border-radius: 50px; }

/* ── Contact lens CTA row ── */
.cl-cta-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2rem; padding: 2rem; background: var(--navy); border-radius: var(--radius-lg); flex-wrap: wrap; }
.cl-cta-text strong { font-size: 16px; color: var(--white); display: block; margin-bottom: 6px; }
.cl-cta-text p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }
.cl-cta-row .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); flex-shrink: 0; }
.cl-cta-row .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── Sports section ── */
.sports-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.sport-feature-card { border: var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); display: flex; flex-direction: column; transition: var(--transition); }
.sport-feature-card:hover { box-shadow: var(--shadow); }
.sport-feature-visual { height: 180px; display: flex; align-items: center; justify-content: center; }
.sport-feature-visual--swim    { background: linear-gradient(135deg, #dceefb 0%, #b8d9f2 100%); }
.sport-feature-visual--goggles { background: linear-gradient(135deg, #e4f7f0 0%, #b8e8d8 100%); }
.sport-feature-visual svg { stroke: var(--navy); opacity: 0.6; }
.sport-feature-body { padding: 1.75rem; }
.sport-feature-body h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.sport-feature-body p { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 1.25rem; }
.sport-feature-list { display: flex; flex-direction: column; gap: 8px; }
.sport-feature-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.sport-feature-list li svg { stroke: var(--blue); flex-shrink: 0; }
.sports-cta { margin-top: 2.5rem; text-align: center; }
.sports-cta p { font-size: 15px; color: var(--text-light); margin-bottom: 1.25rem; }

/* ── Reading section ── */
.reading-section-inner { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; }
.reading-visual { flex-shrink: 0; }
.reading-icon-wrap { width: 140px; height: 140px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.reading-icon-wrap svg { stroke: var(--blue); }
.reading-content h2 em { font-style: italic; color: var(--blue); }
.reading-content p { font-size: 15px; color: var(--text-light); line-height: 1.9; margin-top: 0.75rem; font-weight: 300; }
.reading-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.5rem; }
.reading-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.reading-feature svg { stroke: var(--blue); flex-shrink: 0; }

/* ── Brand partners strip ── */
.brand-partners-section { background: var(--off-white); border-top: var(--border); }
.brand-partners-header { text-align: center; margin-bottom: 2.5rem; }
.brand-partners-header p { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.partner-logo-strip { display: flex; flex-wrap: wrap; gap: 0; border: var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.partner-logo-item { width: calc(100% / 8); border-right: var(--border); border-bottom: var(--border); padding: 1.25rem 1rem; display: flex; align-items: center; justify-content: center; min-height: 72px; transition: var(--transition); }
.partner-logo-item:hover { background: var(--blue-light); }
.partner-logo-item img { max-height: 32px; max-width: 80%; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: filter var(--transition); }
.partner-logo-item:hover img { filter: none; }
.partner-text-logo { font-family: var(--serif); font-size: 11px; font-weight: 500; color: var(--text-light); text-align: center; letter-spacing: 0.5px; transition: color var(--transition); }
.partner-logo-item:hover .partner-text-logo { color: var(--blue); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-grid--wide, .brand-grid--lenses { grid-template-columns: repeat(2, 1fr); }
  .lens-types-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logo-item { width: calc(100% / 6); }
}

@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; max-height: none; }
  .hero-content { padding: 3rem 1.5rem; max-width: 100%; margin: 0; }
  .hero-visual { padding: 2rem 1.5rem; min-height: 320px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: var(--border); }
  .trust-item:nth-child(4) { border-top: var(--border); border-right: none; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; }
  .about-right { border-left: none; border-top: var(--border); }
  .about-left, .about-right { padding: 3rem 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 1.25rem 1.5rem; }
  .section, .about-left, .about-right { padding: 3rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .hero-cards { max-width: 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  /* Collections responsive */
  .collections-nav { top: 0; }
  .coll-nav-item { padding: 0.875rem 1rem; font-size: 12px; }
  .coll-section-header { flex-direction: column; gap: 1rem; }
  .coll-section-meta { flex-direction: row; flex-wrap: wrap; padding-top: 0; }
  .brand-grid, .brand-grid--wide, .brand-grid--lenses { grid-template-columns: repeat(2, 1fr); }
  .brand-grid--contacts { grid-template-columns: 1fr; max-width: 100%; }
  .powered-callout { flex-direction: column; text-align: center; }
  .powered-callout-icon { margin: 0 auto; }
  .lens-types-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: 1fr; }
  .reading-section-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .reading-features { grid-template-columns: 1fr; }
  .reading-icon-wrap { margin: 0 auto; }
  .partner-logo-item { width: calc(100% / 4); }
  .cl-cta-row { flex-direction: column; text-align: center; }
  .page-hero--collections { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  /* Collections 480px */
  .brand-grid, .brand-grid--wide, .brand-grid--lenses { grid-template-columns: 1fr; }
  .lens-types-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logo-item { width: calc(100% / 3); }
  .coll-meta-pill { font-size: 11px; }
}
