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

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  padding-left: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Header styles */
/* Base Styles & Variables */
  :root {
    --color-primary: #8B6C4F;
    --color-secondary: #D9C0A3;
    --color-accent: #4F3222;
    --color-light: #F5F1EA;
    --color-dark: #2B2118;
    --color-background: #FFFFFF;
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Montserrat', sans-serif;
    --border-radius: 4px;
    --shadow-soft: 0 10px 30px rgba(75, 56, 40, 0.08);
    --transition-standard: all 0.3s ease;
  }

  /* Header Base */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background-color: var(--color-background);
    box-shadow: var(--shadow-soft);
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }

  /* Left Section with Logo and Nav */
  .left-section {
    display: flex;
    align-items: center;
    flex: 1;
  }

  /* Logo Styling */
  .logo-wrapper {
    margin-right: 3rem;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-dark);
    transition: var(--transition-standard);
  }

  .logo-link:hover {
    transform: translateY(-2px);
  }

  .logo-icon {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-right: 0.5rem;
  }

  .logo-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  /* Desktop Navigation */
  .desktop-nav {
    display: none;
  }

  @media (min-width: 1024px) {
    .desktop-nav {
      display: block;
    }
  }

  .nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-item {
    position: relative;
    margin: 0 0.2rem;
  }

  .nav-link {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--color-dark);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition-standard);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-standard);
    opacity: 0;
  }

  .nav-link:hover {
    color: var(--color-primary);
  }

  .nav-link:hover::after {
    width: calc(100% - 2rem);
    opacity: 1;
  }

  .nav-item.active .nav-link {
    color: var(--color-primary);
    font-weight: 600;
  }

  .nav-item.active .nav-link::after {
    width: calc(100% - 2rem);
    opacity: 1;
  }

  /* Right Section with Actions */
  .right-section {
    display: flex;
    align-items: center;
  }

  .header-actions {
    display: none;
  }

  @media (min-width: 768px) {
    .header-actions {
      display: flex;
    }
  }

  .action-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-dark);
    margin-left: 1.5rem;
    padding: 0.5rem;
    transition: var(--transition-standard);
  }

  .action-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
  }

  .action-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }

  .action-text {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
  }

  /* Mobile Toggle Button */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  @media (min-width: 1024px) {
    .mobile-toggle {
      display: none;
    }
  }

  .toggle-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition-standard);
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-light);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
  }

  .close-menu {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
    padding: 0.5rem;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }

  .mobile-nav-item {
    margin-bottom: 1rem;
  }

  .mobile-nav-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--color-dark);
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(75, 56, 40, 0.1);
    transition: var(--transition-standard);
  }

  .mobile-nav-link:hover,
  .mobile-nav-item.active .mobile-nav-link {
    color: var(--color-primary);
    padding-left: 0.5rem;
  }

  .mobile-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
  }

  .mobile-action-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-dark);
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    transition: var(--transition-standard);
  }

  .mobile-action-link:hover {
    color: var(--color-primary);
  }

  /* Media Queries for Responsive Design */
  @media (min-width: 768px) {
    .header-container {
      padding: 1.2rem 5%;
    }
    
    .logo-text {
      font-size: 1.6rem;
    }
    
    .nav-link {
      padding: 1rem 1.2rem;
      font-size: 1rem;
    }
  }

  @media (min-width: 1200px) {
    .header-container {
      padding: 1.5rem 5%;
    }
    
    .nav-item {
      margin: 0 0.5rem;
    }
    
    .nav-link {
      padding: 1rem 1.5rem;
    }
  }

/* Footer styles */
/* Base Styles */
  .footer-container {
    width: 100%;
    background: linear-gradient(145deg, #f8f4f0 0%, #ede6e0 100%);
    color: #5a4a42;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d8c0a8, #a67c52, #d8c0a8);
  }

  .footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
  }

  .footer-bottom {
    background-color: rgba(166, 124, 82, 0.08);
    padding: 25px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(166, 124, 82, 0.2);
  }

  /* Typography */
  .footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: #7d5a44;
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #a67c52;
  }

  .footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6a5a50;
  }

  /* About Section */
  .footer-about {
    padding-right: 20px;
  }

  .footer-contact-info {
    margin-top: 25px;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .footer-contact-item i {
    margin-right: 10px;
    color: #a67c52;
    width: 16px;
  }

  /* Navigation Lists */
  .footer-nav-list,
  .footer-resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-item,
  .footer-resource-item {
    margin-bottom: 12px;
  }

  .footer-link {
    color: #6a5a50;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
  }

  .footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #a67c52;
    transition: width 0.3s ease;
  }

  .footer-link:hover {
    color: #a67c52;
    padding-left: 5px;
  }

  .footer-link:hover::before {
    width: 100%;
  }

  /* Newsletter */
  .footer-newsletter-form {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  .footer-newsletter-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #e0d5cc;
    background-color: #fff;
    color: #999;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    cursor: text;
  }

  .footer-newsletter-button {
    background-color: #a67c52;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0 4px 4px 0;
  }

  .footer-newsletter-button:hover {
    background-color: #8c6744;
  }

  /* Social Icons */
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
  }

  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    color: #a67c52;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  }

  .footer-social-icon:hover {
    transform: translateY(-3px);
    background-color: #a67c52;
    color: #fff;
    box-shadow: 0 5px 12px rgba(166, 124, 82, 0.3);
  }

  /* Legal Links */
  .footer-legal {
    display: flex;
    gap: 20px;
  }

  .footer-legal-link {
    color: #6a5a50;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
  }

  .footer-legal-link:hover {
    color: #a67c52;
  }

  /* Copyright */
  .footer-copyright-text {
    font-size: 13px;
    color: #6a5a50;
    margin: 0;
  }

  /* Payment Icons */
  .footer-payments {
    display: flex;
    gap: 10px;
  }

  .footer-payment-icon {
    font-size: 20px;
    color: #a67c52;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .footer-payment-icon:hover {
    opacity: 1;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .footer-main {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 40px 20px 30px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      padding: 20px;
    }

    .footer-legal {
      flex-direction: column;
      gap: 10px;
      order: 2;
    }

    .footer-copyright {
      order: 3;
    }

    .footer-payments {
      justify-content: center;
      order: 1;
      margin-bottom: 15px;
    }
    
    .footer-heading {
      font-size: 16px;
    }
    
    .footer-about {
      padding-right: 0;
    }
  }

/* Cookie Banner styles */
.sofa-cookie-notification {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #f8f4f1 !important;
    padding: 18px !important;
    z-index: 9999 !important;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15) !important;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #e0d5cc;
  }

  .cookie-content-wrapper {
    max-width: 1200px !important;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column;
  }

  .cookie-message {
    color: #5a4a42;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px 0;
  }

  .cookie-message a {
    color: #8b5a2b;
    text-decoration: underline;
  }

  .cookie-message a:hover {
    color: #6d4522;
  }

  .cookie-buttons-container {
    display: flex !important;
    gap: 15px;
    justify-content: flex-end;
  }

  .cookie-btn {
    padding: 10px 22px !important;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
  }

  .cookie-accept {
    background-color: #8b5a2b !important;
    color: white;
  }

  .cookie-accept:hover {
    background-color: #6d4522 !important;
  }

  .cookie-reject {
    background-color: #e8e8e8 !important;
    color: #5a4a42;
    border: 1px solid #d0d0d0;
  }

  .cookie-reject:hover {
    background-color: #d9d9d9 !important;
  }

  @media (min-width: 768px) {
    .cookie-content-wrapper {
      flex-direction: row !important;
      align-items: center;
      justify-content: space-between;
    }

    .cookie-message {
      margin: 0 20px 0 0;
    }

    .cookie-buttons-container {
      flex-shrink: 0;
    }
  }

  @media (max-width: 767px) {
    .cookie-buttons-container {
      justify-content: center !important;
    }
  }