:root {
    --primary-green: #00A055;
    --primary-yellow: #FFC107;
    --accent-teal: #008080;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --soft-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Custom Navbar */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-green) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: #008a47;
    border-color: #008a47;
    color: #fff;
}

/* Cards */
/* Cards */
.product-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

/* Category Cards - new */
.category-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f2f5);
    box-shadow:
        5px 5px 10px #d1d9e6,
        -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow:
        8px 8px 16px #d1d9e6,
        -8px -8px 16px #ffffff;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}


/* Recommendation Badge */
.recommendation-badge {
    z-index: 10;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Hero Section */
.hero-section {
    background: linear-gradient(120deg, #e0f7fa 0%, #e8f5e9 100%);
    padding: 5rem 0;
    border-radius: 0 0 40px 40px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* Abstract shapes for hero background */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(0, 160, 85, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-title {
    font-weight: 800;
    color: #2d3436;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, #00A055, #008080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Chat Widget Button */
.chat-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 160, 85, 0.3);
    z-index: 1000;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-widget-btn:hover {
    background: #008a47;
    transform: scale(1.1);
}

/* Modal Wizard Specifics */
.wizard-step {
    animation: fadeInStep 0.3s ease-in-out;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-check:checked+.btn-outline-success {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.btn-check:checked+.btn-outline-success i {
    color: white;
}

/* Sticky Pet Context Bar */
#pet-context-bar {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}