/* ═══════════════════════════════════════
   SANDALYEN.COM.TR - MAIN STYLESHEET
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #005850;
    --primary-light: #007a6f;
    --primary-dark: #003d38;
    --accent: #b8860b;
    --accent-light: #d4a843;
    --bg: #fafaf8;
    --bg-warm: #f5f0eb;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --white: #ffffff;
    --border: #e8e4df;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--bg); color:var(--text); line-height:1.6; overflow-x:hidden; }
h1,h2,h3,h4,h5 { font-family:'Playfair Display',serif; font-weight:500; }
a { text-decoration:none; color:inherit; transition:var(--transition); }
img { max-width:100%; display:block; }
.container { max-width:1320px; margin:0 auto; padding:0 40px; }

/* ═══ TOP BAR ═══ */
.top-bar { background:var(--primary-dark); color:rgba(255,255,255,0.8); font-size:0.75rem; letter-spacing:1px; padding:8px 0; }
.top-bar .container { display:flex; justify-content:space-between; align-items:center; }
.top-bar-left { display:flex; align-items:center; gap:20px; }
.top-bar-left span { display:flex; align-items:center; gap:6px; }
.top-bar-right { display:flex; align-items:center; gap:20px; }
.top-bar a { color:rgba(255,255,255,0.8); }
.top-bar a:hover { color:var(--accent-light); }
.top-bar-divider { width:1px; height:12px; background:rgba(255,255,255,0.25); }

/* ═══ HEADER ═══ */
.header { background:var(--white); position:sticky; top:0; z-index:1000; transition:var(--transition); border-bottom:1px solid transparent; }
.header.scrolled { border-bottom:1px solid var(--border); box-shadow:0 1px 12px rgba(0,0,0,0.05); }
.header .container { display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px; }
.logo { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.logo-icon { width:42px; height:42px; background:var(--primary); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.logo-text { font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:600; color:var(--primary); letter-spacing:1px; }
.logo-text span { color:var(--accent); font-size:0.85em; }
.nav-menu { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-menu a { font-size:0.82rem; font-weight:600; text-transform:uppercase; letter-spacing:1.5px; color:var(--text); position:relative; padding:4px 0; }
.nav-menu a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:2px; background:var(--primary); transition:var(--transition); }
.nav-menu a:hover::after, .nav-menu a.active::after { width:100%; }
.nav-menu a:hover { color:var(--primary); }
.header-icons { display:flex; align-items:center; gap:20px; }
.header-icon { display:flex; flex-direction:column; align-items:center; gap:2px; cursor:pointer; transition:var(--transition); position:relative; }
.header-icon:hover { color:var(--primary); }
.header-icon span { font-size:0.65rem; text-transform:uppercase; letter-spacing:1px; font-weight:500; }
.cart-badge { position:absolute; top:-6px; right:-8px; background:var(--accent); color:white; font-size:0.6rem; width:16px; height:16px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; }
.mobile-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.mobile-toggle span { width:24px; height:2px; background:var(--text); transition:var(--transition); }

/* ═══ SEARCH OVERLAY ═══ */
.search-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.85); backdrop-filter:blur(12px); z-index:9999; display:none; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s ease; }
.search-overlay.active { display:flex; opacity:1; }
.search-box { width:100%; max-width:600px; padding:0 40px; }
.search-box input { width:100%; padding:20px 0; background:transparent; border:none; border-bottom:2px solid rgba(255,255,255,0.3); color:white; font-family:'Playfair Display',serif; font-size:2rem; outline:none; }
.search-box input::placeholder { color:rgba(255,255,255,0.4); }
.search-box input:focus { border-bottom-color:var(--accent-light); }
.search-results { margin-top:20px; max-height:300px; overflow-y:auto; }
.search-result-item { display:flex; align-items:center; gap:16px; padding:12px; color:white; border-bottom:1px solid rgba(255,255,255,0.1); transition:var(--transition); }
.search-result-item:hover { background:rgba(255,255,255,0.05); }
.search-result-item img { width:50px; height:50px; object-fit:cover; border-radius:4px; }
.search-no-result { color:rgba(255,255,255,0.5); padding:20px 0; text-align:center; }
.search-close { position:absolute; top:40px; right:40px; background:none; border:none; color:rgba(255,255,255,0.6); font-size:2rem; cursor:pointer; }
.search-close:hover { color:white; }

/* ═══ HERO ═══ */
.hero { position:relative; min-height:500px; overflow:hidden; background:var(--primary-dark); }
.hero-bg { position:relative; width:100%; }
.hero-bg img { width:100%; height:auto; display:block; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(0,88,80,0.65) 0%, rgba(0,61,56,0.4) 50%, rgba(0,0,0,0.35) 100%); z-index:1; }
.hero-content { position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; color:white; }
.hero-label { font-size:0.8rem; letter-spacing:6px; text-transform:uppercase; margin-bottom:20px; color:var(--accent-light); font-weight:500; }
.hero-title { font-family:'Playfair Display',serif; font-size:clamp(2.5rem,5vw,4.5rem); font-weight:400; line-height:1.15; margin-bottom:20px; }
.hero-title em, .hero-title i { font-style:italic; color:var(--accent-light); }
.hero-subtitle { font-size:1.1rem; opacity:0.85; max-width:500px; font-weight:300; line-height:1.7; margin-bottom:36px; }
.hero-btn { display:inline-flex; align-items:center; gap:10px; padding:16px 40px; background:var(--accent); color:white; font-size:0.8rem; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; border:none; cursor:pointer; transition:var(--transition); }
.hero-btn:hover { background:var(--accent-light); transform:translateY(-2px); box-shadow:0 8px 30px rgba(184,134,11,0.3); }
.hero-scroll { position:absolute; bottom:30px; left:50%; transform:translateX(-50%); z-index:3; }
.scroll-indicator { display:flex; flex-direction:column; align-items:center; }
.scroll-line { width:1px; height:40px; background:linear-gradient(to bottom, rgba(255,255,255,0.6), transparent); animation:scrollPulse 2s ease-in-out infinite; }

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero { position:relative; padding:100px 0 80px; background:var(--primary-dark); color:white; text-align:center; overflow:hidden !important; min-height:280px; z-index:1; }
.page-hero__bg { position:absolute; top:0; left:0; right:0; bottom:0; background-size:cover; background-position:center; z-index:0; }
.page-hero__overlay { position:absolute; top:0; left:0; right:0; bottom:0; background:linear-gradient(135deg, rgba(0,88,80,0.75) 0%, rgba(0,61,56,0.6) 50%, rgba(0,0,0,0.5) 100%); z-index:1; }
.page-hero .breadcrumb, .page-hero nav.breadcrumb, section.page-hero .breadcrumb { border:none !important; border-bottom:none !important; padding:0; margin-top:12px; background:transparent; color:rgba(255,255,255,0.7); }
.page-hero .breadcrumb a { color:rgba(255,255,255,0.7); }
.page-hero .breadcrumb__separator { color:rgba(255,255,255,0.4); margin:0 8px; }
.page-hero .breadcrumb__list { list-style:none; display:flex; justify-content:center; gap:0; }
.page-hero__content { position:relative; z-index:2; }
.page-hero__title, .page-hero h1, .page-hero-title { font-family:'Playfair Display',serif; font-size:2.8rem; margin-bottom:10px; font-weight:500; }
.page-hero__subtitle, .page-hero p, .page-hero-subtitle { opacity:0.8; font-size:1.05rem; max-width:500px; margin:0 auto; }
.page-hero-content { position:relative; z-index:2; }
.page-hero-breadcrumb { margin-top:16px; font-size:0.82rem; opacity:0.7; }
.page-hero-breadcrumb a { color:rgba(255,255,255,0.8); }
.page-hero-breadcrumb a:hover { color:white; }

/* ═══ BREADCRUMB ═══ */
.breadcrumb { padding:16px 0; font-size:0.82rem; color:var(--text-muted); border-bottom:1px solid var(--border); }
.breadcrumb a { color:var(--text-light); }
.breadcrumb a:hover { color:var(--primary); }
.breadcrumb-sep { margin:0 8px; }
.breadcrumb-current { color:var(--text); font-weight:500; }

/* ═══ FEATURES BAR ═══ */
.features-bar { background:var(--white); border-bottom:1px solid var(--border); padding:28px 0; }
.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.feature-item { display:flex; align-items:center; gap:14px; padding:12px; }
.feature-icon { color:var(--primary); flex-shrink:0; }
.feature-text strong { display:block; font-size:0.85rem; font-weight:600; margin-bottom:2px; }
.feature-text span { font-size:0.75rem; color:var(--text-light); }

/* ═══ SECTIONS ═══ */
.section { padding:70px 0; }
.section-header { text-align:center; margin-bottom:50px; }
.section-label { display:block; font-size:0.75rem; letter-spacing:5px; text-transform:uppercase; color:var(--accent); margin-bottom:12px; font-weight:500; }
.section-title { font-size:2.2rem; margin-bottom:12px; }
.section-subtitle { color:var(--text-light); font-size:1rem; }
.section-cta { text-align:center; margin-top:40px; }

/* ═══ FILTER BAR ═══ */
.filter-bar { display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-bottom:1px solid var(--border); margin-bottom:30px; }
.filter-bar__count, .products-count { font-size:0.85rem; color:var(--text-light); }
.filter-bar__count strong, .products-count strong { color:var(--text); font-weight:600; }
.products-toolbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; padding-bottom:16px; border-bottom:1px solid var(--border); }
.products-sort { display:flex; align-items:center; gap:8px; font-size:0.85rem; }
.products-sort label { color:var(--text-light); }
.filter-bar select, .products-sort select, .filter-bar__select { padding:10px 36px 10px 16px; border:1px solid var(--border); background:var(--white); font-family:'DM Sans',sans-serif; font-size:0.82rem; color:var(--text); cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; }

/* ═══ PRODUCT GRID ═══ */
.product-grid, .products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.product-card { background:var(--white); border:1px solid var(--border); transition:var(--transition); position:relative; overflow:hidden; }
.product-card:hover { border-color:var(--primary); box-shadow:var(--shadow-hover); transform:translateY(-4px); }
.product-image { position:relative; display:block; padding-top:110%; overflow:hidden; background:var(--bg-warm); }
.product-image img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.product-card:hover .product-image img { transform:scale(1.06); }
.product-badge { position:absolute; top:14px; left:14px; background:var(--accent); color:white; font-size:0.68rem; font-weight:600; padding:5px 12px; letter-spacing:0.5px; z-index:2; }
.product-badge.new { background:var(--primary); }
.product-wishlist { position:absolute; top:14px; right:14px; width:36px; height:36px; background:rgba(255,255,255,0.9); border:none; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:var(--transition); z-index:2; opacity:0; transform:translateY(-8px); }
.product-card:hover .product-wishlist { opacity:1; transform:translateY(0); }
.product-wishlist:hover { background:var(--primary); color:white; }
.product-quick-view { position:absolute; bottom:0; left:0; right:0; background:rgba(0,88,80,0.92); color:white; text-align:center; padding:13px; font-size:0.75rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; transform:translateY(100%); transition:var(--transition); z-index:2; }
.product-card:hover .product-quick-view { transform:translateY(0); }
.product-info { padding:20px; }
.product-name { font-family:'Playfair Display',serif; font-size:1.05rem; font-weight:500; margin-bottom:4px; display:block; transition:var(--transition); }
.product-card:hover .product-name { color:var(--primary); }
.product-material { font-size:0.78rem; color:var(--text-muted); margin-bottom:10px; }
.product-price-row { display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.product-price { font-size:1.1rem; font-weight:700; color:var(--text); }
.product-old-price { font-size:0.85rem; color:var(--text-muted); text-decoration:line-through; }
.product-discount-info { font-size:0.72rem; color:var(--accent); font-weight:600; display:flex; align-items:center; gap:6px; }
.discount-final { color:var(--primary); font-weight:700; }

/* ═══ CTA BANNER ═══ */
.cta-banner { background:var(--primary-dark); color:white; padding:60px 0; text-align:center; }
.cta-content { max-width:600px; margin:0 auto; }
.cta-icon { margin-bottom:20px; opacity:0.6; }
.cta-title { font-size:2rem; margin-bottom:12px; }
.cta-text { opacity:0.75; margin-bottom:28px; font-size:1rem; }
.cta-btn { display:inline-flex; align-items:center; gap:10px; padding:14px 36px; background:var(--accent); color:white; font-size:0.8rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; border:none; cursor:pointer; transition:var(--transition); }
.cta-btn:hover { background:var(--accent-light); transform:translateY(-2px); }

/* ═══ ABOUT SECTION ═══ */
.about-preview, .about-section { padding:80px 0; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-label { font-size:0.75rem; letter-spacing:5px; text-transform:uppercase; color:var(--accent); margin-bottom:16px; display:block; }
.about-title { font-size:2.2rem; font-weight:400; line-height:1.2; margin-bottom:24px; }
.about-title em { font-style:italic; color:var(--accent); }
.about-text { font-size:0.95rem; line-height:1.9; color:var(--text-light); margin-bottom:24px; }
.about-stats { display:flex; gap:40px; margin-top:32px; }
.stat-item { text-align:center; }
.stat-number { font-family:'Playfair Display',serif; font-size:2.5rem; font-weight:500; color:var(--primary); line-height:1; }
.stat-label { font-size:0.72rem; letter-spacing:2px; text-transform:uppercase; color:var(--text-muted); margin-top:6px; }
.about-image { position:relative; overflow:hidden; border-radius:4px; }
.about-image img { width:100%; height:100%; object-fit:cover; min-height:350px; }
.about-link { display:inline-flex; align-items:center; gap:8px; color:var(--primary); font-weight:600; font-size:0.85rem; letter-spacing:1px; text-transform:uppercase; margin-top:16px; }
.about-link:hover { gap:12px; }

/* ═══ STATS BAR ═══ */
.stats-bar { background:var(--primary); color:white; padding:50px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stats-grid .stat-number { color:var(--accent-light); }
.stats-grid .stat-label { color:rgba(255,255,255,0.6); }

/* ═══ VALUES / SERVICES GRID ═══ */
.values-grid, .services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:40px; }
.value-card, .service-card { background:var(--white); border:1px solid var(--border); padding:40px 30px; text-align:center; transition:var(--transition); }
.value-card:hover, .service-card:hover { border-color:var(--primary); box-shadow:var(--shadow-hover); transform:translateY(-4px); }
.value-card .icon, .service-card .icon { color:var(--primary); margin-bottom:20px; }
.value-card h3, .service-card h3 { font-size:1.2rem; margin-bottom:12px; }
.value-card p, .service-card p { font-size:0.88rem; color:var(--text-light); line-height:1.7; }

/* ═══ TIMELINE ═══ */
.timeline { position:relative; padding:40px 0; }
.timeline::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:2px; background:var(--border); transform:translateX(-50%); }
.timeline-item { position:relative; width:50%; padding:20px 40px; }
.timeline-item:nth-child(odd) { left:0; text-align:right; }
.timeline-item:nth-child(even) { left:50%; }
.timeline-item::after { content:''; position:absolute; top:28px; width:16px; height:16px; background:var(--primary); border:3px solid var(--white); border-radius:50%; z-index:1; }
.timeline-item:nth-child(odd)::after { right:-8px; }
.timeline-item:nth-child(even)::after { left:-8px; }
.timeline-item h3 { font-size:1.1rem; margin-bottom:8px; color:var(--primary); }
.timeline-item p { font-size:0.88rem; color:var(--text-light); line-height:1.7; }
.timeline-step { display:inline-block; background:var(--accent); color:white; font-size:0.75rem; font-weight:700; padding:4px 12px; margin-bottom:10px; letter-spacing:1px; }

/* ═══ PRODUCT DETAIL ═══ */
.product-detail { display:grid; grid-template-columns:1fr 1fr; gap:50px; padding:50px 0; }
.product-detail__gallery {}
.product-detail__main-image { background:var(--bg-warm); margin-bottom:12px; overflow:hidden; }
.product-detail__main-image img { width:100%; height:auto; }
.product-detail__thumbs { display:flex; gap:10px; }
.product-detail__thumbs img { width:80px; height:80px; object-fit:cover; border:2px solid var(--border); cursor:pointer; transition:var(--transition); }
.product-detail__thumbs img:hover, .product-detail__thumbs img.active { border-color:var(--primary); }
.product-detail__info h1 { font-size:2rem; margin-bottom:8px; }
.product-detail__material { font-size:0.88rem; color:var(--text-muted); margin-bottom:20px; display:inline-block; background:var(--bg-warm); padding:4px 12px; border-radius:20px; }
.product-detail__price { margin-bottom:20px; }
.product-detail__price .old { font-size:1.1rem; color:var(--text-muted); text-decoration:line-through; margin-right:12px; }
.product-detail__price .current { font-size:1.8rem; font-weight:700; color:var(--primary); }
.product-detail__discount { background:var(--accent); color:white; display:inline-block; padding:6px 14px; font-size:0.78rem; font-weight:600; margin-bottom:24px; }
.product-detail__colors { margin-bottom:20px; }
.product-detail__colors label { display:block; font-size:0.82rem; font-weight:600; margin-bottom:10px; letter-spacing:1px; text-transform:uppercase; }
.color-options { display:flex; gap:8px; }
.color-btn { padding:8px 16px; border:1px solid var(--border); background:var(--white); font-family:'DM Sans',sans-serif; font-size:0.82rem; cursor:pointer; transition:var(--transition); }
.color-btn:hover, .color-btn.active { border-color:var(--primary); background:var(--primary); color:white; }
.quantity-input { display:flex; align-items:center; gap:0; margin-bottom:24px; }
.quantity-input button { width:40px; height:40px; border:1px solid var(--border); background:var(--white); font-size:1.1rem; cursor:pointer; transition:var(--transition); }
.quantity-input button:hover { background:var(--bg-warm); }
.quantity-input input { width:50px; height:40px; border:1px solid var(--border); border-left:none; border-right:none; text-align:center; font-family:'DM Sans',sans-serif; font-size:0.95rem; }
.btn-primary { display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:16px 36px; background:var(--accent); color:white; font-family:'DM Sans',sans-serif; font-size:0.85rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; border:none; cursor:pointer; transition:var(--transition); width:100%; }
.btn-primary:hover { background:var(--accent-light); transform:translateY(-1px); }
.btn-outline { display:inline-flex; align-items:center; gap:10px; padding:14px 32px; border:2px solid var(--primary); color:var(--primary); font-size:0.82rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; transition:var(--transition); }
.btn-outline:hover { background:var(--primary); color:white; }
.btn--whatsapp { display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:14px 36px; background:#25d366; color:white; font-family:'DM Sans',sans-serif; font-size:0.85rem; font-weight:600; letter-spacing:1px; border:none; cursor:pointer; width:100%; margin-top:10px; transition:var(--transition); }
.btn--whatsapp:hover { background:#1da851; }

/* Product tabs */
.product-tabs { margin-top:50px; border-top:1px solid var(--border); }
.product-tabs__nav { display:flex; gap:0; border-bottom:1px solid var(--border); }
.product-tabs__nav button { padding:16px 28px; background:none; border:none; border-bottom:2px solid transparent; font-family:'DM Sans',sans-serif; font-size:0.85rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--text-light); cursor:pointer; transition:var(--transition); }
.product-tabs__nav button:hover { color:var(--text); }
.product-tabs__nav button.active { color:var(--primary); border-bottom-color:var(--primary); }
.product-tabs__panel { padding:30px 0; display:none; font-size:0.92rem; line-height:1.8; color:var(--text-light); }
.product-tabs__panel.active { display:block; }

/* ═══ CONTACT ═══ */
.contact-info-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:50px; }
.contact-info-card { background:var(--white); border:1px solid var(--border); padding:30px; text-align:center; transition:var(--transition); }
.contact-info-card:hover { border-color:var(--primary); box-shadow:var(--shadow); }
.contact-info-card .icon { color:var(--primary); margin-bottom:14px; }
.contact-info-card h3 { font-size:1rem; margin-bottom:8px; }
.contact-info-card p { font-size:0.88rem; color:var(--text-light); }
.contact-section__grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.contact-form label { display:block; font-size:0.82rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; margin-bottom:6px; color:var(--text-light); }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; padding:12px 16px; border:1px solid var(--border); background:var(--white); font-family:'DM Sans',sans-serif; font-size:0.9rem; margin-bottom:18px; transition:var(--transition); outline:none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color:var(--primary); }
.contact-form textarea { height:140px; resize:vertical; }
.contact-map iframe { width:100%; height:100%; min-height:400px; border:1px solid var(--border); }
.working-hours { text-align:center; padding:40px 0; margin-top:40px; border-top:1px solid var(--border); }

/* ═══ CART PAGE ═══ */
.cart-empty { text-align:center; padding:80px 0; }
.cart-empty h2 { margin-bottom:16px; }
.cart-empty p { color:var(--text-light); margin-bottom:24px; }
.cart-layout { display:grid; grid-template-columns:1fr 360px; gap:40px; padding:40px 0; }
.cart-table { width:100%; border-collapse:collapse; }
.cart-table th { text-align:left; padding:12px 0; font-size:0.75rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); border-bottom:2px solid var(--border); }
.cart-table td { padding:20px 0; border-bottom:1px solid var(--border); vertical-align:middle; }
.cart-item-info { display:flex; align-items:center; gap:16px; }
.cart-item-info img { width:70px; height:70px; object-fit:cover; }
.cart-item-name { font-weight:600; font-size:0.9rem; }
.cart-item-color { font-size:0.78rem; color:var(--text-muted); }
.cart-item-remove { background:none; border:none; color:var(--text-muted); cursor:pointer; font-size:1.1rem; }
.cart-item-remove:hover { color:#dc3545; }
.cart-totals { background:var(--bg-warm); padding:30px; position:sticky; top:120px; }
.cart-totals h3 { font-size:1.2rem; margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid var(--border); }
.cart-totals-row { display:flex; justify-content:space-between; padding:10px 0; font-size:0.9rem; }
.cart-totals-row.total { font-weight:700; font-size:1.1rem; padding-top:16px; margin-top:8px; border-top:2px solid var(--border); }
.cart-totals .btn-primary { margin-top:20px; }
.cart-totals .continue-link { display:block; text-align:center; margin-top:14px; font-size:0.82rem; color:var(--text-light); }
.cart-totals .continue-link:hover { color:var(--primary); }

/* ═══ CART NOTIFICATION ═══ */
.cart-notification { position:fixed; bottom:30px; right:100px; background:var(--primary); color:white; padding:14px 24px; font-size:0.85rem; display:flex; align-items:center; gap:10px; z-index:9998; transform:translateY(100px); opacity:0; transition:all 0.4s ease; border-radius:4px; box-shadow:0 4px 20px rgba(0,88,80,0.3); }
.cart-notification.show { transform:translateY(0); opacity:1; }

/* ═══ FOOTER ═══ */
.footer { background:#0d0d0d; color:rgba(255,255,255,0.7); padding:70px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:50px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size:0.85rem; line-height:1.8; opacity:0.6; margin-bottom:24px; }
.footer-social { display:flex; gap:12px; }
.footer-social a { width:40px; height:40px; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.footer-social a:hover { border-color:var(--accent); background:var(--accent); }
.footer h4 { font-family:'DM Sans',sans-serif; font-size:0.75rem; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; color:white; margin-bottom:24px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:14px; }
.footer-links a { font-size:0.85rem; opacity:0.6; }
.footer-links a:hover { opacity:1; color:var(--accent-light); padding-left:6px; }
.footer-contact-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:16px; font-size:0.85rem; }
.footer-bottom { padding:24px 0; display:flex; justify-content:space-between; align-items:center; font-size:0.78rem; opacity:0.4; }
.footer-bottom-links { display:flex; gap:24px; }

/* ═══ WHATSAPP ═══ */
.whatsapp-btn { position:fixed; bottom:28px; right:28px; z-index:999; width:60px; height:60px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,0.4); transition:var(--transition); cursor:pointer; animation:whatsappPulse 3s ease-in-out infinite; }
.whatsapp-btn:hover { transform:scale(1.1); }

/* ═══ BACK TO TOP ═══ */
.back-to-top { position:fixed; bottom:28px; right:100px; z-index:998; width:44px; height:44px; background:var(--primary); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; opacity:0; visibility:hidden; transition:var(--transition); }
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background:var(--primary-dark); transform:translateY(-3px); }

/* ═══ GENERIC CONTENT ═══ */
.content-section { padding:60px 0; }
.content-section h2 { font-size:1.8rem; margin-bottom:16px; }
.content-section h3 { font-size:1.3rem; margin-bottom:12px; margin-top:30px; }
.content-section p { font-size:0.92rem; line-height:1.8; color:var(--text-light); margin-bottom:16px; }
.content-section ul, .content-section ol { margin-left:20px; margin-bottom:16px; }
.content-section li { font-size:0.9rem; line-height:1.8; color:var(--text-light); margin-bottom:6px; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:40px; }

/* Career cards */
.career-card { background:var(--white); border:1px solid var(--border); padding:30px; margin-bottom:20px; transition:var(--transition); }
.career-card:hover { border-color:var(--primary); box-shadow:var(--shadow); }
.career-card h3 { margin-bottom:4px; }
.career-card .type { font-size:0.78rem; color:var(--accent); font-weight:600; margin-bottom:12px; display:block; }
.career-card p { font-size:0.88rem; color:var(--text-light); margin-bottom:16px; }

/* Shipping cards */
.shipping-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

/* ═══ ANIMATIONS ═══ */
.fadeUp { opacity:0; transform:translateY(24px); animation:fadeUp 0.8s ease forwards; }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity:0.3; } 50% { opacity:1; } }
@keyframes whatsappPulse { 0%,100% { box-shadow:0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow:0 4px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); } }
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .reveal.revealed { opacity:1; transform:translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1024px) {
    .container { padding:0 24px; }
    .product-grid, .products-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
    .about-grid { grid-template-columns:1fr; gap:40px; }
    .footer-grid { grid-template-columns:repeat(2,1fr); gap:40px; }
    .features-grid { grid-template-columns:repeat(2,1fr); }
    .product-detail { grid-template-columns:1fr; }
    .contact-section__grid { grid-template-columns:1fr; }
    .cart-layout { grid-template-columns:1fr; }
    .stats-grid { grid-template-columns:repeat(2,1fr); }
    .values-grid, .services-grid { grid-template-columns:1fr; }
    .timeline::before { left:20px; }
    .timeline-item { width:100%; left:0 !important; text-align:left !important; padding-left:50px; padding-right:0; }
    .timeline-item::after { left:12px !important; right:auto !important; }
}
@media (max-width:768px) {
    .top-bar-left { display:none; }
    .top-bar .container { justify-content:center; }
    .header .container { padding-top:10px; padding-bottom:10px; }
    .nav-menu { display:none; position:absolute; top:100%; left:0; right:0; background:var(--white); flex-direction:column; padding:20px; gap:16px; border-bottom:1px solid var(--border); box-shadow:0 8px 30px rgba(0,0,0,0.1); z-index:1100; }
    .nav-menu.open { display:flex; }
    .mobile-toggle { display:flex; }
    .hero { height:55vh; min-height:400px; }
    .hero-title { font-size:2rem; }
    .product-grid, .products-grid { grid-template-columns:1fr; }
    .features-grid { grid-template-columns:1fr; }
    .contact-info-cards { grid-template-columns:1fr; }
    .shipping-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; gap:32px; }
    .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
    .about-stats { flex-wrap:wrap; gap:20px; }
    .page-hero h1 { font-size:1.8rem; }
    .whatsapp-btn { bottom:20px; right:20px; width:52px; height:52px; }
    .back-to-top { right:80px; bottom:20px; }
    .cart-notification { right:20px; bottom:80px; }
    .two-col { grid-template-columns:1fr; }
}
@media (max-width:480px) {
    .header-icon span { display:none; }
    .logo-text { font-size:1.2rem; }
    .hero-btn { padding:14px 28px; font-size:0.75rem; }
}
