/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Back Button */
.back-button {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 1000;
}

.back-link {
    color: #800080;
    text-decoration: underline;
    font-weight: 300;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

/* Navigation - Header.css kullanılıyor */

/* Main Content */
.main-content {
    padding: 150px 40px 40px;
    max-width: 1600px;
    margin: 0 auto;
    min-height: calc(100vh - 150px);
}

/* Artwork Section */
.artwork-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 600px;
}

/* Main Artwork */
.main-artwork {
    margin-left: 0;
}

.artwork-circle {
    width: 300px;
    height: 300px;
    border: 3px solid #000000;
    border-radius: 50%;
    background: transparent;
    position: relative;
}

/* Product Name Section */
.product-name-section {
    margin-left: 20px;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.product-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    margin: 0;
}

/* Product Info */
.product-info {
    margin-left: 20px;
    margin-top: 20px;
}

.product-info-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 5px;
    line-height: 1.2;
}

.product-info-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .back-button {
        top: 20px;
        left: 20px;
    }
    
    .navigation {
        top: 50px;
        left: 20px;
    }
    
    .main-content {
        padding: 100px 20px 20px;
    }
    
    .artwork-circle {
        width: 250px;
        height: 250px;
    }
    
    .product-name-section,
    .product-info {
        margin-left: 10px;
    }
    
    .product-name,
    .product-info-title {
        font-size: 20px;
    }
    
    .product-subtitle,
    .product-info-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .artwork-circle {
        width: 200px;
        height: 200px;
    }
    
    .product-name,
    .product-info-title {
        font-size: 18px;
    }
    
    .product-subtitle,
    .product-info-subtitle {
        font-size: 14px;
    }
}