  :root {
    --orange: #ffb300;
    --orange-light: #F9A06A;
    --orange-pale: #FEF0E7;
    --teal: #1A7D6E;
    --teal-light: #2EAA97;
    --teal-pale: #E6F5F3;
    --cream: #FDF8F3;
    --dark: #1C1C1C;
    --mid: #5A5A5A;
    --border: #EDE6DC;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
     overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    line-height: 1.15;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .btn-outline {
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
  }
  .btn-outline:hover { background: var(--orange); color: white; }

  .btn-primary {
    background: var(--orange);
    color: #000;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: #fbc953; transform: translateY(-1px);  }

  /* ── HERO ── */
  .hero {
    position: relative;
    background: url('../img/banner_dog.jpg') center center no-repeat;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
	    background-size: cover;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(242,107,43,0.18) 0%, transparent 65%),
                radial-gradient(ellipse at 20% 80%, rgba(26,125,110,0.15) 0%, transparent 50%);
    pointer-events: none;
  }

  /* paw print watermark */
  .hero::after {
    content: '🐾';
    position: absolute;
    font-size: 320px;
    right: -40px;
    bottom: -60px;
    opacity: 0.04;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242,107,43,0.15);
    border: 1px solid rgba(242,107,43,0.35);
    color: var(--orange-light);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  .hero h1 em { color: var(--orange); font-style: normal; }

  .hero p {
    color: #fff;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 36px;
  }

  .hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn-hero-primary {
    background: var(--orange);
    color: #000;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(242,107,43,0.4);
  }
  .btn-hero-primary:hover { background: #fbc953; transform: translateY(-2px); color: #000;}

  .btn-hero-ghost {
    color: #ccc;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .btn-hero-ghost:hover { color: var(--orange-light); }
  .btn-hero-ghost .play-icon {
    width: 40px; height: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: border-color 0.2s;
  }

  .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item { }
  .stat-num {
     font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    display: block;
  }
  .stat-label { color: #888; font-size: 12.5px; font-weight: 500; letter-spacing: 0.3px; }

  /* Hero visual panel */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-card-main {
    background: linear-gradient(145deg, #F26B2B, #F9A06A);
    border-radius: 24px;
    width: 340px;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 30px 80px rgba(242,107,43,0.3);
    position: relative;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
  .hero-card-main::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
  }
  .hero-card-main::before {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
  }

  .hero-pill {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 14px;
    animation: float2 5s ease-in-out infinite;
  }
  @keyframes float2 {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
  }
  .hero-pill.pill-top { top: 20px; right: -20px; }
  .hero-pill.pill-bottom { bottom: 40px; left: -30px; animation-delay: 1.5s; }
  .pill-emoji { font-size: 20px; }
  .pill-label { color: var(--dark); line-height: 1.2; }
  .pill-sub { font-size: 11px; color: var(--mid); font-weight: 400; }

  /* ── FEATURES BAR ── */
  .features-bar {
    background: var(--teal);
    padding: 22px 0;
  }
  .features-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .feat-item:last-child { border-right: none; }
  .feat-icon { font-size: 26px; }
  .feat-text { color: white; }
  .feat-title { font-size: 13.5px; font-weight: 600; }
  .feat-sub { font-size: 11.5px; opacity: 0.7; }

  /* ── SECTION LABEL ── */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }


  /* ── WHY BEENEE ── */
  .why-section {
    padding: 100px 0;
    background:#fdf8f3;
  }
  .why-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 80px;
    align-items: center;
  }
  .why-text {
		text-align: center;
	}
  .why-text h2 {
    font-size: clamp(30px, 3.5vw, 46px);
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
  }
  .why-text h2 span { color: var(--orange); }
  .why-text p {
    color: var(--mid);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 36px;
  }
  .why-points {    display: grid;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .why-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
	background: #fff;
	text-align: left;
  }
  .why-point:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(242,107,43,0.08); }
  .wp-icon {
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .wp-icon img{filter: invert(1);}
  .wp-title { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
  .wp-desc { color: var(--mid); font-size: 13.5px; line-height: 1.5; }

  /* Visual side */
  .why-visual {
    position: relative;
  }
  .why-big-card {
    background: linear-gradient(145deg, var(--teal), var(--teal-light));
    border-radius: 24px;
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .why-big-card::before {
    content: '🐶';
    position: absolute;
    right: -10px; bottom: -10px;
    font-size: 140px;
    opacity: 0.15;
  }
  .why-big-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
  }
  .why-big-card p { opacity: 0.85; font-size: 15px; line-height: 1.65; margin-bottom: 28px; }

  .rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
  .stars { color: #FFD700; font-size: 16px; letter-spacing: 2px; }
  .rating-text { font-size: 14px; opacity: 0.9; }

  .why-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
  }
  .mini-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
  }
  .mini-card .mc-num {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
  }
  .mini-card .mc-label { font-size: 11.5px; opacity: 0.8; }

  /* ── CATEGORIES ── */
  .categories-section {
    padding: 100px 0;
    background: #fff);
  }
  .section-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 56px;
  }
  .section-head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    margin-bottom: 14px;
	    color: #000;
  }
  .section-head h2 span { color: var(--orange); display:blockl }
  .section-head p { color: #000; font-size: 16px; line-height: 1.65; }

  .cat-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .cat-grid a img {
    width: 100%;
	margin-bottom:15px;
}
  .cat-card {
    background: var(--white);
    border-radius: 18px;
    padding: 0px 0px 20px 0px;
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: block;
    color: var(--dark);
    overflow: hidden;
  }

  .cat-emoji { font-size: 38px; display: block; margin-bottom: 12px; }
  .cat-name {  font-size: 1.8rem; font-weight: 600; padding: 15px 0px 0px 0px; }
  .cat-sub {font-size: 1.0rem; padding:00px 30px 15px 30px; }

  .cat-card.featured {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
  }
  .cat-card.featured .cat-sub { color: rgba(255,255,255,0.75); }

  /* ── GROOMING TIPS ── */
  .tips-section {
    padding: 100px 0;
    background: var(--white);
  }
  .tips-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .tips-video-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-play-btn {
    position: absolute;
    width: 70px; height: 70px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 0 12px rgba(242,107,43,0.2);
    transition: transform 0.2s;
    color: white;
    text-decoration: none;
  }
  .video-play-btn:hover { transform: scale(1.1); }

  .video-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
  }
  .video-label h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
  .video-label p { font-size: 12px; opacity: 0.7; }

  .tips-section h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
	text-align:center
  }
  .tips-section h2 span { color: var(--orange); display:block; }
  .tips-section > p {
    color: var(--mid);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 32px;
	text-align:center
  }

  .tip-list { display: flex; flex-wrap: wrap; gap: 14px; }
  .tip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: var(--cream);
    border-left: 3px solid var(--orange);
	width: 49%;
  }
	 .tip-item:last-child {
		width: 100%;
	}
  .tip-num {
    width: 30px; height: 30px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .tip-title { font-weight: 600; font-size: 16px; margin-bottom: 3px; }
  .tip-desc { color: var(--mid); font-size: 14px; line-height: 1.55; }

  /* ── BLOG ── */
  .blog-section {
    padding: 100px 0;
    background: var(--cream);
  }
  .blog-section .section-head h2{color:#000}
  .blog-section .section-head p{color:#000}
  .blog-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .blog-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

  .blog-thumb {
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
  }
  .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-thumb img {
    width: 100%;
}
  .blog-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--white);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--orange);
  }

  .blog-body { padding: 22px; }
  .blog-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25;
    
  }
  .blog-body p { color: var(--mid); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
  .blog-link {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .blog-link:hover { gap: 8px; }

  /* ── FAQ ── */
  .faq-section {
    padding: 100px 0 50px 0;
    background: var(--white);
  }
   .faq-section .section-head h2{color:#000}
  .faq-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .faq-item {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--orange); }

  .faq-q {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.2s;
  }
  .faq-item.open .faq-q { background: var(--orange-pale); }
  .faq-icon { font-size: 18px; color: var(--orange); transition: transform 0.3s; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    color: var(--mid);
    font-size: 14.5px;
    line-height: 1.7;
  }
  .faq-a-inner { padding: 10px 24px 20px; }
  .faq-item.open .faq-a { max-height: 300px; }

  /* ── DELIVERY ── */
  .delivery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark), #2A2A2A);
    position: relative;
    overflow: hidden;
  }

  .delivery-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
  }
  .delivery-text{max-width:1100px; margin:0 auto; text-align:center}
  .delivery-text .section-label { color: var(--orange-light); }
  .delivery-text h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
  }
  .delivery-text h2 span { color: var(--orange); }
  .delivery-text p { color: #AAAAAA; font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
  
   .delivery-text h3 {color:#fff;}
.top_places {display:flex; flex-wrap:wrap;    justify-content: center;}
.top_places div{ background: rgba(255, 255, 255, .2); width:30%; padding:10px; border-radius:10px; color:#fff;     margin: 15px 1% 15px 1%; text-align:center;}
.top_places div strong{display:block; color:#ffb300; font-size:1.2rem;}
  
  
  .area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .area-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #CCC;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 500;
  }

  .delivery-cta {
    background: var(--orange-pale);
    border-radius: 24px;
    padding: 44px 40px;
    text-align: center;
    min-width: 260px;
  }
  .delivery-cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
  .delivery-cta p { color: var(--mid); font-size: 14px; margin-bottom: 22px; line-height: 1.55; }
  .dc-emoji { font-size: 52px; display: block; margin-bottom: 16px; }

 


  /* Scroll reveal animation */
  .reveal {
    /*opacity: 0;*/
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .axil-mobile-toggle{display:none !important;}
  .cat-only-list {float:left; width:100%; padding:0px; margin:0px 30px;}
  .cat-only-list li{width:50%; float:left; display:flex; margin-bottom:10px; list-style:none; align-items:Center; 
    text-indent: 10px;}
	.cat-only-list li a{width:100%; display:block; color:#000; text-transform:capitalize; text-decoration:underline !important;}
  .cat-only-list li:before{width:10px; height:10px; content:""; border-radius:50px; background:var(--orange);}
  .pet-cat-box {border:1px solid #e7e7e7; border-radius:10px; overflow:hidden;}
  .pet-cat-box .col-md-5 {padding:0px;}
  .pet-cat-box .col-md-5 img{max-width:100%;border-radius:10px; width:100%;}
  .pet-cat-box .cat-name{ padding:20px 30px 0px 30px;}
  .icon_header{text-align:center; display:flex;     justify-content: center;}
  .icon_header a{margin:0px 10px;}
  .icon_header img{max-width:150px;}
  
    .cat-only-list.threecol li {
    width: 33%;
}
  
  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(4, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
	.why-points {
		grid-template-columns: 1fr 1fr ;
	}
	.tips-inner {
		grid-template-columns: 1fr;
	}
	.cat-only-list.threecol li {
		width: 49%;
	}

  }

  @media (max-width: 768px) {
  .blog-thumb {
    height: 366px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .why-inner, .tips-inner { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .features-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .delivery-inner { grid-template-columns: 1fr; }
    nav { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .why-mini-grid { grid-template-columns: repeat(4, 1fr); }
	section.hero {
		background-position: left;
	}
	.section-head {
		padding: 0 15px;
	}
  }
  
    @media (max-width: 767px) {
  .top_places div{width:100%; margin: 15px 0%; text-align:center;}
  	.cat-only-list.threecol li {
		width: 100%;
	}
	}
  @media (max-width: 480px) {
	  .why-points {
		display: grid;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 36px;
		grid-template-columns: 1fr ;
	}
	.cat-sub {
		font-size: 1.0rem;
		padding: 00px 1px 15px 1px;
	}
	.pet-cat-box .cat-name {
		padding: 20px 1px 0px 1px;
	}
	.cat-grid {
        grid-template-columns: repeat(1, 1fr);
    }
	.tip-item {
       width: 100%;
	}
    .blog-thumb {
        height: 166px;
     }
	 .cat-only-list {
		float: left;
		width: 100%;
		padding: 0px;
		margin: 0px 0px;
	}
	.cat-only-list li {
		width: 100%;
		
	}
	.cat-name {
		font-size: 1.6rem;
	}
	
  }
  
  #cat-city_box{border-radius:10px; width:90%; max-width:960px !important; background:#f0fcff; margin:0px auto 30px auto; padding:25px; text-align:center;}
#cat-city_box h2{font-size:1.3rem;}
#cat-city_box h5{font-size:1.0rem; font-weight:normal;}
.city_names{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.city_names a {padding:10px; color:#152547; text-decoration:underline !important; margin:0px 3px;}
.city_names a:hover {color:#ffb300 !important;}
  
  
  
