/*
Theme Name: Leather Luxe Pro
Author: Custom Dev
Description: Professional WooCommerce theme for leather accessories.
Version: 1.2
Text Domain: leather-luxe
*/

/* 1. RESET & GLOBAL STYLES */
* {
    box-sizing: border-box;
}

body {
    background-color: #fcfaf7 !important;
    color: #3e2723 !important;
    font-family: 'Georgia', serif !important;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. HEADER & LOGO */
header.site-header {
    background: #ffffff !important;
    padding: 40px 0;
    border-bottom: 1px solid #d7ccc8;
    text-align: center;
    width: 100%;
}

header h1 {
    margin: 0;
    padding: 0;
}

header h1 a {
    color: #5d4037 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
}

/* 3. NAVIGATION MENU (The Horizontal Fix) */
.main-navigation {
    margin-top: 25px;
    width: 100%;
}

.main-navigation ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: wrap;
}

.main-navigation li {
    margin: 0 15px !important;
}

.main-navigation a {
    text-decoration: none !important;
    color: #5d4037 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #8d6e63 !important;
}

/* 4. WOOCOMMERCE ELEMENTS (The "Leather" Look) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #5d4037 !important;
    font-weight: bold !important;
    text-align: center;
}

.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt,
.woocommerce .button {
    background-color: #3e2723 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    padding: 12px 25px !important;
    border: none !important;
    cursor: pointer;
}

.woocommerce .button:hover {
    background-color: #5d4037 !important;
}

/* 5. THE QUALITY BADGE */
.leather-badge {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #8d6e63;
    color: #8d6e63;
    font-size: 11px;
    margin: 15px 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 6. FOOTER */
footer {
    background: #3e2723;
    color: #d7ccc8;
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
}