/* PetExclusive Premium Styles */
:root {
    --primary-blue: #2E5C8A;
    --secondary-green: #7BA05B;
    --warm-beige: #F5E6D3;
    --accent-gold: #D4AF37;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Header & Navigation */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    will-change: transform;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--primary-blue);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    color: var(--text-dark);
}

.nav-icon:hover {
    background-color: var(--warm-beige);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.chat-toggle:hover {
    background: #1e3a5f;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 3px solid var(--accent-gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
}

.footer-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.footer-section ul li:before {
    content: '🐾';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--accent-gold);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
    background: var(--primary-blue);
    padding-left: 0.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-form input,
.newsletter-form select {
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--text-dark);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #b8941f 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.footer-bottom p {
    color: #e0e0e0;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding-left: 1rem;
}

/* Chat Veterinario */
.vet-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.vet-chat.hidden {
    display: none;
}

.chat-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
}

.user-message {
    background: var(--warm-beige);
    margin-left: 2rem;
}

.vet-message {
    background: var(--secondary-green);
    color: var(--white);
    margin-right: 2rem;
}

.chat-input {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.chat-input button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-list li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
    }
    
    .nav-dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }
    
    .dropdown-menu li {
        border: none;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-icon {
        font-size: 1rem;
        padding: 0.25rem;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .vet-chat {
        width: 280px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-actions {
        gap: 0.25rem;
    }
    
    .nav-icon {
        font-size: 0.9rem;
    }
    
    .nav-toggle .bar {
        width: 20px;
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

img {
    max-width: 100%;
    height: auto;
}

/* Main Content Styles */
main {
    margin-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--white) 100%);
    contain: layout style paint;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: #5a7a42;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Categories */
.products-section {
    padding: 4rem 2rem;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--warm-beige);
    padding: 4rem 2rem;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog Section */
.blog-preview {
    padding: 4rem 2rem;
}

.blog-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: var(--primary-blue);
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: var(--secondary-green);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .product-categories,
    .reviews-grid,
    .blog-articles {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .products-section,
    .reviews-section,
    .blog-preview {
        padding: 2rem 1rem;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content .intro {
    background: linear-gradient(135deg, var(--warm-beige) 0%, #f0f0f0 100%);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    font-weight: 500;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 1rem;
}

.legal-content h3 {
    color: var(--secondary-green);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--warm-beige) 0%, #f8f9fa 100%);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
}

.legal-content li {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.legal-content li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.legal-content li:before {
    content: '🐾';
    position: absolute;
    left: -1rem;
    color: var(--accent-gold);
}

.legal-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.last-update {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 3rem;
}

/* Cart Styles */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.item-details h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-blue);
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 4px;
    cursor: pointer;
}

.quantity-controls button:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.remove-btn {
    background: #dc3545;
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.cart-summary {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.total-section {
    margin-bottom: 2rem;
}

.total-section p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-section h4 {
    display: flex;
    justify-content: space-between;
    color: var(--primary-blue);
    font-size: 1.2rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

/* Services Directory */
.filters-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.filters-bar select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background: var(--white);
    font-family: inherit;
}

.discount-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-header h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.3rem;
}

.service-location {
    background: var(--secondary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-type {
    background: var(--warm-beige);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-rating {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-price {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.discounted-price {
    color: var(--secondary-green);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.current-price {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.discount-badge {
    background: #dc3545;
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-bar select {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Contact Page Styles */
.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--warm-beige) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-info h2 {
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.contact-item small {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-blue);
}

.contact-form h2 {
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(46, 92, 138, 0.1);
}

.gdpr-consent {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--secondary-green);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}
/* Featured Deals Section */
.featured-deals {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--warm-beige) 100%);
}

.featured-deals h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.deals-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.deal-preview-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deal-preview-card:hover {
    transform: translateY(-5px);
}

.deal-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--secondary-green) 100%);
}

.deal-discount {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.deal-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255,71,87,0.5);
    border: 2px solid white;
    z-index: 10;
}

.deal-featured-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #7BA05B;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(123,160,91,0.4);
    z-index: 10;
}

.deal-preview-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.deal-preview-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Tools Section - Homepage */
.tools-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.tools-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tool-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.tool-card .btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    font-weight: 600;
}

/* Directory Page Styles */
.directory-filters {
    padding: 2rem;
    background: var(--warm-beige);
}

.filters-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.discount-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    white-space: nowrap;
}

.filters-row select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    min-width: 200px;
}

.professionals-list {
    padding: 4rem 2rem;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.professional-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.professional-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.profession {
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.rating {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.location, .phone {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.hero-actions {
    margin-top: 2rem;
    text-align: center;
}

.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 400px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--primary-blue);
}

/* Wellness Services Coming Soon Page */
.coming-soon-page {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 80px;
}

.coming-soon-page .coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.coming-soon-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.coming-soon-page p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
    max-width: 800px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.coming-soon-subtitle {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
}

.coming-soon-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-cta .btn {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coming-soon-cta .btn-primary {
    background: #D4AF37;
    color: #2E5C8A;
}

.coming-soon-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.coming-soon-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}



.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.coming-soon-subtitle {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 30px;
}

.coming-soon-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-cta .btn {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coming-soon-cta .btn-primary {
    background: #D4AF37;
    color: #2E5C8A;
}

.coming-soon-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.coming-soon-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Wellness Services Main Content */
.wellness-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.wellness-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wellness-services {
    padding: 4rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-features li:before {
    content: "✓ ";
    color: var(--secondary-green);
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.wellness-packages {
    background: var(--warm-beige);
    padding: 4rem 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.package-card.featured {
    border: 3px solid var(--accent-gold);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.package-features li:before {
    content: "✓ ";
    color: var(--secondary-green);
    font-weight: bold;
}

.booking-section {
    padding: 4rem 2rem;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--warm-beige);
    padding-bottom: 0.5rem;
}

.professionals-list {
    margin-top: 2rem;
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.professional-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.professional-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.reviews {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    width: 100%;
}

/* Comparatore Styles */
.comparatore-section {
    padding: 2rem;
}

.comparatore-section h1 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.comparatore-filters {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.comparatore-filters select,
.comparatore-filters input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.comparison-panel {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.comparison-table th {
    background: var(--primary-blue);
    color: var(--white);
}

/* Calcolatore Styles */
.calcolatore-section {
    padding: 2rem;
}

.calcolatore-section h1 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.calculator-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.form-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.results-section {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.results-section h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.nutrition-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 1rem;
}

.calorie-display {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.special-notes {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.special-notes ul {
    margin-left: 1rem;
}

.vet-consultation {
    background: var(--secondary-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 1rem 0;
}

.recommendations-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 0.5rem 0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .coming-soon-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-cta .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .professional-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .wellness-hero h1 {
        font-size: 2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
}
/* Product Pages Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #2E5C8A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7BA05B;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
}
/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.lang-toggle:hover {
    background: var(--warm-beige);
}

.flag-icon {
    font-size: 16px;
    display: inline-block;
}

.flag-it:before { content: '🇮🇹'; }
.flag-en:before { content: '🇬🇧'; }
.flag-fr:before { content: '🇫🇷'; }
.flag-de:before { content: '🇩🇪'; }

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: var(--shadow);
    min-width: 80px;
    display: none;
    z-index: 1000;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--warm-beige);
}

@media (max-width: 768px) {
    .language-selector {
        margin-left: 1rem;
    }
}