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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px 0;
    z-index: 1000;
    display: block;
}

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

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.btn-cookie {
    background-color: #f5f5f5;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 200ms ease;
}

.btn-cookie:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-link-light {
    color: #cccccc !important;
    font-size: 14px;
    padding: 10px 0;
}

.btn-link-light:hover {
    color: #ffffff !important;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #333333;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 200ms ease;
}

.nav-link:hover {
    color: #666666;
}

.btn-nav {
    border: 1px solid #000000;
    background-color: transparent;
    color: #000000;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0;
    transition: all 200ms ease;
}

.btn-nav:hover {
    background-color: #000000;
    color: #ffffff;
}

.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 200ms ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.04);
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 200ms ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

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

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }
}

.purity-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 60px 20px;
}

.purity-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
}

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

.purity-item {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #f0f0f0;
}

.purity-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
}

.purity-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.quick-tiles {
    padding: 60px 20px;
    background-color: #ffffff;
}

.quick-tiles .container {
    max-width: 1200px;
}

.tile {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 220ms ease;
    cursor: pointer;
}

.tile:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.04);
}

.tile img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.tile h3 {
    font-size: 18px;
    padding: 20px 20px 10px;
    color: #000000;
    font-weight: 600;
}

.tile p {
    padding: 0 20px;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.tile small {
    display: block;
    padding: 10px 20px 20px;
    color: #999999;
    font-size: 12px;
}

.quick-notes {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 60px 20px;
}

.quick-notes h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
    font-weight: 700;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.note {
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.rituals-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.rituals-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
}

.rituals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.ritual-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ritual-number {
    background-color: #000000;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    border-radius: 50%;
}

.ritual-item p {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

.crystal-core {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.crystal-core h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 220ms ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: scale(1.04);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #000000;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.product-card h3 {
    font-size: 16px;
    padding: 20px 20px 10px;
    color: #000000;
    font-weight: 600;
}

.product-meta {
    padding: 0 20px;
    font-size: 12px;
    color: #999999;
}

.product-desc {
    padding: 10px 20px;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.availability {
    padding: 10px 20px;
    font-size: 13px;
    color: #666666;
}

.price {
    padding: 10px 20px;
    font-size: 20px;
    color: #000000;
    font-weight: 700;
}

.btn-product {
    margin: 15px 20px 20px;
    border: 1px solid #000000;
    background-color: transparent;
    color: #000000;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0;
    transition: all 200ms ease;
    cursor: pointer;
    text-align: center;
}

.btn-product:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.04);
}

.eternal-whiteness {
    padding: 60px 20px;
    background-color: #ffffff;
}

.eternal-whiteness h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
}

.whiteness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.whiteness-item {
    background-color: #f8f8f8;
    padding: 20px;
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    border-left: 3px solid #000000;
}

.harmony-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.harmony-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
}

.harmony-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.harmony-item {
    background-color: #ffffff;
    padding: 20px;
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    border-right: 3px solid #000000;
    text-align: right;
}

.faq-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
}

.faq-item {
    background-color: #f8f8f8;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.crystal-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
}

.crystal-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.crystal-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-cta {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 200ms ease;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: transparent;
    color: #ffffff;
    transform: scale(1.04);
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 20px 30px;
}

.footer h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 200ms ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer hr {
    border-color: #333333;
    margin: 40px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #666666;
}

@media (max-width: 768px) {
    header .nav-link {
        display: none;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .purity-section h2,
    .crystal-core h2,
    .eternal-whiteness h2,
    .harmony-section h2,
    .faq-section h2,
    .crystal-cta h2 {
        font-size: 28px;
    }

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

    .footer .row > div {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 10px;
    }

    .btn-nav {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .purity-grid,
    .rituals-list,
    .whiteness-grid,
    .harmony-grid,
    .notes-grid {
        grid-template-columns: 1fr;
    }

    .note {
        padding: 15px;
    }

    .cookie-banner p {
        margin-bottom: 15px;
    }

    .btn-cookie,
    .btn-link-light {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}
