*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #3a9c3f;
    --green-dark: #2e7d32;
    --green-light: #5cb85c;
    --orange: #e8780a;
    --orange-dark: #c96500;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #666;
    --black: #111;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Lato', sans-serif;
  }

  body { font-family: var(--font-body); color: var(--black); background: var(--white); overflow-x: hidden; }

  /* ── TOP BAR ── */
  .topbar {
    height: 5px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
  }

  /* ── HEADER ── */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
  }

  .logo {
    display: flex; align-items: center; gap: 0;
  }
  .logo-hex {
    width: 80px; height: 80px;
    background: var(--green-dark);
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    font-family: var(--font-heading);
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    border: 3px solid var(--orange);
    outline: 3px solid var(--green-dark);
  }
  .logo-hex span:first-child { font-size: 11px; font-weight: 300; }
  .logo-hex span:last-child  { font-size: 22px; font-weight: 700; letter-spacing: -1px; }
  .logo-hex em { color: var(--orange); font-style: normal; }

  .header-right {
    display: flex; align-items: center; gap: 24px;
  }
  .phone { font-weight: 700; font-size: 15px; color: var(--black); text-decoration: none; letter-spacing: .5px; }
  .signin { font-size: 14px; font-weight: 700; color: var(--black); cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
  .search-box {
    display: flex; align-items: center;
    border: 1px solid #ccc; border-radius: 4px;
    padding: 6px 12px; gap: 6px;
  }
  .search-box input { border: none; outline: none; font-size: 14px; width: 160px; font-family: var(--font-body); }
  .search-box svg { color: #aaa; flex-shrink: 0; }

  nav {
    display: flex; align-items: center; gap: 8px;
  }
  nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 3px;
    transition: color .2s;
    white-space: nowrap;
  }
  nav a:hover { color: var(--green); }
  nav a.cart-btn {
    background: var(--green-dark);
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    display: flex; align-items: center; gap: 6px;
  }
  nav a.cart-btn:hover { background: var(--green); color: white; }
  .nav-arrow { font-size: 10px; }

  /* ── HERO SLIDER ── */
  .slider-wrap {
    position: relative; overflow: hidden;
    height: 520px;
  }
  .slides { display: flex; height: 100%; transition: transform .6s ease; }
  .slide {
    min-width: 100%; height: 100%;
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    position: relative; overflow: hidden;
  }
  .slide-1 { background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop') center/cover; }
  .slide-2 { background: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1600&auto=format&fit=crop') center/cover; }
  .slide-3 { background: url('https://images.unsplash.com/photo-1548767797-d8c844163c4c?w=1600&auto=format&fit=crop') center/cover; }
  .slide::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,.35);
  }
  .slide-product {
    position: relative; z-index: 2;
    width: 280px; height: 280px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
    border: 6px solid #c00;
    text-align: center;
    flex-shrink: 0;
  }
  .slide-product .badge-top {
    position: absolute; top: 22px; left: 26px;
    background: white; border: 2px solid var(--green);
    border-radius: 50%; width: 64px; height: 64px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: var(--green); line-height: 1.1; text-align: center;
  }
  .slide-product .badge-top span { font-size: 18px; font-weight: 700; }
  .slide-product .badge-top small { font-size: 8px; text-transform: uppercase; }
  .slide-product .badge-corner {
    position: absolute; top: 14px; right: -10px;
    background: #c00; color: white;
    font-size: 11px; font-weight: 700;
    padding: 4px 14px; border-radius: 20px;
    white-space: nowrap;
  }
  .slide-product .brand {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 6px;
  }
  .brand-circle {
    width: 44px; height: 44px;
    border: 2px solid #003366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: #003366; text-align: center; line-height: 1.1;
  }
  .product-name { font-family: var(--font-heading); font-size: 30px; font-weight: 700; color: #003366; line-height: 1; }
  .product-sub { font-size: 13px; color: #333; font-weight: 600; }
  .product-desc { font-size: 11px; color: #555; margin-top: 4px; }

  .slide-text { position: relative; z-index: 2; flex: 1; padding-left: 60px; }
  .slide-text h2 {
    font-family: var(--font-heading);
    font-size: 62px; font-weight: 700;
    color: white; text-transform: uppercase;
    line-height: 1.05; text-shadow: 2px 2px 12px rgba(0,0,0,.5);
    margin-bottom: 30px;
  }
  .slide-text h2.alt { font-size: 52px; }
  .slide-cta {
    display: inline-block;
    background: white; color: var(--black);
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 600;
    padding: 14px 44px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background .2s, color .2s, transform .15s;
  }
  .slide-cta:hover { background: var(--orange); color: white; transform: scale(1.03); }

  /* slider arrows */
  .slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; background: rgba(255,255,255,.15);
    border: none; cursor: pointer;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px;
    transition: background .2s;
    backdrop-filter: blur(4px);
  }
  .slider-arrow:hover { background: rgba(255,255,255,.35); }
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }

  /* dots */
  .slider-dots {
    position: absolute; bottom: 16px; right: 28px;
    display: flex; gap: 7px; z-index: 10;
  }
  .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.5); cursor: pointer;
    border: none; transition: background .2s;
  }
  .dot.active { background: white; }

  /* ── SECTION COMMON ── */
  section { padding: 60px 40px; }
  .section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--green);
    margin-bottom: 36px;
    letter-spacing: 1px;
  }

  /* ── BRANDS ── */
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
  }
  .brand-card {
    border-right: 1px solid #e0e0e0;
    padding: 24px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    cursor: pointer; text-decoration: none; color: var(--green);
    transition: background .2s;
  }
  .brand-card:last-child { border-right: none; }
  .brand-card:hover { background: var(--gray-light); }
  .brand-card img {
    width: 80px; height: 100px; object-fit: contain;
  }
  .brand-card span {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    text-align: center; color: var(--green);
    letter-spacing: .5px;
  }

  /* placeholder product images */
  .brand-img {
    width: 80px; height: 100px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; text-align: center; color: #888;
    border-radius: 6px; padding: 4px;
  }

  /* ── SHOP DOG / CAT ── */
  .shop-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; padding: 0;
  }
  .shop-panel {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
  }
  .shop-panel-img {
    height: 400px;
    background: center/cover no-repeat;
  }
  .shop-panel-img.dog { background-image: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=800&auto=format&fit=crop'); }
  .shop-panel-img.cat { background-image: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?w=800&auto=format&fit=crop'); }
  .shop-panel-text {
    padding: 40px 36px;
    text-align: center;
  }
  .shop-panel-text h3 {
    font-family: var(--font-heading);
    font-size: 36px; color: var(--green); margin-bottom: 16px;
    letter-spacing: 1px;
  }
  .shop-panel-text p {
    font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 28px;
  }
  .btn-orange {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    letter-spacing: 2px;
    padding: 13px 34px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s, transform .15s;
  }
  .btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }

  /* ── ABOUT / LOCATIONS ── */
  .info-split {
    display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    padding: 0;
    border-top: 1px solid #eee;
  }
  .info-panel {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 60px 30px;
    text-align: center;
    border-right: 1px solid #eee;
  }
  .info-panel:last-child { border-right: none; }
  .info-panel.img-panel {
    padding: 0;
    overflow: hidden;
  }
  .info-panel.img-panel img {
    width: 100%; height: 100%; object-fit: cover; min-height: 320px;
  }
  .info-panel h3 {
    font-family: var(--font-heading);
    font-size: 28px; color: var(--green); margin-bottom: 14px; letter-spacing: 1px;
  }
  .info-panel p { font-size: 15px; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }
  .btn-orange-sm {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 13px; font-weight: 600;
    letter-spacing: 2px;
    padding: 11px 28px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s;
  }
  .btn-orange-sm:hover { background: var(--orange-dark); }

  /* ── VIDEO ── */
  .video-wrap {
    background: #f9f9f9;
    padding: 50px 40px;
    display: flex; justify-content: center;
  }
  .video-container {
    max-width: 700px; width: 100%;
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    cursor: pointer;
  }
  .video-container img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
  .video-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .play-circle {
    width: 72px; height: 72px;
    background: rgba(255,0,0,.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: white; padding-left: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    transition: transform .2s;
  }
  .video-container:hover .play-circle { transform: scale(1.1); }
  .video-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.6);
    color: white; padding: 14px 18px;
    font-size: 13px; font-weight: 600;
  }
  .video-label .channel { color: #ccc; font-size: 11px; display: block; margin-top: 2px; }
  .video-badge {
    position: absolute; bottom: 50px; left: 18px;
    background: rgba(255,255,255,.92);
    border-radius: 20px; padding: 6px 12px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
  }
  .video-badge .paw { font-size: 18px; }

  /* ── BLOG ── */
  .blog-section { background: white; }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
    max-width: 1100px; margin: 0 auto;
  }
  .blog-card { cursor: pointer; }
  .blog-card:hover .blog-img img { transform: scale(1.05); }
  .blog-img {
    border-radius: 6px; overflow: hidden;
    height: 220px; margin-bottom: 16px;
  }
  .blog-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
  }
  .blog-card h4 {
    font-family: var(--font-heading);
    font-size: 17px; color: var(--green);
    margin-bottom: 6px; line-height: 1.35; letter-spacing: .3px;
  }
  .blog-card h4:hover { text-decoration: underline; }
  .blog-date { font-size: 13px; color: #999; }

  /* ── FOOTER ── */
  footer {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 50px 40px 0;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 40px;
  }
  .footer-col h5 {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    letter-spacing: 1.5px; margin-bottom: 18px;
    color: var(--black);
  }
  .newsletter-row {
    display: flex; gap: 0;
    margin-bottom: 10px;
  }
  .newsletter-row input {
    flex: 1; border: 1px solid #ccc; border-right: none;
    padding: 10px 14px; font-size: 14px;
    border-radius: 4px 0 0 4px; outline: none; font-family: var(--font-body);
  }
  .newsletter-row button {
    background: var(--orange); color: white;
    border: none; cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px; font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    transition: background .2s;
  }
  .newsletter-row button:hover { background: var(--orange-dark); }
  .newsletter-note { font-size: 12px; color: #888; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a {
    font-size: 14px; color: var(--green); text-decoration: none;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--green-dark); text-decoration: underline; }
  .contact-item { font-size: 14px; color: #444; margin-bottom: 10px; }
  .contact-item strong { display: block; margin-bottom: 3px; color: var(--black); }
  .contact-item a { color: var(--green); text-decoration: none; }
  .contact-item a:hover { text-decoration: underline; }

  .footer-bottom {
    border-top: 1px solid #eee;
    padding: 18px 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 13px; color: #888; }
  .footer-bottom a { color: var(--green); text-decoration: none; }
  .payment-icons {
    display: flex; gap: 8px; align-items: center;
  }
  .pay-icon {
    width: 42px; height: 28px;
    border: 1px solid #ddd; border-radius: 4px;
    background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 8px; font-weight: 700; color: #555;
  }
  .pay-icon.amex { background: #016FCA; color: white; }
  .pay-icon.apple { background: #000; color: white; }
  .pay-icon.discover { background: #F76000; color: white; }
  .pay-icon.google { color: #4285F4; }
  .pay-icon.master { background: linear-gradient(90deg,#EB001B 0%,#F79E1B 100%); color: white; }
  .pay-icon.shop { background: #5433EB; color: white; }
  .pay-icon.visa { background: #1A1F71; color: white; }

  /* ── SHOPIFY CHAT ── */
  .chat-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    background: var(--black); color: white;
    border: none; border-radius: 30px;
    padding: 12px 22px; font-size: 14px; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
    font-family: var(--font-body);
    transition: background .2s;
  }
  .chat-btn:hover { background: #333; }
  .chat-badge {
    background: #e33; color: white; border-radius: 50%;
    width: 20px; height: 20px; font-size: 11px;
    display: flex; align-items: center; justify-content: center;
  }

  /* responsive tweaks */
  @media(max-width:900px){
    .brands-grid { grid-template-columns: repeat(3,1fr); }
    .brand-card:nth-child(3) { border-right: none; }
    .shop-split { grid-template-columns: 1fr; }
    .info-split { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    header { flex-wrap: wrap; gap: 12px; }
    .slide-text h2 { font-size: 40px; }
  }