:root {
    --primary: #ff6b6b; /* Soft pink */
    --secondary: #ffb8b8; /* Light pink */
    --dark: #333;
    --light: #fff;
    --accent: #4ecdc4; /* Mint green */
    --gray: #f5f5f5;
    --beige: #fff5e6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--beige);
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
i, em {
    font-style: italic;
}

/* PAW PRINT DECORATIONS */
.paw-decoration {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 5px;
}

/* HEADER WITH PAW BORDER */
header {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px dotted var(--primary);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo span {
    color: var(--accent);
}
.logo::before {
    content: "🐾";
    margin-right: 10px;
    font-size: 1.5rem;
}

/* SERVICES SECTION */
.services {
    padding: 3rem 5%;
    background: var(--light);
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--beige);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* DREAM PACKAGES */
.dream-packages {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('download (2).jpeg');
}
.package-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.package-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}
.package-card::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    transform: rotate(45deg);
    z-index: 1;
}
.package-card::after {
    content: "🐾";
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    color: white;
}
.package-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1rem 0;
}

/* REST OF YOUR CSS (from previous example) */
/* ... (include all previous CSS styles) ... */

/* ENHANCED FONTS */
.hero h1 {
    font-size: 3.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.featured-puppies h2, .testimonials h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}
.featured-puppies h2::after, .testimonials h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background: var(--primary);
    margin: 10px auto;
}

:root {
    --primary: #ff6b6b; /* Soft pink */
    --secondary: #ffb8b8; /* Light pink */
    --dark: #333;
    --light: #fff;
    --accent: #4ecdc4; /* Mint green */
    --gray: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--gray);
}
/* HEADER */
header {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.logo span {
    color: var(--accent);
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: var(--primary);
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--light);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    padding: 12px 16px;
    display: block;
    color: var(--dark);
}
.dropdown-content a:hover {
    background: var(--gray);
}
.cta-button {
    background: var(--primary);
    color: var(--light);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}
.cta-button:hover {
    background: #ff5252;
}
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('background.jpeg') no-repeat center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light);
    padding: 0 5%;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero h1 span {
    color: var(--accent);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
/* FEATURED PUPPIES */
.featured-puppies {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.featured-puppies h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--primary);
}
.breed-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.filter-btn {
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--primary);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--light);
}
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.puppy-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.puppy-card:hover {
    transform: translateY(-10px);
}
.puppy-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.puppy-card h3 {
    padding: 1rem 1rem 0;
    color: var(--primary);
}
.price {
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: 0.5rem;
}
.puppy-card .cta-button {
    display: block;
    margin: 1rem;
    text-align: center;
}
/* TESTIMONIALS */
.testimonials {
    background: var(--light);
    padding: 5rem 5%;
    text-align: center;
}
.testimonials h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}
.author {
    font-weight: 700;
    color: var(--primary);
}
/* FOOTER */
footer {
    background: #333 url('download (2).jpeg');
    color: white;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}
.footer-overlay {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}
.footer-section h3::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: #4ecdc4;
    margin-top: 5px;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 20px;
}
.footer-section ul li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}
.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #4ecdc4;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
    display: inline-block;
}
.social-links a:hover {
    color: #ff6b6b;
    transform: translateY(-3px);
}
.newsletter-form input {
    padding: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
}
.newsletter-form button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover {
    background: #ff5252;
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* PRODUCT GRID STYLES */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px dotted #ffb8b8;
}
.product-info {
    padding: 1.5rem;
}
.product-name {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.product-breed {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    display: block;
}
.product-price {
    margin: 1rem 0;
}
.current-price {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: bold;
}
.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 0.5rem;
    font-size: 1rem;
}
.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}
.add-to-cart {
    background: #4ecdc4;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.add-to-cart:hover {
    background: #3dbeb5;
}
.view-details {
    color: #666;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}
.view-details:hover {
    color: #ff6b6b;
}
.product-details-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.product-details-dropdown.active {
    max-height: 500px;
}
.details-content {
    padding: 0 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.details-description h4 {
    color: #333;
    margin-bottom: 0.5rem;
}
.details-description ul {
    list-style-type: none;
}
.details-description ul li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.2rem;
}
.details-description ul li::before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}
/* MOBILE STYLES */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--light);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 1rem 5%;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    nav ul.show {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
    }
}
.top-bar {
    background-color: var(--darker);
    color: var(--text);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.top-contact a {
    color: var(--text);
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

.top-contact a:hover {
    color: var(--accent);
}

.top-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-icons a {
    color: var(--text);
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}
:root {
    --primary: #ff6b6b; /* Soft pink */
    --secondary: #ffb8b8; /* Light pink */
    --dark: #333;
    --light: #fff;
    --accent: #4ecdc4; /* Mint green */
    --gray: #f5f5f5;
    --beige: #fff5e6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--beige);
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
i, em {
    font-style: italic;
}

/* PAW PRINT DECORATIONS */
.paw-decoration {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 5px;
}

/* HEADER WITH PAW BORDER */
header {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px dotted var(--primary);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo span {
    color: var(--accent);
}
.logo::before {
    content: "🐾";
    margin-right: 10px;
    font-size: 1.5rem;
}

/* SERVICES SECTION */
.services {
    padding: 3rem 5%;
    background: var(--light);
    text-align: center;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--beige);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* DREAM PACKAGES */
.dream-packages {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('download (2).jpeg');
}
.package-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.package-card {
    background: var(--light);
    border-radius: 15px;
    padding: 2rem;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}
.package-card::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    transform: rotate(45deg);
    z-index: 1;
}
.package-card::after {
    content: "🐾";
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    color: white;
}
.package-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1rem 0;
}

/* REST OF YOUR CSS (from previous example) */
/* ... (include all previous CSS styles) ... */

/* ENHANCED FONTS */
.hero h1 {
    font-size: 3.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.featured-puppies h2, .testimonials h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}
.featured-puppies h2::after, .testimonials h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background: var(--primary);
    margin: 10px auto;
}

:root {
    --primary: #ff6b6b; /* Soft pink */
    --secondary: #ffb8b8; /* Light pink */
    --dark: #333;
    --light: #fff;
    --accent: #4ecdc4; /* Mint green */
    --gray: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--gray);
}
/* HEADER */
header {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.logo span {
    color: var(--accent);
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}
nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: var(--primary);
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--light);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    padding: 12px 16px;
    display: block;
    color: var(--dark);
}
.dropdown-content a:hover {
    background: var(--gray);
}
.cta-button {
    background: var(--primary);
    color: var(--light);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}
.cta-button:hover {
    background: #ff5252;
}
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('background.jpeg') no-repeat center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light);
    padding: 0 5%;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero h1 span {
    color: var(--accent);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
/* FEATURED PUPPIES */
.featured-puppies {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.featured-puppies h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: var(--primary);
}
.breed-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.filter-btn {
    padding: 0.5rem 1.2rem;
    border: 2px solid var(--primary);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--light);
}
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.puppy-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.puppy-card:hover {
    transform: translateY(-10px);
}
.puppy-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.puppy-card h3 {
    padding: 1rem 1rem 0;
    color: var(--primary);
}
.price {
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: 0.5rem;
}
.puppy-card .cta-button {
    display: block;
    margin: 1rem;
    text-align: center;
}
/* TESTIMONIALS */
.testimonials {
    background: var(--light);
    padding: 5rem 5%;
    text-align: center;
}
.testimonials h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}
.author {
    font-weight: 700;
    color: var(--primary);
}
/* FOOTER */
footer {
    background: #333 url('download (2).jpeg');
    color: white;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}
.footer-overlay {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}
.footer-section h3::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: #4ecdc4;
    margin-top: 5px;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 20px;
}
.footer-section ul li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}
.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #4ecdc4;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
    display: inline-block;
}
.social-links a:hover {
    color: #ff6b6b;
    transform: translateY(-3px);
}
.newsletter-form input {
    padding: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
}
.newsletter-form button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover {
    background: #ff5252;
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* PRODUCT GRID STYLES */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px dotted #ffb8b8;
}
.product-info {
    padding: 1.5rem;
}
.product-name {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.product-breed {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    display: block;
}
.product-price {
    margin: 1rem 0;
}
.current-price {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: bold;
}
.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 0.5rem;
    font-size: 1rem;
}
.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}
.add-to-cart {
    background: #4ecdc4;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.add-to-cart:hover {
    background: #3dbeb5;
}
.view-details {
    color: #666;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}
.view-details:hover {
    color: #ff6b6b;
}
.product-details-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.product-details-dropdown.active {
    max-height: 500px;
}
.details-content {
    padding: 0 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.details-description h4 {
    color: #333;
    margin-bottom: 0.5rem;
}
.details-description ul {
    list-style-type: none;
}
.details-description ul li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.2rem;
}
.details-description ul li::before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}
/* MOBILE STYLES */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--light);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 1rem 5%;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    nav ul.show {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
    }
}

 /* Cart Preview */
 .cart-preview {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--carbon);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: right 0.3s ease-out;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
}

.cart-preview.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--text);
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--secondary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background-color: var(--gray);
    border-radius: 5px;
    margin-right: 15px;
    background-size: cover;
    background-position: center;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.cart-item-price {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.qty-btn {
    background-color: var(--gray);
    color: var(--text);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: var(--primary);
}

.qty-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    background-color: var(--carbon);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 3px;
}

.cart-item-remove {
    color: var(--secondary);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #ff0000;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-btn {
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.cart-btn-checkout {
    background-color: var(--secondary);
    color: var(--light);
    border: none;
}

.cart-btn-checkout:hover {
    background-color: #c0102b;
}

.cart-btn-view {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.cart-btn-view:hover {
    background-color: var(--gray);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.top-icons a {
    color: var(--text);
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}


.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)}
