:root {
    --primary-font: "Urbanist", sans-serif;
    --secondary-font: "Playfair Display", serif;
    --text-color: #85827C
    --base-color: #4A4845; 
    --heading-color: #2D2C2A; 

    --holiday-gold: #D4B896;
    --holiday-rose: #E8C8C8;
    --holiday-berry: #A86A6A;
    --warm-shadow: rgba(139, 94, 60, 0.15);

    /* Animation curves for holiday feel */
    --ease-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-soft: cubic-bezier(0.39, 0.575, 0.565, 1);
}

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

  body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.2px;
    color: var(--text-color);
    background-color: #FEFCFA;
    margin-top: 126px;
  }

  main {
    flex: 1;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    color: var(--heading-color);
  }
  
  h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
  }
  
  h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
  }
  
  h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
  }
  
  h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  p {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
  }

  a {
    font-family: var(--primary-font);
    color: #2D2C2A;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }

  /* 🌸 Feminine & Earthy Toast Notifications */
  .toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    width: 350px;
  }
  
  .toast {
    position: relative;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }
  
  .toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
  }
  
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .toast.hide {
    opacity: 0;
    transform: translateY(-20px);
  }
  
  .toast-success {
    background-color: rgba(243, 233, 220, 0.95);
    border: 1px solid #D4A59A;
    color: #7C6A5D;
  }
  
  .toast-success::before {
    background-color: #B88B4A;
  }
  
  .toast-error {
    background-color: rgba(252, 237, 235, 0.95);
    border: 1px solid #E8B4B8;
    color: #7C6A5D;
  }
  
  .toast-error::before {
    background-color: #D4A59A;
  }
  
  .toast-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .toast-content {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .toast-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  
  .toast-close:hover {
    opacity: 1;
  }
  
  /* 🍂 Spinner for loading state */
  .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(184, 139, 74, 0.3);
    border-radius: 50%;
    border-top-color: #B88B4A;
    animation: spin 0.8s ease-in-out infinite;
    margin: 0 auto;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* 🏵️ Enhanced Newsletter Form Styles */
  .newsletter {
    background-color: #F9F5F0;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E8D5C5;
    box-shadow: 0 4px 15px rgba(124, 106, 93, 0.08);
  }
  
  .newsletter-text {
    color: #7C6A5D;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  
  .newsletter-input {
    display: flex;
    gap: 8px;
  }
  
  .newsletter-input input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid #E8D5C5;
    border-radius: 8px;
    background-color: #FFF;
    color: #7C6A5D;
    font-size: 14px;
    transition: all 0.3s;
  }
  
  .newsletter-input input:focus {
    outline: none;
    border-color: #B88B4A;
    box-shadow: 0 0 0 2px rgba(184, 139, 74, 0.2);
  }
  
  .newsletter-input input::placeholder {
    color: #C7B8A8;
  }
  
  .newsletter-input button {
    background-color: #B88B4A;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  
  .newsletter-input button:hover {
    background-color: #A07A40;
    transform: translateY(-1px);
  }
  
  .newsletter-input button:disabled {
    background-color: #D4C4B0;
    cursor: not-allowed;
    transform: none;
  }
  
  .feedback-text {
    margin-top: 8px;
    font-size: 13px;
    color: #D4A59A;
    min-height: 18px;
  }

  @media (max-width: 480px) {
    body {
      margin-top: 110px;
    }
  }