/*
Theme Name: CozzyStudio Master
Theme URI: https://cozzystudio.com
Author: Dev Studio
Description: Complete custom e-commerce architecture.
Version: 1.0.0
Text Domain: cozzystudio
*/

:root {
    --bg-color: #fbfbfa;
    --text-color: #1a1a18;
    --accent-color: #6b6d5c;
    --border-color: #e8e8e6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body { background: var(--bg-color); color: var(--text-color); font-family: var(--font-body); margin: 0; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

/* Global Header & Footer */
.site-header { padding: 24px 0; border-bottom: 1px solid var(--border-color); background: #fff; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-title a { font-family: var(--font-heading); font-size: 26px; text-decoration: none; color: var(--text-color); }
.site-footer { padding: 60px 0; border-top: 1px solid var(--border-color); text-align: center; margin-top: 80px; }

/* Front Page Layout */
.hero-section { padding: 100px 0; text-align: center; background: #f5f5f3; margin-bottom: 60px; }
.hero-title { font-size: 48px; margin-bottom: 20px; }
.front-section { margin-bottom: 80px; }
.section-title { font-size: 28px; border-bottom: 1px solid var(--border-color); padding-bottom: 12px; margin-bottom: 32px; }

/* Product Page Additions */
.custom-single-product { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.btn-whatsapp { 
    display: block; 
    background: #25D366; 
    color: #fff; 
    text-align: center; 
    padding: 16px; 
    text-decoration: none; 
    font-weight: 600; 
    text-transform: uppercase; 
    margin-top: 16px; 
    letter-spacing: 1px;
}
.special-note-box { 
    margin-top: 32px; 
    padding: 20px; 
    background: #f4f4f2; 
    border-left: 3px solid var(--accent-color); 
    font-size: 13px; 
    color: #555;
}

/* Minimal Checkout & Buttons */
button.button.alt, .checkout-button { background: var(--text-color) !important; color: #fff !important; border-radius: 0 !important; padding: 16px 32px !important; text-transform: uppercase; }
.woocommerce-checkout input { border: 1px solid var(--border-color); padding: 12px; width: 100%; }

@media (max-width: 768px) {
    .custom-single-product { grid-template-columns: 1fr; gap: 32px; }
}