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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Header styles */
/* Base Styles & Variables */
  :root {
    --primary-color: #6b4c35;
    --secondary-color: #d8c3a5;
    --accent-color: #b88c50;
    --text-color: #2c2418;
    --light-text: #f8f4ec;
    --background-color: #f8f4ec;
    --shadow-color: rgba(107, 76, 53, 0.15);
    --transition: all 0.3s ease-in-out;
    --border-radius: 3px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
  }

  /* Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Header Container */
  .header-container {
    position: relative;
    width: 100%;
    background-color: var(--background-color);
    font-family: var(--font-secondary);
    z-index: 100;
    box-shadow: 0 4px 12px var(--shadow-color);
  }

  /* Top Bar */
  .top-bar {
    background-color: var(--primary-color);
    color: var(--light-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--spacing-lg);
    font-size: 0.85rem;
  }

  .contact-info {
    display: flex;
    gap: var(--spacing-lg);
  }

  .phone-link, .email-link {
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
  }

  .phone-link:hover, .email-link:hover {
    color: var(--secondary-color);
  }

  .phone-icon, .email-icon {
    margin-right: var(--spacing-xs);
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f8f4ec'%3E%3Cpath d='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1zM12 3v10l3-3h6V3h-9z'/%3E%3C/svg%3E");
  }

  .email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f8f4ec'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  }

  .social-icons {
    display: flex;
    gap: var(--spacing-md);
  }

  .social-icon {
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .social-icon:hover {
    transform: translateY(-2px);
    color: var(--secondary-color);
  }

  .social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
    z-index: -1;
  }

  .social-icon:hover:before {
    transform: scale(1);
  }

  .facebook-icon, .instagram-icon, .pinterest-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .facebook-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f8f4ec'%3E%3Cpath d='M20 2H4a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-5 14h-2v-4h-2v-2h2V8.5C13 7.12 13.67 6 15.5 6c.73 0 1.39.05 1.5.07v1.73h-1.03c-.8 0-1.17.39-1.17.97V10h2l-.5 2h-1.5v4z'/%3E%3C/svg%3E");
  }

  .instagram-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f8f4ec'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
  }

  .pinterest-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f8f4ec'%3E%3Cpath d='M12 0a12 12 0 0 0-4.373 23.142c-.018-.44-.034-.976-.034-1.563 0-1.531.872-3.542 1.837-4.861-.09-.201-.41-1.051-.41-2.02 0-1.892 1.09-3.308 2.458-3.308 1.158 0 1.72.878 1.72 1.93 0 1.173-.75 2.929-1.137 4.557-.324 1.366.686 2.478 2.035 2.478 2.442 0 4.318-2.582 4.318-6.316 0-3.305-2.37-5.606-5.756-5.606-3.925 0-6.23 2.954-6.23 6.01 0 1.19.452 2.466 1.016 3.157.106.129.121.241.09.372-.099.415-.32 1.31-.363 1.492-.057.24-.19.29-.437.175-1.632-.766-2.653-3.169-2.653-5.1 0-4.158 3.02-7.987 8.69-7.987 4.567 0 8.122 3.245 8.122 7.576 0 4.52-2.843 8.16-6.783 8.16-1.325 0-2.571-.689-2.997-1.506 0 0-.656 2.5-.817 3.113-.295 1.139-1.1 2.566-1.632 3.435A12 12 0 1 0 12 0z'/%3E%3C/svg%3E");
  }

  /* Main Header */
  .main-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--background-color);
    position: relative;
  }

  /* Logo */
  .logo-container {
    margin-right: var(--spacing-xl);
  }

  .logo-link {
    text-decoration: none;
    color: var(--primary-color);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }

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

  .logo-text .accent {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 400;
  }

  .logo-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: space-between;
  }

  .curtain-left, .curtain-right {
    width: 8px;
    height: 24px;
    background-color: var(--primary-color);
    position: relative;
    border-radius: 1px;
  }

  .curtain-left:before, .curtain-right:before {
    content: '';
    position: absolute;
    top: 0;
    width: 8px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 1px;
  }

  .curtain-left:before {
    left: 0;
  }

  .curtain-right:before {
    right: 0;
  }

  /* Navigation */
  .desktop-nav {
    justify-self: center;
    width: 100%;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 4px 8px;
    transition: var(--transition);
    display: block;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
  }

  .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
  }

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

  .nav-link:hover:after {
    width: 70%;
  }

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

  .nav-item.active .nav-link:after {
    width: 70%;
    background-color: var(--primary-color);
  }

  /* Header Actions */
  .header-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
  }

  .cart-icon, .favorites-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
  }

  .cart-icon:hover, .favorites-icon:hover {
    background-color: rgba(107, 76, 53, 0.1);
    transform: translateY(-2px);
  }

  .cart-symbol, .heart-symbol {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .cart-symbol {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232c2418'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
  }

  .heart-symbol {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232c2418'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  }

  .cart-counter {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--light-text);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

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

  .toggle-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
  }

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

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

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
  }

  .close-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 0;
  }

  .close-line:first-child {
    transform: translateY(-50%) rotate(45deg);
  }

  .close-line:last-child {
    transform: translateY(-50%) rotate(-45deg);
  }

  .mobile-menu-container {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .mobile-logo {
    margin-bottom: var(--spacing-xl);
    text-align: center;
  }

  .mobile-nav-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
  }

  .mobile-nav-item {
    margin-bottom: var(--spacing-md);
  }

  .mobile-nav-link {
    display: block;
    padding: var(--spacing-md) 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(107, 76, 53, 0.1);
    transition: var(--transition);
  }

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

  .mobile-nav-link:hover {
    color: var(--accent-color);
    padding-left: var(--spacing-sm);
  }

  .mobile-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .mobile-phone, .mobile-email {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
  }

  .mobile-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
  }

  .mobile-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .mobile-social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .main-header {
      grid-template-columns: auto 1fr auto;
      padding: var(--spacing-md) var(--spacing-md);
    }
    
    .nav-list {
      gap: var(--spacing-sm);
    }
    
    .nav-link {
      padding: var(--spacing-xs) var(--spacing-sm);
      font-size: 0.9rem;
    }
  }

  @media (max-width: 768px) {
    .top-bar {
      display: none;
    }
    
    .main-header {
      grid-template-columns: auto 1fr auto;
      padding: var(--spacing-md);
    }
    
    .desktop-nav {
      display: none;
    }
    
    .mobile-toggle {
      display: flex;
      order: -1;
    }
    
    .logo-container {
      margin: 0 auto;
    }
    
    .mobile-menu {
      display: block;
    }
  }

  @media (max-width: 480px) {
    .header-actions {
      gap: var(--spacing-sm);
    }
    
    .cart-icon, .favorites-icon {
      width: 36px;
      height: 36px;
    }
    
    .logo-text {
      font-size: 1.3rem;
    }
    
    .mobile-menu-container {
      padding: var(--spacing-lg);
    }
  }

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

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

    /* Main Footer Layout */
    .footer-main {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        max-width: 1400px;
        margin: 0 auto 3rem;
    }

    /* Section Styles */
    .footer-section {
        position: relative;
    }

    .footer-heading {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        position: relative;
        color: #8b6b5a;
    }

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

    .footer-section:hover .footer-heading::after {
        width: 60px;
    }

    .footer-text {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

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

    .footer-nav-item,
    .footer-category-item {
        margin-bottom: 0.75rem;
    }

    .footer-link {
        color: #5a4a42;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
        padding-left: 1rem;
    }

    .footer-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #c19a7b;
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: #a17a5c;
        transform: translateX(5px);
    }

    .footer-link:hover::before {
        background-color: #a17a5c;
    }

    /* Contact Section */
    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .footer-icon {
        color: #c19a7b;
        margin-right: 0.75rem;
        min-width: 16px;
        margin-top: 4px;
    }

    .footer-contact-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-hours {
        border-top: 1px dashed rgba(90, 74, 66, 0.2);
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }

    /* Newsletter Section */
    .footer-newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-input {
        padding: 0.75rem 1rem;
        border: 1px solid #e0d0c5;
        border-radius: 4px;
        background-color: rgba(255, 255, 255, 0.7);
        font-family: inherit;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .footer-input:focus {
        outline: none;
        border-color: #c19a7b;
        background-color: white;
        box-shadow: 0 0 0 3px rgba(193, 154, 123, 0.2);
    }

    .footer-button {
        padding: 0.75rem 1.5rem;
        background-color: #c19a7b;
        color: white;
        border: none;
        border-radius: 4px;
        font-family: inherit;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .footer-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .footer-button:hover {
        background-color: #a17a5c;
    }

    .footer-button:hover::before {
        left: 100%;
    }

    /* Social Section */
    .footer-social {
        text-align: center;
        padding: 2rem 0;
        border-top: 1px solid rgba(90, 74, 66, 0.1);
        border-bottom: 1px solid rgba(90, 74, 66, 0.1);
        margin-bottom: 2rem;
    }

    .footer-social-heading {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        font-weight: 500;
        color: #8b6b5a;
    }

    .footer-social-icons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(193, 154, 123, 0.1);
        color: #a17a5c;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .footer-social-icon:hover {
        background-color: #c19a7b;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(193, 154, 123, 0.3);
    }

    /* Bottom Section */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-legal-link {
        color: #8b6b5a;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        position: relative;
    }

    .footer-legal-link::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #c19a7b;
        transition: width 0.3s ease;
    }

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

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

    .footer-copyright {
        text-align: center;
    }

    .footer-copyright-text {
        font-size: 0.9rem;
        color: #8b6b5a;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .footer-container {
            padding: 3rem 1.5rem 1.5rem;
        }

        .footer-main {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-section {
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed rgba(90, 74, 66, 0.1);
        }

        .footer-section:last-child {
            border-bottom: none;
        }

        .footer-social {
            padding: 1.5rem 0;
        }

        .footer-bottom {
            gap: 1rem;
        }

        .footer-legal {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .footer-main {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Animation for social icons */
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }

    .footer-social-icon:hover i {
        animation: pulse 1s infinite;
    }

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

  .cookie-content-wrapper {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 20px !important;
  }

  .cookie-info-text {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px !important;
  }

  .cookie-buttons-container {
    display: flex !important;
    gap: 15px;
    margin-bottom: 12px !important;
  }

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

  .cookie-accept {
    background-color: #6b4e71 !important;
    color: white;
  }

  .cookie-accept:hover {
    background-color: #5a3d60 !important;
  }

  .cookie-reject {
    background-color: #e0e0e0 !important;
    color: #4a4a4a;
  }

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

  .cookie-policy-link {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
  }

  .cookie-policy-link a {
    color: #6b4e71;
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .cookie-content-wrapper {
      padding: 15px !important;
    }
    
    .cookie-buttons-container {
      flex-direction: column;
    }
    
    .cookie-btn {
      width: 100% !important;
      margin-bottom: 10px !important;
    }
  }