/* Product page specific styles */

.nav {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #0a0a0a;
}

.product-main {
    width: 100%;
    padding: 6rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

.product-container {
    animation: slideUp 1s ease-out;
}

.product-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.product-icon-wrapper-large {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.product-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #6a6a6a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-section {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.section-content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #2d2d2d;
    letter-spacing: 0.01em;
}

.section-content p {
    margin-bottom: 1.25rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.placeholder-text {
    color: #9a9a9a;
    font-style: italic;
}

.product-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
    font-family: 'Inter', sans-serif;
}

.product-link-item {
    font-size: 0.95rem;
    font-weight: 300;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.product-link-item:hover {
    color: #0a0a0a;
}

.link-separator {
    color: #c5c5c5;
    font-size: 0.95rem;
    margin: 0 0.25rem;
}

/* Legal content styles */
.legal-content {
    text-align: left;
}

.legal-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0a0a0a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a4a4a;
    font-weight: 400;
}

.legal-list .legal-list {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.legal-list .legal-list li {
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-list .legal-list li::before {
    content: "◦";
}

.legal-content strong {
    font-weight: 500;
    color: #0a0a0a;
}

.email-link {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #0a0a0a;
    text-decoration: underline;
}

/* Content section styles */
.content-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0a0a0a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.section-content .content-heading:first-child {
    margin-top: 0;
}

.section-content em {
    font-style: italic;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .nav {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .product-main {
        padding: 5rem 1.5rem 3rem;
    }
    
    .product-header {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }
    
    .product-icon-large {
        width: 100px;
        height: 100px;
        border-radius: 22px;
    }
    
    .product-title {
        font-size: 2.25rem;
    }
    
    .product-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .section-content {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .product-section {
        margin-bottom: 3rem;
    }
    
    .product-links {
        margin-top: 3rem;
        padding-top: 2rem;
        gap: 0.75rem;
    }
    
    .product-link-item {
        font-size: 0.9rem;
    }
    
    .link-separator {
        font-size: 0.9rem;
        margin: 0 0.2rem;
    }
    
    .legal-heading {
        font-size: 1rem;
        margin-top: 2rem;
    }
    
    .legal-list li {
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .nav {
        top: 1rem;
        left: 1rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .product-main {
        padding: 4rem 1rem 2rem;
    }
    
    .product-icon-large {
        width: 80px;
        height: 80px;
        border-radius: 18px;
    }
    
    .product-title {
        font-size: 1.875rem;
    }
    
    .product-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .section-content {
        font-size: 0.9rem;
    }
    
    .product-section {
        margin-bottom: 2.5rem;
    }
    
    .product-links {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
        gap: 0.5rem;
    }
    
    .product-link-item {
        font-size: 0.85rem;
    }
    
    .link-separator {
        font-size: 0.85rem;
        margin: 0 0.15rem;
    }
    
    .legal-heading {
        font-size: 0.95rem;
        margin-top: 1.75rem;
    }
    
    .legal-list li {
        padding-left: 1rem;
        margin-bottom: 0.5rem;
    }
}

