/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  --primary-color: #6B4423;
  --primary-dark: #4A2C1A;
  --primary-light: #8B5A3C;
  --secondary-color: #8B4513;
  --accent-color: #CD853F;
  --text-dark: #1A0F0A;
  --text-light: #5C4033;
  --bg-light: #FAF5F0;
  --bg-white: #FFFFFF;
  --gold: #C9A961;
  --brown-dark: #3E2723;
  --brown-medium: #5D4037;
  --shadow: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.25);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar moderna */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px var(--shadow);
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.text-center {
  text-align: center;
}

/* Animações de scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }
}

/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/CalculoFrete.module.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.CalculoFrete_container__nWVqb {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 2px solid var(--bg-light);
}

.CalculoFrete_header__IrB40 {
  margin-bottom: 1rem;
}

.CalculoFrete_header__IrB40 h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
}

.CalculoFrete_header__IrB40 p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.CalculoFrete_inputGroup__nPZWL {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.CalculoFrete_cepInput__9NhW_ {
  flex: 1 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--bg-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.CalculoFrete_cepInput__9NhW_:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(107, 68, 35, 0.1);
}

.CalculoFrete_cepInput__9NhW_:disabled {
  background: var(--bg-light);
  cursor: not-allowed;
}

.CalculoFrete_calcularButton__p15fJ {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.CalculoFrete_calcularButton__p15fJ:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 68, 35, 0.3);
}

.CalculoFrete_calcularButton__p15fJ:disabled {
  background: var(--bg-light);
  color: var(--text-light);
  cursor: not-allowed;
  transform: none;
}

.CalculoFrete_error__BExJU {
  padding: 0.75rem 1rem;
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  color: #c33;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.CalculoFrete_opcoes__Dk87z {
  margin-top: 1rem;
}

.CalculoFrete_opcoesHeader__U2vRd {
  margin-bottom: 0.75rem;
}

.CalculoFrete_opcoesHeader__U2vRd p {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
}

.CalculoFrete_opcao__hUILx {
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--bg-white);
  border: 2px solid var(--bg-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.CalculoFrete_opcao__hUILx:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(107, 68, 35, 0.1);
}

.CalculoFrete_opcao__hUILx.CalculoFrete_selecionada__wF6_R {
  border-color: var(--primary-color);
  background: rgba(107, 68, 35, 0.05);
  box-shadow: 0 2px 8px rgba(107, 68, 35, 0.15);
}

.CalculoFrete_opcaoContent__rSHI_ {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.CalculoFrete_opcaoRadio__9ms4Z {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.CalculoFrete_opcaoInfo__GaWV4 {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.CalculoFrete_opcaoTitulo__sR9K_ {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.CalculoFrete_opcaoTitulo__sR9K_ strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.CalculoFrete_transportadora__e0TbX {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.CalculoFrete_opcaoDetalhes__zHO91 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.CalculoFrete_prazo__lbkeK {
  font-size: 0.9rem;
  color: var(--text-light);
}

.CalculoFrete_opcaoPreco__x6BXr {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.CalculoFrete_freteSelecionado__J_fr_ {
  padding: 1rem;
  background: rgba(107, 68, 35, 0.05);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  margin-top: 1rem;
}

.CalculoFrete_freteSelecionado__J_fr_ p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.CalculoFrete_freteSelecionado__J_fr_ strong {
  color: var(--primary-color);
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/CartSidebar.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
.CartSidebar_overlay__nogPP {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.CartSidebar_overlay__nogPP.CartSidebar_open__28BEh {
  opacity: 1;
  visibility: visible;
}

.CartSidebar_sidebar__N7AG_ {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.CartSidebar_sidebar__N7AG_.CartSidebar_open__28BEh {
  right: 0;
}

.CartSidebar_header__QdWkR {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
}

.CartSidebar_header__QdWkR h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--bg-white);
}

.CartSidebar_closeButton__j0f8g {
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.CartSidebar_closeButton__j0f8g:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.CartSidebar_content__I1SUM {
  flex: 1 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.CartSidebar_empty__Jzyhw {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.CartSidebar_emptyIcon__0QpCw {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.CartSidebar_empty__Jzyhw p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.CartSidebar_continueButton___6Qm_ {
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.CartSidebar_continueButton___6Qm_:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.CartSidebar_items__VcO_k {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.CartSidebar_item__l86M2 {
  padding: 1.5rem;
  border: 1px solid var(--bg-light);
  border-radius: 10px;
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.CartSidebar_item__l86M2:hover {
  box-shadow: 0 4px 10px var(--shadow);
}

.CartSidebar_itemInfo__dKflC h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.CartSidebar_weight__wH5Fu {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0.25rem 0;
}

.CartSidebar_price__nh4yF {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0.25rem 0;
}

.CartSidebar_itemControls__etuZ2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.CartSidebar_quantityButton__bbAWz {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.CartSidebar_quantityButton__bbAWz:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.CartSidebar_quantity__bhU5p {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.CartSidebar_removeButton__wv_oB {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  margin-left: auto;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.CartSidebar_removeButton__wv_oB:hover {
  opacity: 1;
  transform: scale(1.2);
}

.CartSidebar_itemTotal__JSMFH {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
}

.CartSidebar_footer__QG4o8 {
  padding: 1.5rem;
  border-top: 1px solid var(--bg-light);
  background: var(--bg-light);
}

.CartSidebar_totals__KOaa2 {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-white);
  border-radius: 8px;
}

.CartSidebar_totalLine__JmgLD {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.CartSidebar_totalLineTotal__kfQjP {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--bg-light);
  font-size: 1.2rem;
  color: var(--primary-color);
}

.CartSidebar_totalLineTotal__kfQjP strong {
  color: var(--primary-color);
}

.CartSidebar_checkoutButton__C6L_v {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.CartSidebar_checkoutButton__C6L_v:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 68, 35, 0.4);
}

.CartSidebar_checkoutButton__C6L_v:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.CartSidebar_clearButton__b9cqy {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.CartSidebar_clearButton__b9cqy:hover {
  background: var(--text-light);
  color: var(--bg-white);
}

@media (max-width: 768px) {
  .CartSidebar_sidebar__N7AG_ {
    max-width: 100%;
  }

  .CartSidebar_header__QdWkR {
    padding: 1rem 1.5rem;
  }

  .CartSidebar_content__I1SUM {
    padding: 1rem;
  }

  .CartSidebar_item__l86M2 {
    padding: 1rem;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/CartButton.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
.CartButton_cartButton__sxpsm {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 20px rgba(107, 68, 35, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border: none;
  font-size: 1.5rem;
}

.CartButton_cartButton__sxpsm:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 30px rgba(107, 68, 35, 0.6);
}

.CartButton_icon__L_R6o {
  display: block;
}

.CartButton_badge__Ux6_f {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gold);
  color: var(--text-dark);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--bg-white);
  animation: CartButton_pulse__RjYPL 2s infinite;
}

@keyframes CartButton_pulse__RjYPL {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .CartButton_cartButton__sxpsm {
    width: 55px;
    height: 55px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.3rem;
  }

  .CartButton_badge__Ux6_f {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }
}

/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/Footer.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
.Footer_footer__pQtti {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  border-top: 2px solid var(--bg-light);
}

.Footer_container__KpDnW {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.Footer_content__sRLWS {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 2rem;
}

.Footer_logoContainer__6lQsG {
  margin-bottom: 1rem;
}

.Footer_logoImage__WD24i {
  height: auto;
  width: auto;
  max-height: 60px;
  max-width: 200px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.Footer_section__hYCfj h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.Footer_section__hYCfj h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.Footer_section__hYCfj p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.Footer_section__hYCfj a {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.Footer_section__hYCfj a:hover {
  color: var(--primary-color);
}

.Footer_bottom__wxP7Z {
  border-top: 1px solid var(--bg-light);
  padding-top: 2rem;
  text-align: center;
}

.Footer_bottom__wxP7Z p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .Footer_footer__pQtti {
    padding: 2rem 0 1rem;
  }

  .Footer_container__KpDnW {
    padding: 0 1rem;
  }

  .Footer_content__sRLWS {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/Header.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
.Header_header__KwdYD {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.Header_header__KwdYD.Header_scrolled__qIjEW {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.Header_container__vrI8C {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Header_logo____uDV {
  display: flex;
  align-items: center;
}

.Header_logoLink__8hJcT {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.Header_logoLink__8hJcT:hover {
  opacity: 0.8;
}

.Header_logoImage__NjB6a {
  height: auto;
  width: auto;
  max-height: 60px;
  object-fit: contain;
}

.Header_logo____uDV h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
  font-weight: 700;
}

.Header_nav__tNWGY {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.Header_nav__tNWGY a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.Header_nav__tNWGY a:hover {
  color: var(--primary-color);
}

.Header_nav__tNWGY a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.Header_nav__tNWGY a:hover::after {
  width: 100%;
}

.Header_cartBadge__ORIhh {
  background: var(--gold);
  color: var(--text-dark);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
  animation: Header_pulse__4_DEt 2s infinite;
}

@keyframes Header_pulse__4_DEt {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.Header_menuToggle__FqD8X {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.Header_menuToggle__FqD8X span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .Header_container__vrI8C {
    padding: 1rem;
  }

  .Header_logoImage__NjB6a {
    max-height: 50px;
  }

  .Header_logo____uDV h1 {
    font-size: 1.5rem;
  }

  .Header_menuToggle__FqD8X {
    display: flex;
  }

  .Header_nav__tNWGY {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .Header_nav__tNWGY.Header_menuOpen__DChsz {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .Header_nav__tNWGY a {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
  }

  .Header_nav__tNWGY a::after {
    display: none;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app\\layout.tsx","import":"Inter","arguments":[{"subsets":["latin"]}],"variableName":"inter"} ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Inter_Fallback_f367f3';src: local("Arial");ascent-override: 90.49%;descent-override: 22.56%;line-gap-override: 0.00%;size-adjust: 107.06%
}.__className_f367f3 {font-family: '__Inter_f367f3', '__Inter_Fallback_f367f3';font-style: normal
}

