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

body {
    font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #e8e4dd;
    color: #1a1a1a;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: transparent;
    z-index: 1000;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

/* Main Container */
.main-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 100px 60px 60px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Brand Title */
.brand-title {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.brand-title h1 {
    font-size: 180px;
    font-weight: 900;
    letter-spacing: -8px;
    color: #1a1a1a;
    line-height: 0.9;
    text-transform: none;
    font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    margin-top: 100px;
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card.left {
    text-align: left;
    padding-right: 40px;
}

.product-card.right {
    text-align: left;
    padding-left: 0;
    align-items: flex-start;
    background-color: transparent;
    padding: 0;
    max-width: 320px;
}

.product-name {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    max-width: 320px;
    font-weight: 300;
}

.product-price {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 10px 0;
}

/* Add to Cart Button */
.add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

.add-to-cart:hover {
    opacity: 0.6;
}

.btn-divider {
    font-weight: 300;
}

/* Product Showcase */
.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-product {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Right Product Card */
.product-thumb {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 8px;
    border: 3px solid #ffffff;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.product-card.right > img {
    border-radius: 6px;
    display: block;
}

.product-name-small {
    font-size: 17px;
    font-weight: 400;
    line-height: 0;
    color: #1a1a1a;
    margin: 0 0 0 0;
    text-align: left;
}

.product-card.right .product-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-count {
    font-size: 14px;
    color: #6a6a6a;
}

.slider-btn {
    background: transparent;
    border: none;
    font-size: 32px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0 10px;
    transition: opacity 0.3s ease;
}

.slider-btn:hover {
    opacity: 0.6;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.dot {
    width: 40px;
    height: 3px;
    background-color: #c4c4c4;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #1a1a1a;
}

.dot:hover {
    background-color: #6a6a6a;
}

/* Footer Copyright */
.footer-copyright {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.footer-copyright p {
    font-size: 12px;
    color: #6a6a6a;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .brand-title h1 {
        font-size: 140px;
    }

    .content-grid {
        gap: 40px;
        margin-top: 80px;
    }

    .product-name {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-left,
    .nav-right {
        gap: 15px;
    }

    .nav-link {
        font-size: 11px;
    }

    .brand-title h1 {
        font-size: 80px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .product-card.left,
    .product-card.right {
        text-align: center;
        padding: 0;
        align-items: center;
    }

    .product-description {
        max-width: 100%;
    }

    .main-product {
        max-width: 500px;
    }

    .slider-controls {
        bottom: 30px;
        right: 30px;
    }

    .slider-dots {
        bottom: 30px;
    }
}
