:root {
  /* Site Colors: #5F6F52, #A9B388, #FEFAE0, #B99470 */
  /* Highlight: #D35400 */

  --primary-color: #5F6F52; /* Dark Olive */
  --secondary-color: #B99470; /* Brown */
  --accent-color: #A9B388; /* Sage */
  --light-color: #FEFAE0; /* Cream */
  --dark-color: #2F3829;
  --gradient-primary: linear-gradient(180deg, #FEFAE0 0%, #F5F5DC 100%);
  --hover-color: #4A5740;
  --background-color: #FFFFFF;
  --text-color: #374151;
  --border-color: #E5E7EB;
  --divider-color: #D1D5DB;
  --shadow-color: rgba(95, 111, 82, 0.15);
  --highlight-color: #D35400; /* Burnt Orange */
  
  --main-font: 'Poppins', sans-serif;
  --alt-font: 'Montserrat', sans-serif;
  
  --container-width: 1300px;
  --product-img-width: 380px;
}

body {
    font-family: var(--main-font);
    color: var(--text-color);
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Geometric Minimalist Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%235F6F52' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 { font-family: var(--alt-font); letter-spacing: -0.02em; }
.font-heading { font-family: var(--alt-font); }
.font-text { font-family: var(--main-font); }

.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-light-cream { background-color: var(--light-color); }

.btn-elegant {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-elegant:hover {
    background-color: var(--hover-color);
}

.shadow-soft {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: relative;
}

.content-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.container-custom {
    max-width: var(--container-width);
    margin: 0 auto;
}
.product-img { max-width: var(--product-img-width); }