/* ============================================================
   THEME FINAL POLISH
   Loaded LAST (after petcare-theme.css) — pure visual layer.
   No Angular / template bindings touched here, only CSS.
   ============================================================ */

/* ------------------------------------------------------------
   0. Shared shadow + focus tokens so every button/card matches
   ------------------------------------------------------------ */
:root{
  --pc-shadow-btn: 0 10px 22px -8px rgba(15,64,56,.45);
  --pc-shadow-btn-hover: 0 16px 30px -10px rgba(15,64,56,.5);
  --pc-focus-ring: 0 0 0 3px rgba(241,114,58,.22);
}

/* ------------------------------------------------------------
   1. BUTTON SHADOW FIX — unify every button family to the same
      teal/coral shadow system, kill the stray orange "lime" glow
   ------------------------------------------------------------ */
.btn-pawwell-primary,
.btn-checkout,
.btn-add-cart,
.tr-cart-foot .btn-pawwell-primary{
  background: var(--pc-teal) !important;
  color: var(--pc-cream) !important;
  box-shadow: var(--pc-shadow-btn) !important;
  border: none !important;
}
.btn-pawwell-primary:hover,
.btn-checkout:hover,
.btn-add-cart:hover{
  background: var(--pc-teal-dark) !important;
  color: var(--pc-cream) !important;
  box-shadow: var(--pc-shadow-btn-hover) !important;
  transform: translateY(-2px);
}
.ph-promo-btn.btn-pawwell{
  background: var(--pc-coral) !important;
  box-shadow: 0 10px 22px -8px rgba(218,94,40,.45) !important;
}
.ph-promo-btn.btn-pawwell:hover{
  background: var(--pc-coral-dark) !important;
  box-shadow: 0 16px 30px -10px rgba(218,94,40,.5) !important;
}
.btn-continue{
  border-color: var(--pc-line) !important;
  color: var(--pc-teal-dark) !important;
  border-radius: 99px !important;
}
.tr-icon-btn{ box-shadow: none !important; }
.tr-hamburger{ box-shadow: none !important; }

/* ------------------------------------------------------------
   2. BREADCRUMB / PAGE HERO — clean pill trail, no orange bleed
   ------------------------------------------------------------ */
.ab-page-hero {
    background: linear-gradient(180deg, #fff8e7, #ffffff) !important;
    padding: 82px 0 64px !important;
}
.ab-page-hero .ab-badge.ab-eyebrow{
  color: var(--pc-coral-dark) !important;
  background: var(--pc-coral-soft) !important;
}
.ab-page-hero .ab-dot{ background: var(--pc-coral) !important; }
.ab-page-hero p {
    color: var(--pc-teal-dark) !important;
    font-family: cursive;
    margin: 14px 0 18px !important;
}
.ab-page-hero .ab-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fbf6ec2b;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pc-text-muted) !important;
    box-shadow: var(--pc-shadow-sm);
}
.ab-page-hero .ab-breadcrumb a{
  color: var(--pc-teal) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ab-page-hero .ab-breadcrumb a:hover{ color: var(--pc-coral) !important; }
.ab-page-hero .ab-breadcrumb i{ font-size: 10px; color: var(--pc-text-muted); }
.ab-page-hero .ab-breadcrumb span{
  color: var(--pc-coral-dark) !important;
  font-weight: 700;
}

/* ------------------------------------------------------------
   3. PRODUCT CARD (shop grid) — fresh look: ribbon tag,
      quick-add slide-up bar, soft image zoom on hover
   ------------------------------------------------------------ */
.product-card{
  border-radius: 22px !important;
  border: 1px solid var(--pc-line) !important;
  box-shadow: var(--pc-shadow-sm) !important;
  position: relative;
}
.product-card:hover{
  box-shadow: var(--pc-shadow) !important;
  transform: translateY(-8px);
}
.product-card .pc-media{
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.product-card .pc-media img{
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .pc-media img{
  transform: scale(1.08);
}
.product-card .pc-cat{
  display: inline-block;
  background: var(--pc-teal-soft);
  color: var(--pc-teal-dark) !important;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 6px;
}
.product-card .pc-body{ padding: 16px 16px 18px; }
.product-card .pc-title{
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.35;
}
.product-card .pc-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card .pc-add{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(218,94,40,.5);
  transition: transform .25s ease, background .25s ease;
}
.product-card:hover .pc-add{
  background: var(--pc-teal) !important;
  transform: rotate(90deg);
}

/* ------------------------------------------------------------
   4. PRODUCT DETAILS PAGE — retheme from the leftover
      black/orange palette to the cream / teal / coral system
   ------------------------------------------------------------ */
.gallery-wrap .main-img-wrap{
  background: linear-gradient(160deg,var(--pc-teal-soft),var(--pc-cream)) !important;
  border-color: var(--pc-line) !important;
  border-radius: var(--pc-radius-lg) !important;
}
.thumb.active{ border-color: var(--pc-coral) !important; }
.thumb:hover{ border-color: var(--pc-teal) !important; }

.product-info-wrap{
  border-radius: var(--pc-radius-lg) !important;
  border-color: var(--pc-line) !important;
  box-shadow: var(--pc-shadow-sm);
}
.product-cat-tag{
  background: var(--pc-coral-soft) !important;
  color: var(--pc-coral-dark) !important;
}
.product-title{ color: var(--pc-teal-dark) !important; }
.rating-bar{
  background: var(--pc-teal-soft) !important;
  color: var(--pc-teal-dark) !important;
}
.rating-bar i{ color: var(--pc-coral); }
.price-row{ border-bottom-color: var(--pc-line) !important; }
.price-current{ color: var(--pc-teal-dark) !important; }

.quantity{
  border-color: var(--pc-line) !important;
  background: var(--pc-cream-soft) !important;
}
.qty-minus, .qty-plus{
  background: var(--pc-white) !important;
  border-color: var(--pc-line) !important;
  color: var(--pc-teal-dark) !important;
}
.qty-minus:hover, .qty-plus:hover{
  background: var(--pc-teal) !important;
  color: var(--pc-cream) !important;
  border-color: var(--pc-teal) !important;
}
.quantity .qty{ color: var(--pc-teal-dark) !important; }

.trust-mini{ border-top-color: var(--pc-line) !important; }
.trust-mini .trust-item{ color: var(--pc-text-muted) !important; }
.trust-mini .trust-item i{ color: var(--pc-coral) !important; }

.overview-card{
  background: var(--pc-cream-soft) !important;
  border-color: var(--pc-line) !important;
  border-radius: var(--pc-radius-md) !important;
}
.overview-header .icon-box{
  background: var(--pc-teal-soft) !important;
  color: var(--pc-teal-dark);
  border-radius: var(--pc-radius-sm) !important;
}
.overview-title{ color: var(--pc-teal-dark) !important; }
.overview-content .middle-dot{ background: var(--pc-coral) !important; }
.overview-tags .tag{
  border-color: var(--pc-line) !important;
  color: var(--pc-teal-dark) !important;
  background: var(--pc-white) !important;
}

/* ------------------------------------------------------------
   5. CHECKOUT PAGE — clean cream/teal card, matching form fields
   ------------------------------------------------------------ */
.checkout-sec .form-control, .checkout-sec .form-select{
  border-radius: var(--pc-radius-sm) !important;
  border-color: var(--pc-line) !important;
}
.checkout-sec .form-control:focus, .checkout-sec .form-select:focus{
  border-color: var(--pc-teal) !important;
  box-shadow: var(--pc-focus-ring) !important;
}
.checkout-sec .form-label{ color: var(--pc-text) !important; }
.checkout-sec span.fs-26{
  border-bottom-color: var(--pc-line) !important;
  color: var(--pc-teal-dark) !important;
}

.summary-card{
  background: var(--pc-white) !important;
  border: 1px solid var(--pc-line) !important;
  border-radius: var(--pc-radius-lg) !important;
  box-shadow: var(--pc-shadow) !important;
}
.summary-title{ color: var(--pc-teal-dark) !important; }
.summary-row{ border-bottom-color: var(--pc-line) !important; }
.summary-label{ color: var(--pc-text) !important; }
.summary-value{ color: var(--pc-text) !important; }
.summary-total{ border-top: 1px dashed var(--pc-line); }
.summary-total .total-label{ color: var(--pc-text-muted) !important; }
.summary-total .total-value{ color: var(--pc-coral-dark) !important; }

.checkout-sec .terms-condition-box{
  background: var(--pc-cream-soft) !important;
  padding: 12px 14px !important;
}
.checkout-sec .summary-card .form-check-label a{ color: var(--pc-teal) !important; }
.checkout-sec .summary-card p.form-check-label{ color: var(--pc-text-muted) !important; }

/* ------------------------------------------------------------
   6. MOBILE MENU DRAWER — fix flex overflow / stray scrollbar
   ------------------------------------------------------------ */
.tr-menu-drawer{
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.tr-drawer-head{
  flex: 0 0 auto;
}
.tr-menu-links{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--pc-line) transparent;
}
.tr-menu-links::-webkit-scrollbar{ width: 5px; }
.tr-menu-links::-webkit-scrollbar-thumb{
  background: var(--pc-line);
  border-radius: 99px;
}
.tr-drawer-foot{
  flex: 0 0 auto;
}
.tr-cart-drawer{
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.tr-cart-items{ min-height: 0; }

@media (max-width: 480px){
  .tr-menu-drawer{ width: min(320px,88vw); padding: 0; }
  .tr-drawer-head{ padding: 18px 18px 14px; }
  .tr-menu-links{ padding: 10px 10px; }
  .tr-drawer-foot{ padding: 14px 18px 20px; }
}
