/*
Theme Name: Western Brands
Theme URI: https://westernbrands.example
Author: Western Brands
Description: A calm, editorial one-page menswear boutique theme for Western Brands — Century Mall, Gurd Shola, Addis Ababa. Built for WordPress with an Elementor-friendly, widget-ready footer.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: western-brands
*/

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,500&family=Poppins:wght@400;500;600;700&display=swap');


  @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,500&family=Poppins:wght@400;500;600;700&display=swap');

  :root {
    --stone:#EBE6DC; --stone-deep:#DED7C7; --ink:#221E1A; --ink-soft:#4A443C;
    --forest:#33473F; --forest-deep:#243731; --wine:#7A3B44; --brass:#A6824C;
    --cream:#F5F0E5; --line:rgba(34,30,26,0.12);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }
  body { font-family:'Poppins',sans-serif; color:var(--ink); background:var(--stone); line-height:1.5; }
  h1,h2,h3 { font-family:'Lora',serif; font-weight:600; color:var(--ink); }
  a { text-decoration:none; color:inherit; }
  img { max-width:100%; display:block; }
  .container { max-width:1180px; margin:0 auto; padding:0 28px; }
  .eyebrow { font-weight:600; font-size:13px; letter-spacing:4px; text-transform:uppercase; color:var(--brass); }

  /* DISCOUNT BAR */
  .promo-bar {
    background:var(--wine); color:var(--cream); text-align:center;
    font-size:13px; font-weight:500; letter-spacing:0.3px;
    padding:11px 44px 11px 16px; position:relative;
  }
  .promo-bar strong { font-weight:700; }
  .promo-close {
    position:absolute; right:14px; top:50%; transform:translateY(-50%);
    background:none; border:none; color:var(--cream); font-size:18px; cursor:pointer; line-height:1;
    opacity:0.8;
  }
  .promo-close:hover { opacity:1; }
  .promo-bar.hidden { display:none; }

  /* HEADER */
  header {
    position:sticky; top:0; z-index:50; background:rgba(235,230,220,0.92);
    backdrop-filter:blur(8px); border-bottom:1px solid var(--line);
  }
  .nav-wrap { display:flex; align-items:center; justify-content:space-between; height:78px; }
  .brand { display:flex; align-items:center; gap:10px; }
  .brand img { height:40px; }
  .brand span { font-family:'Lora'; font-weight:600; font-size:20px; letter-spacing:0.5px; }
  nav.links { display:flex; gap:36px; }
  nav.links a {
    font-size:14px; font-weight:500; letter-spacing:0.5px; position:relative; padding:6px 0;
  }
  nav.links a::after {
    content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--forest);
    transition:width .25s ease;
  }
  nav.links a:hover::after { width:100%; }
  .burger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px; }
  .burger span { width:26px; height:2px; background:var(--ink); display:block; transition:.25s; }
  .mobile-menu {
    display:none; flex-direction:column; background:var(--cream); border-top:1px solid var(--line);
    padding:10px 28px 20px;
  }
  .mobile-menu a { padding:14px 0; border-bottom:1px solid var(--line); font-weight:500; }
  .mobile-menu.open { display:flex; }

  @media (max-width:860px) {
    nav.links { display:none; }
    .burger { display:flex; }
  }

  /* HERO */
  .hero {
    position:relative; height:86vh; min-height:560px; display:flex; align-items:flex-end;
    /* background-image set via inline style in front-page.php */
    background-size:cover; background-position:center 20%;
  }
  .hero-inner { padding-bottom:80px; color:var(--cream); max-width:640px; }
  .hero .eyebrow { color:var(--brass); }
  .hero h1 { font-size:52px; line-height:1.12; color:var(--cream); margin:18px 0 20px; }
  .hero p { font-size:16px; color:rgba(245,240,229,0.82); margin-bottom:30px; max-width:480px; }
  .btn {
    display:inline-block; padding:15px 30px; font-weight:600; font-size:13px;
    letter-spacing:2px; text-transform:uppercase; border-radius:2px; transition:.2s;
  }
  .btn-primary { background:var(--forest); color:var(--cream); }
  .btn-primary:hover { background:var(--forest-deep); }
  .btn-outline { border:1.5px solid var(--cream); color:var(--cream); margin-left:14px; }
  .btn-outline:hover { background:rgba(245,240,229,0.12); }

  /* SECTION HEADERS */
  .section { padding:96px 0; }
  .section-head { text-align:center; max-width:560px; margin:0 auto 56px; }
  .section-head h2 { font-size:36px; margin-top:14px; }
  .section-head p { margin-top:14px; color:var(--ink-soft); font-size:15px; }
  .tag-num {
    display:inline-block; font-family:'Lora'; font-style:italic; font-size:14px;
    border:1px solid var(--brass); color:var(--brass); padding:3px 12px; border-radius:20px;
  }

  /* PRODUCTS */
  .filters { display:flex; justify-content:center; gap:10px; margin-bottom:40px; flex-wrap:wrap; }
  .filter-btn {
    background:none; border:1px solid var(--line); padding:9px 20px; font-size:13px;
    font-weight:500; letter-spacing:0.5px; border-radius:20px; cursor:pointer; color:var(--ink-soft);
    transition:.2s;
  }
  .filter-btn.active, .filter-btn:hover { background:var(--forest); color:var(--cream); border-color:var(--forest); }

  .grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:28px; }
  .pcard {
    background:var(--cream); border:1px solid var(--line); overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .pcard:hover { transform:translateY(-4px); box-shadow:0 18px 34px rgba(34,30,26,0.12); }
  .pcard-media { position:relative; aspect-ratio:4/5; overflow:hidden; background:#ddd6c8; }
  .pcard-media img { width:100%; height:100%; object-fit:cover; object-position:center 18%; }
  .swatch {
    position:absolute; top:14px; right:14px; width:20px; height:20px; border-radius:50%;
    border:2px solid var(--cream); box-shadow:0 2px 6px rgba(0,0,0,0.35);
  }
  .pcard-body { padding:20px; }
  .pcard-tag { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--brass); font-weight:600; }
  .pcard-body h3 { font-size:19px; margin:8px 0 16px; line-height:1.3; }
  .pcard-cta {
    display:inline-block; font-size:13px; font-weight:600; color:var(--forest);
    border-bottom:1.5px solid var(--forest); padding-bottom:2px;
  }
  .pcard-cta:hover { color:var(--wine); border-color:var(--wine); }

  /* ABOUT */
  .about { background:var(--stone-deep); }
  .about-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
  .about-photo { position:relative; }
  .about-photo img { width:100%; border:6px solid var(--cream); box-shadow:0 26px 50px rgba(34,30,26,0.18); }
  .about-copy p { color:var(--ink-soft); margin:18px 0; font-size:15.5px; }
  .stats { display:flex; gap:40px; margin-top:30px; }
  .stats div span { display:block; font-family:'Lora'; font-size:30px; font-weight:600; color:var(--forest); }
  .stats div small { font-size:12px; letter-spacing:1px; color:var(--ink-soft); text-transform:uppercase; }

  @media (max-width:860px) { .about-grid { grid-template-columns:1fr; } }

  /* LOCATION */
  .location-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line); }
  .location-info { background:var(--forest); color:var(--cream); padding:56px 48px; display:flex; flex-direction:column; justify-content:center; }
  .location-info .eyebrow { color:var(--brass); }
  .location-info h2 { color:var(--cream); font-size:32px; margin:14px 0 18px; }
  .location-info p { color:rgba(245,240,229,0.78); margin-bottom:6px; font-size:15px; }
  .location-info .btn-primary { background:var(--brass); color:var(--ink); margin-top:24px; width:fit-content; }
  .location-info .btn-primary:hover { background:#bf9a60; }
  .map-frame iframe { width:100%; height:100%; min-height:420px; border:0; filter:saturate(0.85) contrast(1.02); }

  @media (max-width:860px) { .location-grid { grid-template-columns:1fr; } }

  /* CONTACT / FOOTER */
  footer { background:var(--ink); color:var(--cream); padding:64px 0 28px; }
  .footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px; margin-bottom:48px; }
  footer .brand span { color:var(--cream); }
  footer .brand img { filter:none; }
  footer p.tagline { margin-top:14px; color:rgba(245,240,229,0.6); font-size:14px; max-width:280px; }
  footer h4 { font-family:'Poppins'; font-size:13px; letter-spacing:2px; text-transform:uppercase; color:var(--brass); margin-bottom:18px; }
  footer ul { list-style:none; }
  footer ul li { margin-bottom:12px; font-size:14px; color:rgba(245,240,229,0.82); }
  footer ul li a:hover { color:var(--brass); }
  .social-row { display:flex; gap:14px; margin-top:6px; }
  .social-row a {
    width:42px; height:42px; border-radius:50%; border:1px solid rgba(245,240,229,0.3);
    display:flex; align-items:center; justify-content:center; transition:.2s;
  }
  .social-row a:hover { background:var(--brass); border-color:var(--brass); }
  .social-row svg { width:18px; height:18px; fill:var(--cream); }
  .footer-bottom {
    border-top:1px solid rgba(245,240,229,0.15); padding-top:22px; text-align:center;
    font-size:12.5px; color:rgba(245,240,229,0.5); letter-spacing:0.5px;
  }

  @media (max-width:760px) { .footer-grid { grid-template-columns:1fr; gap:32px; } }

  /* FLOATING WHATSAPP WIDGET */
  .wa-float {
    position:fixed; bottom:26px; right:26px; z-index:60;
    width:60px; height:60px; border-radius:50%; background:#2FAE60;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 26px rgba(0,0,0,0.32); animation:pulse 2.6s infinite;
  }
  .wa-float svg { width:28px; height:28px; fill:#fff; }
  @keyframes pulse {
    0% { box-shadow:0 10px 26px rgba(0,0,0,0.32), 0 0 0 0 rgba(47,174,96,0.5); }
    70% { box-shadow:0 10px 26px rgba(0,0,0,0.32), 0 0 0 14px rgba(47,174,96,0); }
    100% { box-shadow:0 10px 26px rgba(0,0,0,0.32), 0 0 0 0 rgba(47,174,96,0); }
  }
