/* BathTools Safety Theme - Custom Design */

:root {
    --bath-primary: #1e3a8a;
    --bath-secondary: #1e40af;
    --bath-accent: #64748b;
    --bath-dark: #0f172a;
    --bath-light: #f8fafc;
    --bath-gray: #64748b;
    --bath-success: #059669;
    --bath-warning: #f59e0b;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--bath-dark);
    background-color: var(--bath-light);
}

/* Cookie Banner */
.bath-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bath-dark) 0%, #1e293b 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bath-cookie-banner.hidden {
    display: none;
}

.cookie-text {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.cookie-link {
    color: var(--bath-accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #5eead4;
}

.cookie-btn-accept {
    background-color: var(--bath-success) !important;
    border: none !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
    background-color: #059669 !important;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    white-space: nowrap;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1) !important;
}

/* Navigation */
.bath-navigation {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
}

.bath-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bath-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: var(--bath-dark);
}

.navbar-item {
    color: var(--bath-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: var(--bath-primary);
    background-color: transparent;
}

.order-btn {
    background: linear-gradient(135deg, var(--bath-primary) 0%, var(--bath-secondary) 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.lang-switch {
    border: 2px solid var(--bath-primary) !important;
    color: var(--bath-primary) !important;
    font-weight: 600 !important;
    padding: 0.75rem 1rem !important;
    min-width: 60px;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background-color: var(--bath-primary) !important;
    color: white !important;
}

/* Hero Section */
.bath-hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    max-height: 400px;
}

.bath-hero-section .hero-body {
    display: flex;
    align-items: center;
    min-height: auto;
}

.bath-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.1);
    z-index: 1;
}

.bath-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: white !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    color: #f0f9ff !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.hero-buttons .button {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.hero-buttons .button.is-primary {
    background-color: white !important;
    color: var(--bath-primary) !important;
    border: none;
}

.hero-buttons .button.is-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-buttons .button.is-light {
    background-color: transparent !important;
    border: 3px solid white !important;
    color: white !important;
}

.hero-buttons .button.is-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
    transform: translateY(-3px);
}

.bath-hero-section img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Products Section */
.product-showcase {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    color: var(--bath-dark) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

.section-subtitle {
    color: var(--bath-gray) !important;
    margin-bottom: 3rem !important;
}

.product-card {
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
}

.product-card .card-image img {
    transition: transform 0.3s ease;
}

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

.product-card .card-content {
    padding: 1.5rem;
}

.product-card .title {
    color: var(--bath-dark);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--bath-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    min-height: 80px;
}

.product-specs {
    color: var(--bath-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bath-primary);
    margin-bottom: 1rem;
}

.product-card .button {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.product-card .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Benefits Section */
.safety-benefits {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
}

.benefit-box {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    color: var(--bath-primary);
    margin-bottom: 1rem;
}

.benefit-box .title {
    color: var(--bath-dark);
    margin-bottom: 0.5rem;
}

.benefit-box p {
    color: var(--bath-gray);
}

/* Installation Guide */
.installation-guide {
    padding: 5rem 0;
    background-color: white;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bath-primary) 0%, var(--bath-secondary) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content .title {
    color: var(--bath-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--bath-gray);
}

.installation-guide img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Testimonials */
.customer-voices {
    padding: 5rem 0;
    background-color: var(--bath-light);
}

.testimonial-card {
    height: 100%;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-card .image img {
    border: 3px solid var(--bath-primary);
}

.testimonial-card .title {
    color: var(--bath-dark);
    margin-bottom: 0.2rem;
}

.testimonial-card .subtitle {
    color: var(--bath-gray);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-card .content p {
    color: var(--bath-gray);
    font-style: italic;
}

/* CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bath-primary) 0%, var(--bath-secondary) 100%);
    color: white;
}

.final-cta .title {
    color: white !important;
}

.final-cta .subtitle {
    color: #f0f9ff !important;
}

.final-cta .button {
    background-color: white !important;
    color: var(--bath-primary) !important;
    min-height: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.final-cta .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Footer */
.bath-footer {
    background-color: var(--bath-dark);
    color: #94a3b8;
    padding: 3rem 0 2rem;
}

.bath-footer .title {
    color: white !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

.bath-footer p {
    color: #94a3b8;
    line-height: 1.8;
}

.bath-footer a {
    color: var(--bath-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bath-footer a:hover {
    color: #5eead4;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.bath-footer hr {
    background-color: #334155;
    margin: 2rem 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-decline {
        width: 100%;
        margin: 0.25rem 0 !important;
    }

    .bath-cookie-banner .columns {
        display: block;
    }

    .bath-cookie-banner .column {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .product-description {
        min-height: auto;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .section {
        padding: 3rem 0;
    }
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.input,
.textarea,
.select select {
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.select select {
    width: 100%;
    max-width: 100%;
}

.select select option {
    font-size: 0.9rem;
    padding: 0.5rem;
}

.input:focus,
.textarea:focus,
.select select:focus {
    border-color: var(--bath-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.input.is-danger,
.textarea.is-danger,
.select select.is-danger {
    border-color: #ef4444;
}

.help.is-danger {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.thank-you-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    color: var(--bath-success);
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    color: var(--bath-dark);
    margin-bottom: 1rem;
}

.legal-content h2 {
    color: var(--bath-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p,
.legal-content li {
    color: var(--bath-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Utility Classes */
.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

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

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}