
        /* Whiskers Magic - Discover Section */
.wm-discover-sec{
  padding: 70px 0;
  background:#fff;
  border-top:1px solid rgba(0,0,0,0.08);
}

.wm-discover-title{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 0 14px;
}

.wm-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin: 10px 0 18px;
  opacity:.75;
}
.wm-divider-line{
  width: 140px;
  height: 1px;
  background: rgba(0,0,0,0.35);
  position: relative;
}
.wm-divider-icon{
  font-size: 22px;
  line-height: 1;
}

.wm-discover-desc{
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: 16px;
  color: rgba(0,0,0,0.75);
}

.wm-discover-btn{
  display:inline-block;
  padding: 12px 40px;
  background:#10133a;        /* change if needed */
  color:#fff;
  text-decoration:none;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 2px;
}
.wm-discover-btn:hover{ opacity:.9; }

/* 4 points row */
.wm-features{
  margin-top: 45px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top:1px solid rgba(0,0,0,0.08);
  padding-top: 30px;
}

.wm-feature{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 18px 18px;
  border-right:1px solid rgba(0,0,0,0.08);
}
.wm-feature:last-child{ border-right:none; }

.wm-feature-ic{
  color:#10133a;   /* icon color */
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 52px;
}

.wm-feature-title{
  font-weight: 600;
  font-size: 19px;
  /*color: #111;*/
}
.wm-feature-sub{
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 991px){
  .wm-discover-title{ font-size: 34px; }
  .wm-features{ grid-template-columns: repeat(2, 1fr); }
  .wm-feature:nth-child(2){ border-right:none; }
}
@media (max-width: 575px){
  .wm-discover-title{ font-size: 28px; }
  .wm-divider-line{ width: 90px; }
  .wm-features{ grid-template-columns: 1fr; }
  .wm-feature{ border-right:none; border-bottom:1px solid rgba(0,0,0,0.08); }
  .wm-feature:last-child{ border-bottom:none; }
}   


/* =========================
   Whiskers Magic Brand Theme
   Colors: #6c315f (plum) + #72533c (cocoa)
   ========================= */

:root{
  --wm-plum: #6c315f;
  --wm-cocoa:#72533c;

  /* Soft aesthetic backgrounds */
  --wm-cream: #fff7f3;
  --wm-blush: #f7eef4;
  --wm-caramel: #f2e9e2;
  --wm-milk: #fffdfb;

  /* Text */
  --wm-text: #2a1f24;
  --wm-muted: rgba(42,31,36,.72);

  /* Borders / shadow */
  --wm-line: rgba(114,83,60,.18);
  --wm-shadow: 0 10px 30px rgba(108,49,95,.10);
}

/* Make your existing section bg class match the brand */
.bg-light-orange-4{
  background: linear-gradient(180deg, var(--wm-cream) 0%, var(--wm-blush) 100%) !important;
}

/* General “bakery card” feel */
/*.card-product,
.tf-icon-box,
.box-testimonial-main,
.wm-feature{
  border: 1px solid var(--wm-line);
  box-shadow: var(--wm-shadow);
  background: var(--wm-milk);
}*/

/* Buttons to match brand */
.btn-red,
.tf-btn.btn-red{
  background: var(--wm-plum) !important;
  border-color: var(--wm-plum) !important;
}
.tf-btn.btn-red:hover{
  background: #5a2950 !important;
  border-color: #5a2950 !important;
}

/* Accent icons / small highlights */
/*.icon, .wm-feature-ic{
  color: var(--wm-plum);
}*/

/* Discover section background (premium + tempting) */
.wm-discover-sec{
  background: radial-gradient(1200px 400px at 50% 0%,
    rgba(108,49,95,.10) 0%,
    rgba(114,83,60,.08) 35%,
    rgba(255,247,243,1) 70%) !important;
  border-top: 1px solid var(--wm-line);
}

/* Titles */
.wm-discover-title,
.flat-title h3,
.flat-title .title,
.wm-feature-title{
  color: var(--wm-text);
}
.wm-discover-desc,
.wm-feature-sub{
  color: var(--wm-muted);
} 




:root{
  --wm-primary:#6c315f;
  --wm-secondary:#72533c;
  --wm-ink:#1b1b1b;
  --wm-soft:#fff7fb;
  --wm-soft2:#fbf4ef;
  --wm-border:rgba(108,49,95,.18);
}

.wm-about-wrap{
  border: 1px solid var(--wm-border);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--wm-soft) 0%, #ffffff 55%, var(--wm-soft2) 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.wm-about-grid{
  display:flex;
  gap:0;
  align-items:stretch;
}
.wm-about-media{
  width: 48%;
  position: relative;
  min-height: 420px;
  background: #000;
}
.wm-about-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.wm-about-badge{
  position:absolute;
  left:18px;
  top:18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(114,83,60,.22);
  border-radius: 999px;
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.wm-about-badge img{ width:34px; height:34px; border-radius:50%; object-fit:cover; }
.wm-about-badge span{ font-weight:700; color:var(--wm-primary); letter-spacing:.2px; }

.wm-about-content{
  width: 52%;
  padding: 44px 44px;
  position: relative;
}
.wm-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color: var(--wm-secondary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.wm-eyebrow i{
  width:10px; height:10px; border-radius:50%;
  background: var(--wm-primary);
  display:inline-block;
  box-shadow: 0 0 0 6px rgba(108,49,95,.12);
}

.wm-title{
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--wm-ink);
}
.wm-title b{ color: var(--wm-primary); }

.wm-lead{
  color: rgba(0,0,0,.68);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.wm-highlights{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin: 22px 0 26px;
}
.wm-pill{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(114,83,60,.18);
  border-radius: 16px;
}
.wm-pill .ic{
  width: 36px; height: 36px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(108,49,95,.10);
  color: var(--wm-primary);
  flex: 0 0 auto;
}
.wm-pill .tx{
  font-size: 14px;
  color: rgba(0,0,0,.70);
  line-height: 1.5;
}
.wm-pill .tx b{ color: var(--wm-ink); }

.wm-cta-row{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.wm-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
}
.wm-btn-primary{
  background: linear-gradient(135deg, var(--wm-primary), #7a3b6c);
  color:#fff;
  box-shadow: 0 14px 30px rgba(108,49,95,.20);
}
.wm-btn-primary:hover{ transform: translateY(-1px); color:#fff; }
.wm-btn-outline{
  background: transparent;
  border-color: rgba(108,49,95,.22);
  color: var(--wm-primary);
}
.wm-btn-outline:hover{
  background: rgba(108,49,95,.06);
  transform: translateY(-1px);
  color: var(--wm-primary);
}

/* Philosophy cards */
.wm-philosophy{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wm-card{
  border-radius: 18px;
  padding: 18px 18px;
  border: 1px solid rgba(108,49,95,.14);
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.wm-card .top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.wm-card .top .ic{
  width: 44px; height: 44px;
  border-radius: 16px;
  background: rgba(114,83,60,.10);
  color: var(--wm-secondary);
  display:grid; place-items:center;
}
.wm-card h4{
  margin:0;
  font-size: 16px;
  font-weight: 800;
  color: var(--wm-ink);
}
.wm-card p{
  margin: 0;
  color: rgba(0,0,0,.68);
  line-height: 1.6;
  font-size: 14px;
}

/* Process */
.wm-process{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wm-step{
  display:flex;
  gap:12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(114,83,60,.18);
}
.wm-step .num{
  width: 42px; height: 42px;
  border-radius: 16px;
  background: rgba(108,49,95,.10);
  color: var(--wm-primary);
  font-weight: 900;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.wm-step .info b{
  display:block;
  color: var(--wm-ink);
  font-weight: 900;
  margin-bottom: 2px;
}
.wm-step .info span{
  color: rgba(0,0,0,.68);
  font-size: 14px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 991px){
  .wm-about-grid{ flex-direction:column; }
  .wm-about-media, .wm-about-content{ width:100%; }
  .wm-about-content{ padding: 26px 18px; }
  .wm-highlights{ grid-template-columns: 1fr; }
  .wm-philosophy{ grid-template-columns: 1fr; }
  .wm-process{ grid-template-columns: 1fr; }
  .wm-about-media{ min-height: 280px; }
  .wm-title{ font-size: 26px; }
} 




:root{
  --wm-primary:#6c315f;
  --wm-secondary:#72533c;
  --wm-ink:#151515;
  --wm-muted:rgba(0,0,0,.66);
  --wm-line:rgba(108,49,95,.16);
  --wm-bg1:#fff7fb;
  --wm-bg2:#fbf4ef;
}

/* Use same big heading vibe as your About/Index */
.wm-title{
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--wm-ink);
  margin: 0;
}
.wm-title-lg{ font-size: 34px; line-height: 1.15; }
.wm-title-md{ font-size: 26px; line-height: 1.2; }

.wm-subtitle{
  margin-top: 10px;
  color: var(--wm-muted);
  line-height: 1.75;
  font-size: 16px;
}

.wm-contact-hero{
  position: relative;
  border-radius: 26px;
  overflow:hidden;
  /*border:1px solid var(--wm-line);*/
  /*background:
    radial-gradient(900px 420px at 15% 15%, rgba(108,49,95,.18), transparent 60%),
    radial-gradient(700px 360px at 90% 10%, rgba(114,83,60,.18), transparent 55%),
    linear-gradient(180deg, var(--wm-bg1), #ffffff 55%, var(--wm-bg2));*/
  /*box-shadow: 0 18px 55px rgba(0,0,0,.08);*/
  padding: 48px 22px;
  text-align:center;
}

.wm-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(114,83,60,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  color: var(--wm-secondary);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.wm-chip i{
  width:10px;height:10px;border-radius:50%;
  background: var(--wm-primary);
  box-shadow: 0 0 0 6px rgba(108,49,95,.12);
}

.wm-hero-actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.wm-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  transition: .25s ease;
  border:1px solid transparent;
  text-decoration:none;
}
.wm-btn-primary{
  background: linear-gradient(135deg, var(--wm-primary), #7a3b6c);
  color:#fff;
  box-shadow: 0 16px 34px rgba(108,49,95,.18);
}
.wm-btn-primary:hover{ transform: translateY(-1px); color:#fff; }
.wm-btn-outline{
  background: rgba(255,255,255,.68);
  border-color: rgba(108,49,95,.22);
  color: var(--wm-primary);
}
.wm-btn-outline:hover{ background: rgba(108,49,95,.06); transform: translateY(-1px); }

/* Layout */
.wm-contact-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Panels */
.wm-panel{
  border-radius: 22px;
  border:1px solid var(--wm-line);
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  overflow:hidden;
}

.wm-panel-head{
  padding: 22px 18px;
  border-bottom:1px solid rgba(114,83,60,.12);
  background: linear-gradient(180deg, rgba(108,49,95,.06), rgba(255,255,255,0));
  text-align:left;
}
.wm-panel-head .wm-subtitle{ font-size: 14px; margin-top: 8px; }

/* Quick contact one-by-one cards */
.wm-cards{
  padding: 18px;
  display:grid;
  grid-template-columns: 1fr; /* single column */
  gap: 14px;
}
.wm-card{
  border-radius: 18px;
  padding: 16px 16px;
  border:1px solid rgba(114,83,60,.16);
  background: rgba(255,255,255,.86);
  transition:.25s ease;
}
.wm-card:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.08); }

.wm-card .top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 10px;
}
.wm-ic{
  width: 46px; height: 46px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(108,49,95,.10);
  color: var(--wm-primary);
  font-size: 18px;
}
.wm-card h4{
  margin:0;
  font-size: 16px;
  font-weight: 900;
  color: var(--wm-ink);
}
.wm-card p{ margin:6px 0 0; color: var(--wm-muted); font-size: 14px; line-height:1.65; }
.wm-card a{ color: var(--wm-primary); font-weight: 900; word-break: break-word; }
.wm-card a:hover{ text-decoration: underline; }

/* Form */
.wm-form{ padding: 18px; }
.wm-form .row{
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}
.wm-label{
  font-size: 13px;
  font-weight: 900;
  color: rgba(0,0,0,.72);
  margin-bottom: 6px;
}
.wm-input, .wm-select, .wm-textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(108,49,95,.18);
  background: rgba(255,255,255,.90);
  padding: 12px 12px;
  outline: none;
  transition:.2s ease;
  color: var(--wm-ink);
}
.wm-textarea{ min-height: 120px; resize: vertical; }
.wm-input:focus, .wm-select:focus, .wm-textarea:focus{
  border-color: rgba(108,49,95,.42);
  box-shadow: 0 0 0 4px rgba(108,49,95,.10);
}
.wm-help{
  margin-top: 10px;
  color: var(--wm-muted);
  font-size: 13px;
  line-height: 1.6;
}

.wm-map{
  width:100%;
  height: 260px;
  border:0;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}

/* Mobile */
@media (max-width: 991px){
  .wm-title-lg{ font-size: 28px; }
  .wm-title-md{ font-size: 22px; }
  .wm-contact-hero{ padding: 34px 16px; }
  .wm-contact-grid{ grid-template-columns: 1fr; }
} 

/* ====== Small Hero Strip (Our Products) ====== */
.wm-page-strip{
  background: #fff;
  border: 1px solid rgba(108,49,95,.12);
  border-radius: 18px;
  padding: 18px 22px;
  margin: 22px 0 18px;
  position: relative;
  overflow: hidden;
}
.wm-page-strip:before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width:220px;
  height:220px;
  background: radial-gradient(circle at center, rgba(108,49,95,.14), transparent 62%);
  filter: blur(2px);
}
.wm-page-strip .wm-title{
  font-weight: 700;
  margin: 0;
  color: #6c315f;
  letter-spacing: .2px;
}
.wm-page-strip .wm-sub{
  margin: 6px 0 0;
  color: rgba(0,0,0,.65);
}

/* ====== Search box beside dropdown ====== */
.wm-shop-control{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.wm-search{
  width: min(420px, 100%);
  position: relative;
}
.wm-search input{
  width:100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(108,49,95,.18);
  background: #fff;
  padding: 0 46px 0 16px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.wm-search input:focus{
  border-color: rgba(108,49,95,.45);
  box-shadow: 0 10px 26px rgba(108,49,95,.12);
}
.wm-search button{
  position:absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #6c315f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.wm-search button:hover{ opacity:.92; }

/* Reduce product image height (your earlier request) */
.card-product.style-5 .img-product,
.card-product.style-5 .img-hover{
  height: 200px !important;
  object-fit: cover !important;
}

