/* LITHARCHE Brand Styles - Test Deployment */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --brand-primary: #2c3e50;
    --brand-secondary: #95a5a6;
    --brand-accent: #3498db;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans Pro', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--brand-primary);
    line-height: 1.6;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--brand-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* Hero */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(149, 165, 166, 0.05) 100%);
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--brand-secondary);
    font-weight: 300;
}

/* Product Section */
.product-section {
    padding: 60px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-image {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.placeholder-image {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
}

.placeholder-text {
    font-size: 80px;
}

.product-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.product-description {
    font-size: 1rem;
    color: var(--brand-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-necessity {
    font-size: 0.9rem;
    color: var(--brand-primary);
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(44, 62, 80, 0.05);
    border-left: 3px solid var(--brand-primary);
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.btn-purchase {
    background: var(--brand-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-purchase:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.btn-purchase:active {
    transform: translateY(0);
}

/* Info Section */
.info-section {
    padding: 40px 0 60px;
}

.info-box {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-box h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.info-box ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.info-box li {
    margin-bottom: 10px;
    color: var(--brand-secondary);
}

.info-note {
    background: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #e74c3c;
    padding: 15px;
    color: #c0392b;
    font-weight: 600;
    border-radius: 4px;
}

/* Success/Cancel Pages */
.success-section,
.cancel-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-box,
.cancel-box {
    background: white;
    border-radius: 12px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.cancel-icon {
    width: 100px;
    height: 100px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.success-box h2,
.cancel-box h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.success-message,
.cancel-message {
    font-size: 1.2rem;
    color: var(--brand-secondary);
    margin-bottom: 20px;
}

.success-details,
.cancel-details {
    font-size: 1rem;
    color: var(--brand-primary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.next-steps {
    text-align: left;
    background: rgba(44, 62, 80, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.next-steps ul {
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
    color: var(--brand-secondary);
}

.next-steps a {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 600;
}

.next-steps a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-secondary:hover {
    background: var(--brand-primary);
    color: white;
}

/* Footer */
.site-footer {
    background: var(--brand-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.site-footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .product-card {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        padding: 40px;
    }
    
    .placeholder-image {
        width: 150px;
        height: 150px;
    }
    
    .placeholder-text {
        font-size: 60px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .success-box,
    .cancel-box {
        padding: 40px 20px;
    }
}
