/* Toilet Squat - Mediterranean Wellness Design */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
    --color-sand: #f5ebe0;
    --color-terracotta: #c97b5a;
    --color-deep-teal: #0d3b4c;
    --color-sage: #7a9e7e;
    --color-cream: #faf8f5;
    --color-charcoal: #2d2d2d;
    --color-gold: #d4a574;
    --shadow-soft: 0 8px 30px rgba(13, 59, 76, 0.08);
    --shadow-elevated: 0 16px 48px rgba(13, 59, 76, 0.12);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--color-charcoal);
    background: var(--color-cream);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Minimal with accent */
.header {
    background: linear-gradient(180deg, var(--color-deep-teal) 0%, #0a2d3a 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-elevated);
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-sand);
    letter-spacing: 0.02em;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    color: var(--color-gold);
}

/* Hero - Bold statement */
.hero {
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 123, 90, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-sand) 0%, var(--color-cream) 100%);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 3px solid var(--color-terracotta);
}

.hero-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-deep-teal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--color-charcoal);
    opacity: 0.9;
    font-weight: 400;
}

/* Product Section - Card layout */
.product-section {
    padding: 5rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image {
    position: sticky;
    top: 100px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-sand);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-deep-teal);
    color: var(--color-sand);
    border: none;
    padding: 12px 18px;
    font-size: 20px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--color-terracotta);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
    text-align: center;
    padding: 16px 0;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background: var(--color-sage);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s;
}

.dot.active, .dot:hover {
    background: var(--color-terracotta);
    transform: scale(1.2);
}

/* Product info */
.product-info {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.product-badge {
    display: inline-block;
    background: var(--color-sage);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-info h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.9rem;
    color: var(--color-deep-teal);
    margin-bottom: 1rem;
}

.product-description {
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
    line-height: 1.8;
}

.product-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.feature-icon {
    color: var(--color-sage);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-specs {
    background: var(--color-sand);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-terracotta);
}

.product-specs h3 {
    margin-bottom: 0.5rem;
    color: var(--color-deep-teal);
    font-size: 1.1rem;
}

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

.price-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-deep-teal);
}

.btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, #b86a4a 100%);
    color: white !important;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(201, 123, 90, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 123, 90, 0.5);
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--color-deep-teal);
    color: var(--color-sand);
}

.how-it-works .section-title {
    color: var(--color-sand);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.comparison-item h3 {
    margin-bottom: 1rem;
    color: var(--color-gold);
    font-size: 1.3rem;
}

.comparison-image {
    margin-bottom: 1.5rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.comparison-item p {
    margin-bottom: 1rem;
    color: rgba(245, 235, 224, 0.95);
}

/* Social Responsibility */
.social-responsibility {
    padding: 5rem 0;
    background: var(--color-sand);
}

.responsibility-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-image {
    margin-bottom: 2rem;
}

.responsibility-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.responsibility-content p {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    line-height: 1.8;
}

/* Guarantee */
.guarantee {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-sage) 0%, #6b8f6f 100%);
    text-align: center;
    color: white;
}

.guarantee .section-title {
    color: white;
}

.guarantee p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* FAQ */
.faq {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--color-deep-teal);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--color-sage);
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    color: var(--color-deep-teal);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.faq-item p {
    color: var(--color-charcoal);
    line-height: 1.8;
}

/* Contact */
.contact-section {
    padding: 5rem 0;
    background: var(--color-deep-teal);
    color: var(--color-sand);
}

.contact-section .section-title {
    color: var(--color-sand);
}

.contact-section > .container > p {
    color: rgba(245, 235, 224, 0.95);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.contact-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.contact-item span {
    color: rgba(245, 235, 224, 0.9);
}

/* Footer */
.footer {
    background: var(--color-charcoal);
    color: var(--color-sand);
    padding: 3rem 0 1.5rem;
}

.footer-legal h3 {
    color: var(--color-sand);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info p {
    color: rgba(245, 235, 224, 0.85);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-info strong {
    color: var(--color-sand);
}

.health-notice {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.health-notice h4 {
    color: var(--color-sand);
    margin-bottom: 1rem;
}

.health-notice p {
    color: rgba(245, 235, 224, 0.85);
    line-height: 1.8;
}

.contact-info-footer {
    margin-bottom: 2rem;
}

.contact-info-footer p {
    color: rgba(245, 235, 224, 0.85);
    margin-bottom: 0.5rem;
}

.contact-info-footer strong {
    color: var(--color-sand);
}

.contact-info-footer a {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: rgba(245, 235, 224, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom p {
    color: rgba(245, 235, 224, 0.7);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.legal-page h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-deep-teal);
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-deep-teal);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--color-deep-teal);
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.legal-page a {
    color: var(--color-terracotta);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.withdrawal-form {
    background: var(--color-sand);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    border-left: 4px solid var(--color-terracotta);
}

.withdrawal-form p {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        position: static;
    }

    .carousel-slides {
        height: 300px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .contact-info {
        flex-direction: column;
    }
}

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

.product-image img,
.comparison-image img {
    background: var(--color-sand);
    min-height: 200px;
    display: block;
}
