/*
Theme Name: Arjomand Modern Decor
Theme URI: https://arjomandesign.com
Author: Deniz Tuna / Arjomand Design
Author URI: https://arjomandesign.com
Description: Arjomand Design için özel tasarlanmış modern, güçlü, ferah ve sans-serif tipografili ev dekorasyon WooCommerce teması.
Version: 1.7.1
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: arjomand-modern-decor
Domain Path: /languages
Tags: e-commerce, custom-menu, featured-images, full-width-template, theme-options, translation-ready, woocommerce
*/

/* CSS Variables & Modern Sans-Serif Design Tokens */
:root {
    --decor-bg: #FAF8F5;
    --decor-surface: #FFFFFF;
    --decor-stone: #F4F2EE;
    --decor-stone-dark: #EAE7E2;
    --decor-border: #E7E5E4;
    --decor-border-subtle: #F0EEEB;
    
    --decor-text-main: #18181B;
    --decor-text-body: #3F3F46;
    --decor-text-muted: #71717A;
    --decor-text-light: #A1A1AA;
    
    --decor-accent: #C5A880;
    --decor-accent-hover: #B8966C;
    --decor-accent-subtle: rgba(197, 168, 128, 0.12);
    
    --decor-danger: #DC2626;
    --decor-success: #16A34A;
    
    /* Modern Sans-Serif Typography (No Serif) */
    --decor-font-heading: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --decor-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    --decor-container: 1360px;
    --decor-radius: 4px;
    --decor-radius-md: 6px;
    --decor-radius-pill: 9999px;
    
    --decor-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --decor-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --decor-shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.07);
    
    --decor-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    font-family: var(--decor-font-body);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    color: var(--decor-text-body);
    background-color: var(--decor-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--decor-transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}
