html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #ff6b35; /* Orange for dog food appetite */
    --primary-dark: #e55a2b;
    --bg-dark: #0a0a0c;
    --bg-light: #16161a;
    --text-main: #fcfcfc;
    --text-muted: #94a1b2;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    z-index: 1000;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
}

.main-logo {
    height: 45px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-b2b {
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--glass-bg);
}

.lang-switch button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.5rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s;
}

.lang-switch button.active {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    padding: 8rem 5% 4rem;
    align-items: flex-start;
    padding-top: 15rem;
    background: linear-gradient(rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.7) 70%, var(--bg-dark) 100%), url('images/hero-banner.jpg') center/cover;
    background-position: center bottom;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-hero-b2b {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-hero-b2b:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Glass Card - Floating Element */
.hero-image-wrapper {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.01));
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-floating-logo {
    width: 250px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
    position: absolute;
    bottom: 10%;
    left: -5%;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    padding: 8rem 5%;
    background: var(--bg-dark);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.products-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    width: 100%;
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.carousel-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, color 0.3s;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.prev-btn {
    margin-right: -25px;
}

.next-btn {
    margin-left: -25px;
}

.product-card {
    min-width: 320px;
    flex: 0 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s, background 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.product-image-wrapper {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-light);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtelny gradient w tle zdjęcia produktu dla efektu premium */
.product-image-wrapper::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    z-index: 1;
    position: relative;
}

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

.product-info {
    padding: 2rem;
    position: relative;
}

.flavor-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.flavor-badge.lamb { background: #d946ef; }
.flavor-badge.beef { background: #22c55e; }
.flavor-badge.ham { background: #ef4444; }
.flavor-badge.chicken { background: #f59e0b; color: #000; }
.flavor-badge.oil { background: #3b82f6; color: #fff; }

.product-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h3 {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
}

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

.features-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .features-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid.grid-4 {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: transform 0.4s, background 0.4s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* B2B Section */
.b2b-section {
    padding: 8rem 5%;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.b2b-layout {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
}

.b2b-dog-column {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.b2b-dog-img {
    max-width: 120%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(15px 15px 25px rgba(0,0,0,0.6));
    /* transform: scaleX(-1); odkomentuj, jeśli pies jest odwrócony w złą stronę */
}

.b2b-content {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: 32px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.b2b-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.b2b-content p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.b2b-form input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.3);
    color: white;
    font-family: 'Inter';
}

.b2b-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.footer-info i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.footer-logo h2 {
    font-size: 1.5rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* B2B Page Styles */
.b2b-hero {
    padding: 12rem 5% 6rem;
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.95)), url('https://images.unsplash.com/photo-1537151608828-ea2b11777ee8?auto=format&fit=crop&q=80') center/cover;
    text-align: center;
}

.b2b-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.b2b-hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.b2b-hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.b2b-features {
    padding: 6rem 5%;
    background: var(--bg-dark);
}

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

.b2b-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.b2b-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.b2b-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.b2b-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.b2b-card p {
    color: var(--text-muted);
}

.b2b-contact-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.b2b-contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.b2b-contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.b2b-detailed-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.b2b-detailed-form input,
.b2b-detailed-form select,
.b2b-detailed-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.3);
    color: white;
    font-family: 'Inter', sans-serif;
}

.b2b-detailed-form input:focus,
.b2b-detailed-form select:focus,
.b2b-detailed-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.b2b-detailed-form textarea {
    resize: vertical;
}

.w-100 {
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    overflow-y: auto; /* Allow scrolling */
    padding: 2rem 0; /* Add space at top/bottom */
}

.modal-content {
    margin: 2rem auto; /* Consistent margin */
    width: 95%;
    max-width: 900px;
    padding: 3rem;
    position: relative;
    animation: fadeInDown 0.5s ease;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    color: var(--text-muted);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start; /* Align to top instead of center */
}

.modal-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.modal-info h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.modal-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.modal-info p {
    color: var(--text-muted);
    line-height: 1.8;
}

.ingredients-list {
    list-style: none;
    margin-top: 1rem;
}

.ingredients-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.ingredients-list i {
    color: var(--primary-color);
}

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

.analytical-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.analytical-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.analytical-value {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
}

/* About Page Styles */
.about-mission-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-content-card {
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-content-card h3 {
    font-size: 1.8rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content-card p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-main);
}

.values-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.value-item {
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ingredients-showcase {
    padding: 8rem 5%;
}

.ing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s;
}

.ing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.ing-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.ing-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.ing-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Products List Page Styles */
.products-list-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-detail-block {
    display: flex;
    gap: 4rem;
    padding: 6rem 0;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
}

.product-detail-block:last-child {
    border-bottom: none;
}

.product-detail-block:nth-child(even) {
    flex-direction: row-reverse;
}

.product-detail-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.product-detail-info {
    flex: 1.2;
    position: relative; /* Fix for absolute badges */
}

.product-detail-info .flavor-badge {
    position: static; /* Let it flow with text in the detailed view */
    display: inline-block;
    margin-bottom: 1rem;
}

.product-detail-info h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.product-detail-info .p-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-group {
    margin-bottom: 2.5rem;
}

.info-group h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.info-group p {
    line-height: 1.8;
    color: var(--text-main);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h2 { font-size: 2.5rem; }
    .hero-buttons { flex-wrap: wrap; justify-content: center; }
    
    .navbar { padding: 1rem 5%; }

    .mobile-menu-btn {
        display: block;
        order: 2;
        margin-left: 1rem;
    }

    .lang-switch {
        order: 1;
        margin-left: auto;
    }

    .logo {
        order: 0;
    }

    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s ease;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-image-wrapper { display: none; }
    .b2b-layout { flex-direction: column; text-align: center; }
    .b2b-content { text-align: center; padding: 2rem; }
    .b2b-form { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; gap: 2rem; }
    
    .modal-body { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .modal-content { padding: 2rem; margin: 10% auto; }
    .modal-info h2 { font-size: 1.8rem; }
    .ingredients-list li { justify-content: center; }

    .product-detail-block { flex-direction: column !important; gap: 2rem; text-align: center; }
    .product-detail-info h2 { font-size: 2rem; }

    .compact-form input, 
    .compact-form select, 
    .compact-form textarea {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .compact-form .form-row {
        margin-bottom: 0;
        gap: 0.5rem;
        display: flex;
        flex-direction: column;
    }

    .compact-form .btn-primary {
        padding: 0.8rem;
    }

    .b2b-contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .b2b-hero-content h2 { font-size: 2.5rem; }

    /* Hide carousel buttons on mobile to save space */
    .carousel-btn { display: none; }
    .carousel-container { padding: 0; }
    .products-carousel { gap: 1rem; padding: 0 1rem; }
    
    /* Ensure B2B dog image fits */
    .b2b-dog-img { max-width: 100%; margin-bottom: 2rem; }
    
    /* Spacing for hero buttons */
    .hero-buttons a { width: 100%; max-width: 300px; margin-bottom: 0.5rem; }
}
