
        /* Global Styles */
        :root {
            --primary: #e67e22;
            --secondary: #f39c12;
            --accent: #d35400;
            --light: #fff9f5;
            --dark: #5a3e36;
            --text: #7a4b3a;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: var(--white);
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            display: inline-block;
            padding: 0 20px;
            background: var(--light);
            position: relative;
            z-index: 1;
            font-family: 'Dancing Script', cursive;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            z-index: 0;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to right, #f8e3d4, #fcefe6);
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 10px 0;
            background: rgba(248, 227, 212, 0.95);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-right: 10px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-10px);}
            60% {transform: translateY(-5px);}
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: bold;
        }
        
        .logo span {
            color: var(--dark);
            font-weight: normal;
            font-size: 1.4rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 5px;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: "🐾";
            margin-left: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            opacity: 1;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
        }
        
        .search-icon, .cart-icon {
            position: relative;
            background: var(--primary);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 15px;
        }
        
        .search-icon:hover, .cart-icon:hover {
            transform: scale(1.1);
            background: var(--accent);
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff5252;
            color: var(--white);
            font-size: 0.7rem;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: var(--primary);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(255, 249, 245, 0.9), rgba(255, 249, 245, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 C25,15 35,15 40,20 C45,25 45,35 40,40 C35,45 25,45 20,40 C15,35 15,25 20,20 Z" fill="none" stroke="%23f8e3d4" stroke-width="2"/></svg>');
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="20" viewBox="0 0 40 20"><path d="M0,0 C10,15 30,15 40,0 L40,20 L0,20 Z" fill="%23d17b49"/></svg>') repeat-x;
            background-size: 40px 20px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            font-family: 'Dancing Script', cursive;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text);
        }
        
        /* Why Choose Us Section */
        .why-choose {
            background: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .feature-card h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: var(--text);
        }
        
        /* Puppy Packages */
        .packages {
            background: linear-gradient(to right, #fcefe6, #f8e3d4);
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .package-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
        }
        
        .package-header {
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: var(--white);
            padding: 20px;
        }
        
        .package-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .package-price.special {
            color: #ffeb3b;
        }
        
        .package-body {
            padding: 30px 20px;
        }
        
        .package-body ul {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .package-body ul li {
            padding: 10px 0;
            border-bottom: 1px dashed #f0f0f0;
        }
        
        .package-body ul li:last-child {
            border-bottom: none;
        }
        
        /* Popular Puppies */
        .popular-puppies {
            background: var(--white);
        }
        
        .puppy-slider {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 20px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--light);
        }
        
        .puppy-slider::-webkit-scrollbar {
            height: 8px;
        }
        
        .puppy-slider::-webkit-scrollbar-track {
            background: var(--light);
            border-radius: 10px;
        }
        
        .puppy-slider::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        .puppy-card {
            flex: 0 0 auto;
            width: 300px;
            background: var(--light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .puppy-images {
            height: 200px;
            background: linear-gradient(45deg, #fcefe6, #f8e3d4);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .puppy-images i {
            font-size: 4rem;
            color: var(--primary);
        }
        
        .puppy-tabs {
            display: flex;
            justify-content: center;
            padding: 10px;
            background: var(--white);
        }
        
        .puppy-tab {
            padding: 5px 15px;
            margin: 0 5px;
            border-radius: 20px;
            background: #f0f0f0;
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .puppy-tab.active {
            background: var(--primary);
            color: var(--white);
        }
        
        .puppy-info {
            padding: 20px;
        }
        
        .puppy-info h3 {
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .puppy-breed {
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .puppy-pricing {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .current-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }
        
        .original-price {
            text-decoration: line-through;
            color: #999;
        }
        
        .puppy-actions {
            display: flex;
            gap: 10px;
        }
        
        /* Testimonials */
        .testimonials {
            background: linear-gradient(to right, #fcefe6, #f8e3d4);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        
        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--white);
            font-size: 1.2rem;
        }
        
        .author-name h4 {
            color: var(--dark);
        }
        
        .author-name p {
            color: var(--primary);
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(to right, #5a3e36, #3e2c25);
            color: var(--white);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="50" viewBox="0 0 100 50"><path d="M0,50 L20,30 C40,10 60,10 80,30 L100,50 Z" fill="%23d17b49"/></svg>') repeat-x;
            background-size: 100px 50px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: var(--primary);
        }
        
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-column p, .footer-column li {
            margin-bottom: 10px;
            color: #f8e3d4;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .footer-column ul li::before {
            content: "🐾";
            margin-right: 10px;
            font-size: 0.8rem;
        }
        
        .footer-column a {
            color: #f8e3d4;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 30px 0 0 30px;
            outline: none;
        }
        
        .newsletter-form button {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            background: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #f8e3d4;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content, .health-content {
                flex-direction: column;
            }
            
            .about-image, .health-image {
                order: -1;
            }
            
            .about-image div {
                width: 280px;
                height: 280px;
            }
            
            .about-image i {
                font-size: 8rem;
            }
            
            .health-image div {
                height: 250px;
            }
            
            .health-image i {
                font-size: 6rem;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 20px;
                box-shadow: var(--shadow);
                flex-direction: column;
            }
            
            nav.active {
                display: flex;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 30px;
                padding: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .logo span {
                font-size: 1.2rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .about-image div {
                width: 220px;
                height: 220px;
            }
            
            .about-image i {
                font-size: 6rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .package-header h3 {
                font-size: 1.5rem;
            }
            
            .package-price {
                font-size: 2rem;
            }
        }

        
 


.main-img{width:100%;height:250px;object-fit:contain;background:#f5f5f5;border-radius:8px;cursor:pointer;margin-bottom:1rem}
.thumbnails{display:flex;gap:10px;margin-bottom:1rem}
.thumbnail{width:60px;height:60px;object-fit:cover;border:1px solid #ddd;border-radius:4px;cursor:pointer}
.thumbnail:hover{border-color:var(--secondary)}






.cart-icon {
    position: relative;
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 15px;
    box-shadow: var(--shadow);
}

.cart-icon:hover {
    transform: scale(1.1);
    background: var(--accent);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff5252;
    color: var(--white);
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: flex-end;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--light);
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    position: relative;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.cart-overlay.active .cart-sidebar {
    transform: translateX(0);
}

.close-cart {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.close-cart:hover {
    transform: rotate(90deg);
}

.cart-title {
    text-align: center;
    margin: 20px 0 30px;
    position: relative;
}

.cart-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-family: 'Dancing Script', cursive;
}

.cart-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.cart-items {
    margin-bottom: 30px;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: var(--text);
}

.empty-cart i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart p {
    font-size: 1.2rem;
}

.cart-item {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #fcefe6, #f8e3d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.cart-item-info {
    flex: 1;
    padding: 15px;
}

.cart-item-name {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.cart-item-spec {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 10px;
}

.cart-item-price {
    font-weight: bold;
    color: var(--accent);
    font-size: 1.1rem;
}

.remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff5252;
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.remove-item:hover {
    transform: scale(1.1);
}

.cart-summary {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.summary-total {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--accent);
    border-bottom: none;
    padding-top: 10px;
    border-top: 2px solid var(--primary);
}

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cart-btn {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.clear-cart {
    background: #f8f8f8;
    color: var(--text);
}

.clear-cart:hover {
    background: #eeeeee;
}

.adopt-now {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--white);
    box-shadow: var(--shadow);
}

.adopt-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
}

    /* Adoption Success Message */
    .adoption-success {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background: var(--white);
        padding: 30px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        text-align: center;
        z-index: 1100;
        transition: transform 0.4s ease;
        max-width: 400px;
        width: 90%;
    }
    
    .adoption-success.active {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .success-icon {
        font-size: 4rem;
        color: #4caf50;
        margin-bottom: 20px;
    }
    
    .adoption-success h3 {
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 15px;
    }
    
    .adoption-success p {
        margin-bottom: 25px;
        color: var(--text);
    }
    
    .success-btn {
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 12px 25px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 600;
        transition: var(--transition);
    }
    
    .success-btn:hover {
        background: var(--accent);
    }

    .add-to-cart {
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 600;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .add-to-cart:hover {
        background: var(--accent);
        transform: scale(1.05);
    }
  

    .main-img{width:100%;height:250px;object-fit:contain;background:#f5f5f5;border-radius:8px;cursor:pointer;margin-bottom:1rem}
.thumbnails{display:flex;gap:10px;margin-bottom:1rem}
.thumbnail{width:60px;height:60px;object-fit:cover;border:1px solid #ddd;border-radius:4px;cursor:pointer}
.thumbnail:hover{border-color:var(--secondary)}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px dotted #ffb8b8;
}

