/* ==========================================
   PetFun.in – Main Stylesheet
   ========================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #1a3c34;
    /* deep forest green */
    --primary-light: #2d6a4f;
    --accent: #e8a020;
    /* warm amber */
    --accent-light: #f5c84a;
    --red-sale: #e63946;
    --bg-light: #f9f7f4;
    --bg-section: #f4f1ec;
    --text-dark: #1a1a1a;
    --text-mid: #555;
    --text-light: #888;
    --border: #e4e0d8;
    --white: #ffffff;
    --cat-dog: #fef3e2;
    --cat-cat: #e8f4fd;
    --cat-other: #edf7ed;
    --cat-food: #fce8e8;
    --cat-toy: #e8e4fd;
    --cat-groom: #fef3e2;
    --cat-health: #e8f7ef;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .14);
    --transition: .25s ease;
}

/* ---- Global Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
 overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    font-size: 14px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.announcement-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    padding: 7px 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.ann-links {
    display: flex;
    gap: 14px;
}

.ann-links a {
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    transition: color var(--transition);
}

.ann-links a:hover {
    color: var(--accent);
}

@media (max-width: 767px) {
    .announcement-bar {
        font-size: 11px;
        padding: 6px 12px;
    }

    .ann-links {
        display: none;
    }
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1030;
    box-shadow: var(--shadow-sm);
}

.site-header .navbar {
    padding: 8px 0;
}

.site-header .navbar .container-fluid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.site-header .navbar-toggler {
    border: 1px solid var(--border) !important;
    padding: 6px 10px !important;
    border-radius: var(--radius-sm) !important;
    background: transparent !important;
    color: var(--text-dark) !important;
    box-shadow: none !important;
    transition: all var(--transition);
}

.site-header .navbar-toggler:hover {
    background-color: #faf8f5 !important;
}

.site-header .navbar-toggler:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(26, 60, 52, .12) !important;
}

/* Logo */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark) !important;
}

.logo-image {
    max-height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: max-height var(--transition);
}

@media (max-width: 991.98px) {
    .logo-image {
        max-height: 85px;
    }
}

.logo-paw {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
}

.logo-dot {
    color: var(--accent);
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-mid);
    font-weight: 400;
    margin-top: 2px;
}

/* Search Bar */
.search-bar-wrap {
    max-width: 480px;
}

.search-group {
    border: 1.5px solid var(--border);
    border-radius: 40px;
    background: var(--white);
    padding: 4px;
    display: flex;
    align-items: center;
}

.search-input,
.search-select {
    border: none;
    box-shadow: none !important;
    font-size: 13px;
    background: transparent;
    color: var(--text-dark);
}

.search-input {
    flex: 1;
    padding-left: 16px;
}

.search-select {
    max-width: 140px;
    border-left: 1px solid var(--border);
    border-radius: 0;
    padding: 0 8px 0 16px;
}

.search-input:focus,
.search-select:focus {
    outline: none;
}

.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 8px;
    flex-shrink: 0;
    transition: all var(--transition);
}

.btn-search:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* Header Actions */
.header-action-link {
    font-size: 13px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: color var(--transition);
}

.header-action-link:hover {
    color: var(--primary);
}

.cart-link {
    position: relative;
}

.cart-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -10px;
}

.wishlist-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 6px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1140;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1150;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-card {
    width: min(480px, 100%);
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    padding: 32px 30px 26px;
    position: relative;
}

.login-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
}

.login-modal-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin: 0 0 8px;
}

.login-modal-header p {
    margin: 0 0 22px;
    color: var(--text-mid);
    font-size: 14px;
}

.btn-google {
    border-color: rgba(0, 0, 0, .12);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-google i {
    margin-right: 10px;
    font-size: 18px;
}

.login-or {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--text-mid);
    font-size: 13px;
    margin: 16px 0;
}

.login-or::before,
.login-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9e7e2;
}

.login-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.login-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}

.login-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 60, 52, .08);
}

.login-note {
    margin: 16px 0 0;
    color: var(--text-mid);
    font-size: 13px;
    line-height: 1.5;
}

.login-note a {
    color: var(--primary);
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

.auth-page-grid {
    max-width: 900px;
    width: min(100%, 900px);
    margin: 0 auto;
}

.auth-card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

body.login-page {
    background: #f7f4ef;
}

.login-page-main {
    min-height: calc(100vh - 140px);
    display: grid;
    place-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.auth-page-grid {
    display: grid;
    gap: 28px;
}

@media (min-width: 992px) {
    .auth-page-grid {
        /* grid-template-columns: 1.1fr .9fr; */
        align-items: stretch;
    }
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 32px;
}

.auth-card-signup {
    background: linear-gradient(180deg, rgba(232, 160, 32, 0.08), rgba(255, 255, 255, 0.95));
}

.auth-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    max-width: max-content;
}

.auth-badge-alt {
    background: var(--primary);
    color: var(--white);
}

.auth-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.5vw, 2.7rem);
    margin-bottom: 14px;
    line-height: 1.05;
}

.auth-text {
    color: var(--text-mid);
    margin-bottom: 24px;
    max-width: 600px;
}

.auth-link {
    color: var(--primary);
    font-size: 13px;
}

.auth-note {
    color: var(--text-mid);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 24px;
}

.auth-note a {
    color: var(--primary);
}

@media (max-width: 991px) {
    .login-page-main {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.order-modal-overlay,
.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1140;
}

.order-modal-overlay.active,
.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-modal,
.login-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1150;
}

.order-modal.active,
.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-modal-card,
.login-modal-card {
    width: min(520px, 100%);
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    padding: 34px 30px 28px;
    position: relative;
}

.order-modal-close,
.login-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
}

.order-modal-header h2,
.login-modal-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin: 0 0 8px;
}

.order-modal-header p,
.login-modal-header p {
    margin: 0 0 22px;
    color: var(--text-mid);
    font-size: 14px;
}

.order-form-row {
    margin-bottom: 16px;
}

.order-form-row label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.order-form-row .form-control {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
}

.order-form-row .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 60, 52, .08);
}

.thanku-main {
    padding: 80px 0;
}

.thanku-section {
    display: grid;
    place-items: center;
}

.thanku-card {
    width: min(820px, 100%);
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 40px 36px;
    text-align: center;
}

.thanku-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5ea;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: #2f7d42;
    font-size: 32px;
}

.thanku-card h1 {
    margin: 0 0 10px;
    font-size: 32px;
    letter-spacing: .2px;
}

.thanku-subtitle {
    margin: 0 0 16px;
    color: var(--text-mid);
    font-size: 14px;
}

.thanku-description {
    margin: 0 0 32px;
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.8;
}

.thanku-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 28px;
}

.thanku-block {
    background: #faf8f3;
    border-radius: 18px;
    padding: 24px;
    text-align: left;
}

.thanku-block h5 {
    margin: 0 0 18px;
    font-size: 18px;
}

.thanku-detail-row {
    display: grid;
    gap: 20px;
}

.thanku-detail-row small {
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-size: 11px;
}

.thanku-detail-row p {
    margin: 6px 0 0;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 14px;
}

.thanku-order-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 18px;
}

.thanku-order-thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
    background: #f7f3ee;
}

.thanku-order-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanku-order-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
}

.thanku-order-meta {
    margin: 0;
    color: var(--text-mid);
    font-size: 13px;
}

.thanku-order-price {
    font-size: 16px;
    font-weight: 700;
}

.thanku-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #ece8e1;
    font-size: 16px;
    font-weight: 700;
}

.thanku-continue-btn {
    display: inline-flex;
    justify-content: center;
    margin: 0 auto;
    padding: 14px 32px;
    letter-spacing: .5px;
}

@media (max-width: 991px) {
    .thanku-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .thanku-card {
        padding: 28px 20px;
    }
}

.wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1050;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100%);
    background: #fff;
    box-shadow: -24px 0 44px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 24px;
}

.wishlist-sidebar.active {
    transform: translateX(0);
}

.wishlist-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.wishlist-sidebar-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.wishlist-sidebar-header p {
    margin: 4px 0 0;
    color: var(--text-mid);
    font-size: 13px;
}

.wishlist-close {
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
}

.wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
}

.wishlist-empty {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.6;
    padding: 28px 0;
}

.wishlist-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f1f0ee;
}

.wishlist-item:last-child {
    border-bottom: none;
}

.wishlist-item-img {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f6f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wishlist-item-content {
    flex: 1;
}

.wishlist-item-content h6 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.wishlist-item-content .wishlist-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.wishlist-item-content .wishlist-price .old {
    color: var(--text-mid);
    text-decoration: line-through;
    font-size: 12px;
}

.wishlist-remove-btn {
    color: var(--text-mid);
    font-size: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
}

.wishlist-remove-btn:hover {
    color: var(--primary);
}

@media (max-width: 576px) {
    .wishlist-sidebar {
        width: 100%;
    }
}


/* Main Nav */
.main-nav {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
}

.main-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 12px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-sale {
    color: var(--red-sale) !important;
}

.nav-sale:hover {
    border-bottom-color: var(--red-sale) !important;
}

/* Premium Offcanvas Sidebar Menu (Mobile & Tablet Drawer) */
@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-end {
        width: 290px !important;
        border-left: 1px solid var(--border) !important;
    }
    
    .offcanvas-header {
        border-bottom: 1px solid var(--border) !important;
        padding: 16px 20px !important;
    }
    
    .offcanvas-body {
        padding: 20px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .main-nav {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }
    
    .main-nav .nav-item {
        width: 100%;
    }

    .main-nav .nav-link {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        padding: 12px 0 12px 4px;
        border-bottom: 1px solid var(--border);
        border-top: none !important;
        display: block;
        transition: all var(--transition);
        text-align: left;
    }
    
    .main-nav .nav-item:first-child .nav-link {
        border-top: none !important;
    }
    
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        color: var(--primary);
        border-bottom-color: var(--border) !important;
        padding-left: 12px;
        background-color: rgba(26, 60, 52, 0.03);
    }
}


/* ==========================================
   HERO
   ========================================== */
.hero-section {
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.hero-inner {
    /* min-height: 905px; */
    background-color: var(--bg-light);
    background-image: url('../img/banner-img.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-text-col {
    padding: 50px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.hero-highlight {
    color: var(--accent);
}

.hero-sub {
    color: var(--text-mid);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-item i {
    font-size: 24px;
    color: var(--text-dark);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.feature-text small {
    font-size: 11px;
    color: var(--text-mid);
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition);
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    color: var(--white);
}

.btn-hero-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all var(--transition);
}

.btn-hero-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Social proof bubble */
.hero-social-proof.vertical-proof {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 100px;
    width: 150px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.vertical-proof .hero-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.vertical-proof .hero-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    object-fit: cover;
}

.vertical-proof .hero-avatars img:first-child {
    margin-left: 0;
}

.vertical-proof .proof-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.vertical-proof .proof-text {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.2;
}

.vertical-proof .proof-heart {
    color: var(--accent);
    font-size: 16px;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .hero-inner {
        min-height: auto;
    }

    .hero-text-col {
        padding: 30px 0;
    }

    .hero-pet-img {
        display: none;
    }
}

/* ==========================================
   TRUST STRIP
   ========================================== */
.trust-strip-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    font-size: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-item small {
    font-size: 12px;
    color: var(--text-mid);
}

@media (max-width: 767px) {
    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 10px 12px;
    }
}

/* ==========================================
   SECTIONS
   ========================================== */
.section-gap {
    padding: 40px 0;
}

.bg-light-subtle {
    background: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.view-all-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    transition: color var(--transition);
}

.view-all-link:hover {
    color: var(--accent);
}

/* ==========================================
   CATEGORY CARDS
   ========================================== */
.category-card {
    border-radius: 16px;
    padding: 16px 16px 20px;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cat-img-wrap {
    width: 100%;
    height: 200px;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 10px;
}

.dog-bg {
    background: var(--cat-dog);
}

.cat-bg {
    background: var(--cat-cat);
}

.other-bg {
    background: var(--cat-other);
}

.food-bg {
    background: var(--cat-food);
}

.toy-bg {
    background: var(--cat-toy);
}

.groom-bg {
    background: var(--cat-groom);
}

.health-bg {
    background: var(--cat-health);
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.category-card h6 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.cat-shop-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin-top: auto;
}

.cat-shop-link:hover {
    color: var(--accent);
}

/* ==========================================
   PRODUCTS SLIDER
   ========================================== */
.products-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 4px 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.product-card-wrap {
    flex: 0 0 200px;
}

.product-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    position: relative;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.prod-badge-off {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    line-height: 1.1;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.prod-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-mid);
    z-index: 1;
    transition: all var(--transition);
}

.prod-wish:hover,
.prod-wish.active {
    color: var(--red-sale);
    border-color: var(--red-sale);
}

.prod-img-wrap {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* Cart Page */
.cart-main {
    padding: 80px 0;
}

.cart-page-header {
    text-align: left;
    margin-bottom: 32px;
}

.cart-breadcrumb {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-title {
    font-size: 34px;
    margin: 0 0 10px;
}

.cart-description {
    margin: 0;
    color: var(--text-mid);
    font-size: 15px;
}

.cart-items-wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 28px;
}

.cart-empty-card {
    text-align: center;
    padding: 60px 30px;
}

.cart-empty-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cart-empty-card p {
    margin-bottom: 22px;
    color: var(--text-mid);
}

.cart-summary-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

.cart-summary-card h3 {
    margin: 0 0 22px;
    font-size: 22px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cart-summary-row.total-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f0ee;
    font-size: 18px;
}

.cart-summary-note {
    margin: 24px 0 0;
    color: var(--text-mid);
    font-size: 13px;
}

.checkout-main {
    padding: 80px 0;
}

.checkout-header {
    text-align: left;
    margin-bottom: 32px;
}

.checkout-breadcrumb {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.checkout-title {
    font-size: 34px;
    margin: 0 0 10px;
}

.checkout-description {
    margin: 0;
    color: var(--text-mid);
    font-size: 15px;
}

.checkout-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 32px;
}

.checkout-card-title {
    margin-bottom: 28px;
    font-size: 22px;
    font-weight: 700;
}

.payment-card {
    display: grid;
    gap: 22px;
}

.payment-note {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 24px;
    color: var(--text-mid);
    font-size: 14px;
}

.payment-option-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 20px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-option-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(26, 60, 52, 0.08);
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.payment-option input {
    margin-top: 6px;
    width: 18px;
    height: 18px;
}

.payment-option strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}

.payment-option small {
    display: block;
    color: var(--text-mid);
    margin-top: 4px;
    font-size: 13px;
}

.checkout-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.checkout-input {
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 16px;
    color: var(--text-dark);
    background: #fff;
}

.checkout-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 60, 52, .08);
}

.checkout-action-btn {
    min-width: 220px;
    border-radius: 12px;
    padding: 14px 24px;
}

.checkout-summary-card {
    position: sticky;
    top: 90px;
}

.checkout-product-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f0ee;
    margin-bottom: 20px;
}

.checkout-product-thumb {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    background: #f8f6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.checkout-product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.checkout-product-info strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.checkout-product-info small {
    color: var(--text-mid);
    font-size: 13px;
}

.checkout-product-price {
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}

.checkout-products-list {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.checkout-product-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #f1f0ee;
    padding-bottom: 18px;
}

.checkout-empty-card {
    padding: 30px 20px;
    background: var(--bg-light);
    border: 1px dashed var(--border);
    border-radius: 18px;
    text-align: center;
    color: var(--text-mid);
}

@media (max-width: 991px) {
    .checkout-product-card {
        grid-template-columns: 85px 1fr;
    }

    .checkout-product-price {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .checkout-main {
        padding: 60px 0;
    }

    .checkout-summary-card {
        position: static;
    }
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #f1f0ee;
    padding: 18px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-thumb {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    background: #f8f6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details h5 {
    margin: 0 0 8px;
    font-size: 16px;
}

.cart-item-details p {
    margin: 0 0 14px;
    color: var(--text-mid);
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px 10px;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
}

.cart-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}

.cart-item-actions {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.cart-item-actions strong {
    font-size: 16px;
}

.cart-item-remove {
    border: none;
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
    padding: 0;
}

@media (max-width: 991px) {
    .cart-item {
        grid-template-columns: 90px 1fr;
    }

    .cart-item-actions {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .cart-main {
        padding: 60px 0;
    }

    .cart-summary-card,
    .cart-items-wrap {
        padding: 22px;
    }
}


.prod-info h6 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 6px;
    flex: 1;
}

.prod-rating {
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 6px;
}

.prod-rating small {
    color: var(--text-light);
    margin-left: 2px;
}

.prod-price {
    margin-bottom: 10px;
}

.price-current {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-right: 6px;
}

.price-original {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-add-cart {
    background: var(--accent);
    border: 1.5px solid var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 7px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-add-cart:hover {
    background: #d48b10;
    border-color: #d48b10;
    color: var(--white);
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.slider-prev {
    left: -18px;
}

.slider-next {
    right: -18px;
}

@media (max-width: 576px) {
    .slider-prev {
        left: 0;
    }

    .slider-next {
        right: 0;
    }

    .product-card-wrap {
        flex: 0 0 160px;
    }
}

/* ==========================================
   PROMO BANNER
   ========================================== */
.promo-banner {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-pet-img {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 55%;
    pointer-events: none;
    opacity: .25;
}

.promo-pet-img img {
    width: 100%;
}

.promo-label {
    font-size: 13px;
    opacity: .8;
    margin-bottom: 4px;
}

.promo-percent {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.promo-code-box {
    display: inline-block;
    border: 1.5px dashed var(--accent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
}

.promo-code-box strong {
    font-size: 14px;
}

.btn-promo {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    display: inline-block;
    width: fit-content;
    transition: all var(--transition);
    margin-bottom: 8px;
}

.btn-promo:hover {
    background: var(--accent);
    color: var(--white);
}

.promo-hurry {
    font-size: 11px;
    opacity: .7;
    margin: 0;
}

/* ==========================================
   VALUE CARDS
   ========================================== */
.value-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    transition: all var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 0 auto 12px;
}

.value-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================
   TESTIMONIALS + STATS
   ========================================== */
.testimonial-section {
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.quote-mark {
    font-size: 60px;
    font-family: var(--font-display);
    color: var(--accent);
    line-height: .8;
    display: block;
    margin-bottom: 4px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 10px;
}

.testi-rating {
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 14px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-user strong {
    font-size: 14px;
}

.testi-pet-img {
    width: 90%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 320px;
}

/* Stats */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-card i {
    font-size: 24px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.stat-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 12px;
    color: var(--text-mid);
    margin: 0;
}

/* ==========================================
   BLOG CARDS
   ========================================== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.blog-img-wrap {
    height: 160px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-body {
    padding: 14px;
}

.blog-date {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 6px;
    display: block;
}

.blog-body h6 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.blog-read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-read-more:hover {
    color: var(--accent);
}

/* ==========================================
   BOTTOM FEATURES STRIP
   ========================================== */
.bottom-features-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.bottom-features-strip .col-6,
.bottom-features-strip .col-md-4,
.bottom-features-strip .col-lg-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bottom-features-strip i {
    font-size: 24px;
    color: var(--primary);
}

.bottom-features-strip strong {
    font-size: 13px;
    display: block;
}

.bottom-features-strip small {
    font-size: 11px;
    color: var(--text-mid);
}

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter-section {
    background: var(--primary);
    padding: 40px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-pet {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.newsletter-pet img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 6px;
}

.newsletter-text p {
    font-size: 13px;
    opacity: .8;
    margin: 0;
}

.newsletter-form {
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 12px 16px;
    font-size: 13px;
}

.btn-newsletter {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 20px;
    border: none;
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
    transition: background var(--transition);
}

.btn-newsletter:hover {
    background: var(--accent-light);
    color: var(--text-dark);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #0f2520;
    color: rgba(255, 255, 255, .75);
    padding: 50px 0 0;
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: rgba(255, 255, 255, .5);
}

.footer-about {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-heading {
    font-size: 13px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-links li {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

.footer-payments {
    display: flex;
    gap: 8px;
}

.footer-payments span {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--accent);
}

/* ==========================================
   UTILITIES & RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .category-row {
        justify-content: center;
    }

    .hero-social-proof {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-gap {
        padding: 28px 0;
    }

    .hero-text-col {
        padding: 24px 0 20px;
    }

    .promo-percent {
        font-size: 38px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .scroll-top-btn {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 575px) {
    .product-card-wrap {
        flex: 0 0 155px;
    }

    .prod-img-wrap {
        height: 100px;
    }

    .prod-img-wrap img {
        max-height: 100px;
    }
}







/* ==========================================
   dog-food.css
   Scoped styles for the Dog Food page only.
   All classes prefixed with .df- so they
   NEVER conflict with the main site CSS.
   ========================================== */

/* ── Page wrapper ─────────────────────── */
.df-page .df-main {
    background: #f9f7f4;
    padding-bottom: 40px;
}

/* ── Breadcrumb ───────────────────────── */
.df-breadcrumb {
    padding: 14px 0 10px;
}

.df-breadcrumb .breadcrumb {
    font-size: 13px;
    margin: 0;
    background: none;
    padding: 0;
}

.df-breadcrumb .breadcrumb-item a {
    color: #555;
    text-decoration: none;
}

.df-breadcrumb .breadcrumb-item a:hover {
    color: #e8a020;
}

.df-breadcrumb .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 700;
}

.df-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #aaa;
}

/* ── Hero Banner ──────────────────────── */
.df-hero-banner {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 220px;
    margin-bottom: 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.df-hero-text {
    position: relative;
    z-index: 2;
    flex: 0 0 55%;
    padding: 28px 32px;
    margin-top: 14rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.df-hero-filters-label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 4px;
}

.df-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 8px;
}

.df-hero-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.df-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.df-tag {
    background: #fff;
    border: 1.5px solid #d0ccc4;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.df-tag:hover,
.df-tag.active {
    background: #1a3c34;
    color: #fff;
    border-color: #1a3c34;
}

.df-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: visible;
}

.df-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    border-radius: 16px;
}

/* Paw bubble overlay */
.df-hero-paw-bubble {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #e8a020;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    z-index: 3;
    border: 2px solid #f5efe0;
}

@media (max-width: 767px) {
    .df-hero-banner {
        flex-direction: column;
        min-height: auto;
        background: #fbf4ed;
        border: 1px solid #ebdcd0;
        border-radius: 16px;
        overflow: hidden;
    }

    .df-hero-text {
        flex: none;
        width: 100%;
        padding: 20px;
    }

    .df-hero-img {
        position: relative;
        height: 160px;
        width: 100%;
    }

    .df-hero-paw-bubble {
        top: 10px;
        left: 10px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ── Layout ───────────────────────────── */
.df-layout {
    margin-top: 0;
}

/* ── Sidebar ──────────────────────────── */
.df-sidebar {
    padding-right: 16px;
    padding-bottom: 20px;
}

.df-filter-box {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e4e0d8;
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.df-filter-header {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    padding: 16px 18px 14px;
    border-bottom: 1px solid #e4e0d8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.df-filter-header i {
    color: #1a3c34;
    font-size: 16px;
}

.df-filter-group {
    border-bottom: 1px solid #e4e0d8;
}

.df-filter-group:last-child {
    border-bottom: none;
}

.df-filter-group-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.df-filter-group-title i {
    font-size: 14px;
    color: #555;
}

.df-chevron {
    font-size: 11px;
    color: #999;
    transition: transform .2s;
}

.collapsed .df-chevron {
    transform: rotate(180deg);
}

.df-filter-options {
    padding: 4px 18px 14px;
}

/* Radio */
.df-radio-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #444;
    padding: 5px 0;
    cursor: pointer;
    width: 100%;
}

.df-radio {
    accent-color: #1a3c34;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Checkbox */
.df-check-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #444;
    padding: 5px 0;
    cursor: pointer;
    width: 100%;
}

.df-check {
    accent-color: #1a3c34;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.df-check-icon {
    color: #1a3c34;
    font-size: 13px;
}

.df-arrow-icon {
    color: #999;
    font-size: 12px;
}

.df-show-more {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding: 3px 0;
    text-decoration: none;
}

.df-show-more:hover {
    color: #e8a020;
}

/* Price Range */
.df-price-slider-wrap {
    padding: 6px 0 4px;
}

.df-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #1a3c34 0%, #1a3c34 var(--val, 100%), #ddd var(--val, 100%), #ddd 100%);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin-bottom: 8px;
}

.df-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1a3c34;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.df-price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #444;
}

/* Rating stars in filter */
.df-stars i {
    font-size: 12px;
    color: #e8a020;
}

/* ── Sort Bar ─────────────────────────── */
.df-products-col {
    padding-left: 4px;
}

.df-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid #e4e0d8;
    padding: 10px 16px;
    margin-bottom: 16px;
}

/* Left: active filter chips */
.df-active-filters {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.df-filter-chip {
    background: #f2ede6;
    border: 1px solid #d6d0c8;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    padding: 3px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.df-chip-remove {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.df-chip-remove:hover {
    color: #e63946;
}

.df-chip-dropdown {
    background: #f2ede6;
    border: 1px solid #d6d0c8;
    font-size: 12px;
    color: #555;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
}

/* Right: sort select */
.df-sort-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.df-sort-label {
    font-size: 13px;
    color: #555;
    white-space: nowrap;
}

.df-sort-select {
    border: 1.5px solid #d6d0c8;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    padding: 5px 28px 5px 10px;
    color: #333;
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 140px;
}

/* ── Product Cards (grid) ─────────────── */
.df-product-grid {
    padding: 0;
}

.df-prod-card {
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 14px;
    padding: 14px 12px 12px;
    position: relative;
    transition: all .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.df-prod-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .11);
    border-color: #e8a020;
    transform: translateY(-3px);
}

/* Badge */
.df-prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: .02em;
}

.df-prod-badge.orange {
    background: #e8a020;
    color: #fff;
}

.df-prod-badge.green {
    background: #1a3c34;
    color: #fff;
}

/* Wishlist top right */
.df-prod-card>.df-prod-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    z-index: 2;
    transition: all .2s;
}

.df-prod-card>.df-prod-wish:hover,
.df-prod-card>.df-prod-wish.active {
    color: #e63946;
    border-color: #e63946;
}

/* Product image */
.df-prod-img {
    /* height: 140px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 8px;
}

.df-prod-img img {
    /* max-height: 130px; */
    max-width: 100%;
    object-fit: contain;
}

/* Body */
.df-prod-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.df-prod-body h6 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 6px;
    flex: 1;
}

.df-prod-rating {
    font-size: 11px;
    color: #e8a020;
    margin-bottom: 6px;
}

.df-prod-rating small {
    color: #999;
    margin-left: 4px;
    font-size: 10px;
}

.df-prod-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.df-price-now {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
}

.df-price-old {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

.old-green {
    color: #1a7a50 !important;
    text-decoration: none !important;
    font-weight: 700;
}

/* Actions row */
.df-prod-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.df-btn-cart {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    font-family: 'Nunito', sans-serif;
    transition: all .2s;
    cursor: pointer;
}

.df-btn-cart.orange-cart {
    background: #e8a020;
    color: #fff;
}

.df-btn-cart.orange-cart:hover {
    background: #d4911c;
    color: #fff;
}

.df-btn-cart.green-cart {
    background: #1a3c34;
    color: #fff;
}

.df-btn-cart.green-cart:hover {
    background: #2d6a4f;
    color: #fff;
}

.df-wish-sm {
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #999;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

.df-wish-sm:hover,
.df-wish-sm.active {
    color: #e63946;
    border-color: #e63946;
}

/* ── Info Banner ──────────────────────── */
.df-info-banner {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e4e0d8;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 28px;
    margin-bottom: 32px;
}

.df-info-text {
    flex: 1;
    padding: 28px 32px;
}

.df-info-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.df-info-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.df-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.df-info-list li {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.df-info-list i {
    color: #1a3c34;
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

.df-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.df-read-more:hover {
    color: #e8a020;
}

.df-info-img {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
    align-self: stretch;
    overflow: hidden;
}

.df-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.df-check-stock-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all .2s;
}

.df-check-stock-btn:hover {
    background: #1a3c34;
    color: #fff;
}

@media (max-width: 767px) {
    .df-info-banner {
        flex-direction: column;
    }

    .df-info-img {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 180px;
    }

    .df-info-text {
        padding: 20px;
    }
}

/* ── Top Picks Section ────────────────── */
.df-top-picks {
    margin-bottom: 20px;
}

.df-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.df-section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.df-view-all {
    font-size: 13px;
    font-weight: 700;
    color: #1a3c34;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.df-view-all:hover {
    color: #e8a020;
}

/* Slider */
.df-picks-slider-wrap {
    position: relative;
}

.df-picks-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 0 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.df-picks-slider::-webkit-scrollbar {
    display: none;
}

.df-pick-col {
    flex: 0 0 220px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
}

.df-pick-card {
    width: 100%;
}

/* Pick card */
.df-pick-card {
    flex: 0 0 200px;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 14px;
    padding: 14px 12px 12px;
    position: relative;
    transition: all .25s ease;
}

.df-pick-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    border-color: #e8a020;
    transform: translateY(-3px);
}

.df-pick-card>.df-prod-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    z-index: 2;
    transition: all .2s;
}

.df-pick-card>.df-prod-wish:hover {
    color: #e63946;
    border-color: #e63946;
}

.df-pick-img {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.df-pick-img img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.df-pick-card h6 {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.df-pick-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.df-pick-card .bottom-wish {
    position: absolute;
    bottom: 48px;
    right: 12px;
}

/* Slider Arrows */
.df-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #444;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    transition: all .2s;
}

.df-slider-btn:hover {
    background: #1a3c34;
    color: #fff;
    border-color: #1a3c34;
}

.df-slider-prev {
    left: -18px;
}

.df-slider-next {
    right: -18px;
}

@media (max-width: 576px) {
    .df-pick-card {
        flex: 0 0 160px;
    }

    .df-slider-prev {
        left: 0;
    }

    .df-slider-next {
        right: 0;
    }

    .df-prod-img {
        height: 110px;
    }
}

/* ── Mobile Filter Toggle ─────────────── */
.df-mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a3c34;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    z-index: 500;
    cursor: pointer;
}

@media (max-width: 991px) {
    .df-mobile-filter-btn {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* Responsive image helpers */
img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.pd-gallery img,
.pd-thumb img,
.df-prod-img img,
.df-pick-img img,
.category-card img,
.hero-avatars img,
.df-info-img img,
.pd-review-user img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) {

    .df-prod-img,
    .df-pick-img,
    .df-info-img,
    .category-card .cat-img-wrap {
        min-height: auto;
    }
}

/* Mobile sidebar drawer */
.df-sidebar-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    transition: left .3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, .12);
    padding-bottom: 40px;
}

.df-sidebar-drawer.open {
    left: 0;
}

.df-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1040;
    display: none;
}

.df-drawer-overlay.active {
    display: block;
}

.df-drawer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}