/* Template petshop Styles */
:root {
            --pet-primary: #ff8a5c;
            --pet-primary-hover: #e5764b;
            --pet-secondary: #4ca3a3;
            --pet-secondary-hover: #3b8787;
            --pet-light: #fffbf7;
            --pet-dark: #2d2621;
            --pet-muted: #8c7f75;
            --pet-accent-soft: rgba(255, 138, 92, 0.08);
            --pet-secondary-soft: rgba(76, 163, 163, 0.08);
            
            --font-title: 'Raleway', sans-serif;
            --font-body: 'Montserrat', sans-serif;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--pet-light);
            color: var(--pet-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6, .font-title {
            font-family: var(--font-title);
            font-weight: 700;
        }

        .text-primary-pet { color: var(--pet-primary) !important; }
        .text-secondary-pet { color: var(--pet-secondary) !important; }
        .bg-primary-pet { background-color: var(--pet-primary) !important; }
        .bg-secondary-pet { background-color: var(--pet-secondary) !important; }
        
        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fffbf7;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.5s ease;
        }
        .loader-paw {
            font-size: 4rem;
            color: var(--pet-primary);
            animation: pulse-paw 1.2s ease-in-out infinite;
        }
        @keyframes pulse-paw {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
        }

        /* Promo Bar */
        .promo-bar {
            background-color: var(--pet-secondary);
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 8px 0;
            text-align: center;
        }

        /* Navbar Customization */
        .navbar-pet {
            background-color: rgba(255, 251, 247, 0.95) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(45, 38, 33, 0.05);
            transition: 0.4s;
            padding: 15px 0;
        }
        .navbar-pet.scrolled {
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(45, 38, 33, 0.05);
        }
        .navbar-brand-pet {
            font-size: 1.6rem;
            font-family: var(--font-title);
            font-weight: 700;
            color: var(--pet-dark) !important;
            text-decoration: none !important;
        }
        .navbar-brand-pet span {
            color: var(--pet-primary);
        }
        .nav-link-pet {
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--pet-dark) !important;
            padding: 8px 16px !important;
            transition: 0.3s;
            position: relative;
            text-decoration: none !important;
        }
        .nav-link-pet::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--pet-primary);
            border-radius: 2px;
            transition: 0.3s;
            transform: translateX(-50%);
        }
        .nav-link-pet:hover {
            color: var(--pet-primary) !important;
        }
        .nav-link-pet:hover::after {
            width: 30px;
        }
        
        /* Buttons */
        .btn-pet-primary {
            background-color: var(--pet-primary);
            color: #ffffff !important;
            font-family: var(--font-title);
            font-weight: 700;
            border-radius: 50px;
            padding: 12px 30px;
            border: none;
            box-shadow: 0 8px 20px rgba(255, 138, 92, 0.25);
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }
        .btn-pet-primary:hover {
            background-color: var(--pet-primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(255, 138, 92, 0.35);
        }
        .btn-pet-secondary {
            background-color: var(--pet-secondary);
            color: #ffffff !important;
            font-family: var(--font-title);
            font-weight: 700;
            border-radius: 50px;
            padding: 12px 30px;
            border: none;
            box-shadow: 0 8px 20px rgba(76, 163, 163, 0.25);
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }
        .btn-pet-secondary:hover {
            background-color: var(--pet-secondary-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(76, 163, 163, 0.35);
        }

        /* Generic Section Overrides */
        .section-padding-pet {
            padding: 100px 0;
        }
        .section-subtitle-pet {
            font-size: 0.9rem;
            color: var(--pet-primary);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 12px;
            background: var(--pet-accent-soft);
            padding: 6px 18px;
            border-radius: 50px;
        }
        .section-title-pet {
            font-size: 2.5rem;
            color: var(--pet-dark);
            margin-bottom: 25px;
            line-height: 1.3;
        }

        /* Footer Paw Animations */
        .btn-social-pet {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .btn-social-pet:hover {
            background-color: var(--pet-primary);
            color: #ffffff;
            transform: translateY(-5px) scale(1.1);
        }
        .hover-underline-pet {
            color: rgba(255, 255, 255, 0.7) !important;
            transition: 0.3s;
        }
        .hover-underline-pet:hover {
            color: var(--pet-primary) !important;
            padding-left: 6px;
        }

