/* Reset styles for modern website */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

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;
}

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

ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

button {
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  overflow: visible;
  text-transform: none;
}

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[hidden] {
  display: none !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* Header styles */
/* Base Reset and Variables */
  :root {
    --primary-color: #D01012;
    --secondary-color: #FFD500;
    --accent-color: #006DB7;
    --text-color: #333333;
    --light-color: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --header-height: 80px;
    --transition-speed: 0.3s;
    --border-radius: 4px;
  }

  /* Header Base Styles */
  .main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    z-index: 100;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Logo Styles */
  .logo-wrapper {
    display: flex;
    align-items: center;
  }

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

  .logo-icon {
    display: block;
    margin-right: 0.5rem;
  }

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

  /* Desktop Navigation */
  .desktop-nav {
    display: flex;
    align-items: center;
  }

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

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

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    position: relative;
  }

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

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

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
  }

  /* Dropdown Menu */
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
    z-index: 10;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color var(--transition-speed) ease;
  }

  .dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
  }

  /* Header Actions */
  .header-actions {
    display: flex;
    align-items: center;
  }

  .action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 0.5rem;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
    position: relative;
  }

  .action-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
  }

  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
  }

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

  .toggle-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all var(--transition-speed) ease;
  }

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

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

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    z-index: 10;
  }

  .mobile-menu-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }

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

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

  .mobile-nav-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.75rem 0;
    transition: color var(--transition-speed) ease;
  }

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

  .mobile-dropdown-menu {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0.5rem 0 1rem;
  }

  .mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .mobile-actions {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-action-button {
    display: block;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
  }

  .mobile-action-button:nth-child(2) {
    background-color: var(--secondary-color);
    color: var(--text-color);
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .nav-link {
      padding: 0.5rem 0.75rem;
    }
  }

  @media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }

    .mobile-toggle {
      display: flex;
    }

    .header-actions .action-button:not(.cart-button) {
      display: none;
    }

    .header-container {
      height: 70px;
    }

    .logo-text {
      font-size: 1.25rem;
    }
  }

/* Footer styles */
/* Footer Base Styles */
  .footer-container {
    width: 100%;
    background: linear-gradient(135deg, #ffcf00 0%, #ff9500 100%);
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  .footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    padding-right: 1.5rem;
  }
  
  /* Typography */
  .footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #d01012;
    position: relative;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 3px;
    width: 40px;
    background-color: #d01012;
    border-radius: 2px;
  }
  
  .footer-text {
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Navigation Lists */
  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav-item {
    margin-bottom: 0.75rem;
  }
  
  .footer-link {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    position: relative;
  }
  
  .footer-link:hover {
    color: #d01012;
    transform: translateX(3px);
  }
  
  .footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #d01012;
    transition: width 0.3s ease;
  }
  
  .footer-link:hover::after {
    width: 100%;
  }
  
  /* Social Media */
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: #ff9500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .footer-social-link:hover {
    background-color: #d01012;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .footer-social-link i {
    font-size: 1.2rem;
  }
  
  /* Newsletter */
  .footer-newsletter-signup {
    margin-bottom: 1.5rem;
  }
  
  .footer-button {
    display: inline-block;
    background-color: #d01012;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .footer-button:hover {
    background-color: #a70d0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Contact Info */
  .footer-contact-info {
    margin-top: 1.5rem;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .footer-contact-item i {
    margin-right: 0.75rem;
    color: #d01012;
  }
  
  /* Bottom Section */
  .footer-bottom {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    text-align: center;
  }
  
  .footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-legal-link {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
  }
  
  .footer-legal-link:hover {
    color: #d01012;
    text-decoration: underline;
  }
  
  .footer-copyright {
    margin-top: 1rem;
  }
  
  .footer-copyright-text {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-disclaimer {
    font-size: 0.75rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .footer-main {
      padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .footer-section {
      flex-basis: calc(50% - 1.5rem);
      min-width: 0;
    }
  }
  
  @media (max-width: 768px) {
    .footer-main {
      padding: 2rem 1.25rem 1rem;
    }
    
    .footer-section {
      flex-basis: 100%;
      padding-right: 0;
    }
    
    .footer-legal {
      flex-direction: column;
      gap: 0.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-main {
      padding: 1.5rem 1rem 0.5rem;
    }
    
    .footer-heading {
      font-size: 1.1rem;
    }
    
    .footer-bottom {
      padding: 1.25rem 1rem;
    }
  }

/* Cookie Banner styles */
.cookie-message a {
    color: #006db7;
    text-decoration: none;
    font-weight: 600;
  }

  .cookie-message a:hover {
    text-decoration: underline;
  }

  .cookie-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .cookie-btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-transform: uppercase;
  }

  .cookie-btn-reject {
    background-color: #e4e4e4;
    color: #333333;
  }

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

  .cookie-btn-accept {
    background-color: #006db7;
    color: white;
  }

  .cookie-btn-accept:hover {
    background-color: #005a9e;
  }
.cookie-content-container{
  position: fixed;
  width: 100%;
  z-index: 100;
  bottom: 0;
  left: 0;
background-color: #fff;
padding: 14px;
}
  @media (max-width: 768px) {
    .cookie-content-container {
      padding: 15px;
    }
    
    .cookie-buttons-wrapper {
      flex-direction: column;
    }
    
    .cookie-btn {
      width: 100%;
    }
  }