/*
Theme Name: Luxury By Meem
Theme URI: https://example.com
Author: Ahmad Turki
Author URI: https://example.com
Description: A luxury WordPress theme with elegant design.
Version: 1.0.0
Text Domain: luxury-by-meem
*/

/*  (Base) */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--wp--preset--font-family--body);
    color: var(--wp--preset--color--contrast);
    background-color: var(--wp--preset--color--base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wp--preset--font-family--heading);
    color: var(--wp--preset--color--contrast);
    line-height: 1.2;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1; 
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-page .site-main {
    padding-top: 0px;
    padding-bottom: 0px;
}