/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --bg-color: #FFFFFF;
    --text-color: #777777;
    --heading-color: #161D27;
    --accent-color: #D9534F;
    --button-bg: #000000;
    --button-text: #FFFFFF;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 120px;
    /* Increased from 80px */
    width: auto;
    margin-bottom: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1rem;
}

nav a {
    font-size: 0.9rem;
    color: var(--heading-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
}

/* Art of Ki Header */
.art-of-ki-header {
    text-align: center;
    margin-bottom: 1rem;
    padding: 2rem 10px;
}

.nature-line {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: 6px;
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.ki-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.2;
}

.ki-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E62117;
    color: #FFFFFF;
    width: 2.2em;
    height: 2.2em;
    border-radius: 50%;
    margin: 0 0.1em;
    padding-top: 0.05em;
    /* Optical centering for serif font */
    font-size: 0.9em;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem;
    transition: all 0.4s ease;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
}

.product-card:hover {
    transform: translateY(-10px);
    background-color: rgba(252, 246, 246, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    background: transparent;
}

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

.product-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.product-type {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--button-bg);
    color: var(--button-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    opacity: 1;
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 7rem;
    padding: 6rem 1rem;
    background-color: #fbfbfb;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #f2f2f2;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    letter-spacing: 3px;
}

.newsletter-message {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 0;
    justify-content: center;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 1px solid #e0e0e0;
    border-right: none;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.newsletter-input:focus {
    border-color: var(--heading-color);
}

.newsletter-submit {
    padding: 18px 45px;
    background-color: var(--button-bg);
    color: var(--button-text);
    border: 1px solid var(--button-bg);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .newsletter-section {
        margin-top: 5rem;
        padding: 4rem 1.5rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        box-shadow: none;
    }

    .newsletter-input {
        border-right: 1px solid #e0e0e0;
        width: 100%;
        text-align: center;
    }

    .newsletter-submit {
        width: 100%;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.bnx-bb-placeholder {
    background: #000;
    color: #fff;
    border: 0;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    margin-top: 12px;
}

.bnx-bb-placeholder:hover {
    opacity: 0.9;
}