/* ---------------------------------------------------------
   IMPORTAÇÕES E BASE
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fredoka', sans-serif;
  background: #f7f7f7;
  color: #0a2540;
}

/* Aviso topo */
.announce {
  background: #1500A9;
  color: #fff;
  padding: 8px 0;
  font-weight: 600;
  text-align: center;
}

/* -------------------- HEADER -------------------- */
/* HEADER CENTRALIZADO */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza o conteúdo */
  gap: 20px; /* espaço entre logo, pesquisa e ícones */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #fff; /* ou a cor desejada */
}

/* Logo */
.brand {
  flex: 0 0 auto;
}

.brand img {
  height: auto;
  max-height: 70px;
  max-width: 175px;
}

/* Barra de busca maior e centralizada */
.search {
  flex: 1.5; /* barra maior */
  max-width: 500px;
}

.search input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: 0.2s;
}

.search input:focus {
  border-color: #1500A9;
  box-shadow: 0 0 0 2px rgba(21,0,169,0.15);
}

/* Ícones alinhados à direita */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  transition: transform 0.2s;
}

.icon-wrapper:hover {
  transform: scale(1.1);
}

/* Badge */
.icon-wrapper .badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff8600;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .search {
    max-width: 100%;
  }
  .header-actions {
    justify-content: center;
  }
}

/* Menu */
.primary-nav {
  font-family: 'fredoka';
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 10px 0;
}

.primary-nav ul.menu {
  font-family: 'fredoka';
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}



.primary-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #0a2540;
  padding: 5px 10px;
  transition: color 0.2s;
}

.primary-nav a:hover {
  color: #ff8600;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .search {
    margin: 10px 0;
  }
  .header-actions {
    justify-content: center;
    margin-bottom: 10px;
  }
  .primary-nav ul.menu {
    font-family: 'fredoka';
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.hero {
  margin-top: 40px;
  background: linear-gradient(to bottom, #fffceb 65%, #ff8600 65%);
  border-radius: 22px;
  overflow: hidden;
  padding: 50px 30px;
  position: relative;
}

.hero-content h1 {
    font-family: 'fredoka';
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.hero-content p {
  margin: 10px 0 25px;
  font-size: 16px;
  color: #444;
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  color: #ff8600;
  font-weight: 600;
}

/* Botões */
.button.primary {
  background: #1500A9;
  color: #fff;
  border-radius: 50px;
  padding: 14px 26px;
  margin-right: 10px;
  font-size: 15px;
}

.button.hollow {
  background: #1500A9;
  color: #fff;
  border-radius: 50px;
  padding: 14px 26px;
  margin-right: 10px;
  font-size: 15px;
}

.button.hollow:hover {
  background-color: #1500A9!important;
  color:#fff !important;
  opacity: 1 !important;
}

/* Bolinhas */
.dots {
  margin-top: 18px;
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ddd;
  margin-right: 6px;
}

.dot.active {
  background: #1500A9;
}

/* Imagem da direita */
.hero-img img {
  width: 100%;
  max-width: 1010px;
  display: block;
  margin: 40px auto 0;
  transform: scale(1.2) translateX(-5%);
}

/* ---------------------------------------------------------
   GRID DE PRODUTOS
--------------------------------------------------------- */
.section-head h3 {
  font-family: 'fredoka';
  font-size: 30px;
  font-weight: 700;
  margin-top: 40px;
  color: #0a2540;
}

.view-all {
  color: #ff8600;
  font-weight: 600;
}

.product-grid .product {
  padding: 15px;
  border-radius: 18px;
  text-align: left;
  color: #0a2540;
  text-decoration: none;
  transition: .2s;
  background: #fff;
}

.product-grid .product:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.08);
}

.pimg {
  background: #ddd;
  height: 140px;
  border-radius: 14px;
  margin-bottom: 8px;
}

.pname {
  font-size: 16px;
  font-weight: 600;
}

.pmeta {
  font-size: 14px;
  color: #666;
}

.price {
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
}

.tag.new {
  background: #ff8600;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
  position: absolute;
  margin-top: -10px;
}

/* ---------------------------------------------------------
   DESTAQUES
--------------------------------------------------------- */
.highlights {
  margin-top: 50px;
}

.highlight-left h3 {
  font-size: 28px;
  font-weight: 700;
}

.hlight-txt {
  color: #666;
}

.himg {
  background: #ddd;
  height: 160px;
  border-radius: 18px;
  margin-bottom: 10px;
}

.hprice {
  font-size: 18px;
  font-weight: 700;
  color: #0a2540;
}

.promo, .rating {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0px 12px 25px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

/* ---------------------------------------------------------
   NEWSLETTER
--------------------------------------------------------- */
.newsletter {
  margin-top: 50px;
  background: #fffceb;
  padding: 35px 25px;
  border-radius: 22px;
}

.newsletter strong {
  font-size: 20px;
}

.newsletter .grab {
  color: #ff8600;
  font-weight: 600;
}

.newsletter input {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding-left: 10px;
  height: 45px;
}

.newsletter .sub {
  background: #ff8600;
  color: #fff;
  border-radius: 12px;
  padding: 0 20px;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.site-footer {
  margin-top: 60px;
  background: #062a53;
  color: #fff;
  padding: 50px 0 20px;
}

.site-footer a {
  color: #fff;
  opacity: .8;
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  opacity: 1;
}

.site-footer h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.foot-bottom {
  margin-top: 30px;
  opacity: .7;
  font-size: 14px;
}

/* -----------------------------
   SEÇÃO DE CATEGORIAS
----------------------------- */
.container {
  text-align: center; /* centraliza horizontalmente elementos inline-block */
}

/* O próprio card */
.category-card {
  width: 300px;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  align-items: flex-end;   /* leva para baixo */
  text-align: center;
  margin: 10px;
  margin-left: -12px;
  padding-bottom: 0px;    /* distancia do canto inferior */
}

.img-Caes { background-image: url("./../img/cao1.png"); }
.img-Aves { background-image: url("./../img/aves1.png"); }
.img-Gato { background-image: url("./../img/gato1.png"); }
.img-Peixe { background-image: url("./../img/Peixe1.png"); }

.category-name {
  margin-top: 10px;       /* espaço entre imagem e nome */
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}-----------------------------
   SEÇÃO DE REVIEWS
----------------------------- */
.reviews-section {
  padding: 60px 30px;
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
}

.reviews-wrapper .review-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  min-height: 230px;
}

h4{
  font-family: 'fredoka';
}

.review-card h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'fredoka';
}

.review-card p {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.stars {
  font-size: 26px;
  color: #ffbb00;
  margin-bottom: 10px;
}

.stars.small {
  font-size: 20px;
}

.review-card .author {
  font-size: 13px;
  color: #555;
}

.review-card .based {
  margin-top: 10px;
  font-size: 14px;
}

.review-card .based a {
  color: #0073e6;
  text-decoration: none;
}

.review-card .based a:hover {
  text-decoration: underline;
}

/* -----------------------------
   RESPONSIVIDADE GERAL
----------------------------- */
@media (max-width: 640px) {
  .category-card {
    margin-bottom: 20px;
  }
}

.product .pimg {
    width: 100%;
    height: 260px; /* AUMENTE AQUI o tamanho da foto */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    background-color: #eee;
}



/* Cada produto com uma imagem diferente */
.img1 { background-image: url("./../img/cama.png"); }
.img2 { background-image: url("./../img/potinho.png"); }
.img3 { background-image: url("./../img/coleira.jpeg"); }
.img4 { background-image: url("./../img/ração.jpeg"); }
.img5 { background-image: url("img/produto5.jpg"); }
.img6 { background-image: url("img/produto6.jpg"); }
.img7 { background-image: url("img/produto7.jpg"); }
.img8 { background-image: url("img/produto8.jpg"); }


/* Newsletter Section Styles */
/* Newsletter Styles */
.newsletter-section {
    background: #aeb8fe;
    margin: 0;
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 3rem 0;
}

.newsletter-title {
    font-size: 1.5rem;
    color: #1f2937;
    font-weight: 600;
    display: block;
    width: 100%;
}

.newsletter-subtitle {
    color: #4338ca;
    font-weight: 500;
    font-size: 1.125rem;
    width: 100;
    margin: 1.5rem 0;
}

.newsletter-form-container {
    display: flex;
    justify-content: flex-start;
}

.newsletter-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    border: 1px solid #d1d5db;
    outline: none;
}

.newsletter-input:focus {
    ring-width: 2px;
    ring-color: #6366f1;
}

.newsletter-button {
    padding: 0.5rem 1rem;
    background-color: #4338ca;
    color: white;
    font-weight: 600;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    transition: background-color 0.2s;
}

.newsletter-button:hover {
    background-color: #3730a3;
}

/* Responsive Design */
@media (min-width: 768px) {
    .newsletter-grid {
        grid-template-columns: 2fr 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form-container {
        justify-content: center;
    }
    
    .newsletter-input {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .newsletter-grid {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.categories-section .category-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories-section .category-wrapper .category-card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.categories-section .category-wrapper .category-name {
  margin: 0;
  padding: 0;
  line-height: 1.2; /* reduz espaço vertical */
}


/* Rodapé: ocupar toda a largura da tela */
footer {
  width: 100vw; /* largura total da tela */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: #1f2937; /* bg-gray-900 do Tailwind */
  color: #d1d5db; /* text-gray-300 */
  padding-top: 3rem; /* py-12 */
  padding-bottom: 4rem; /* md:py-16 */
}

/* Grid do rodapé */
footer .max-w-7xl {
  max-width: none; /* remove o limite de largura do container */
  padding-left: 2rem; /* sm:px-6 */
  padding-right: 2rem;
}

/* Colunas do footer */
footer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem; /* gap-8 */
  border-bottom: 1px solid #374151; /* border-gray-700 */
  padding-bottom: 2.5rem; /* pb-10 */
  margin-bottom: 2rem; /* mb-8 */
}

/* Links do rodapé */
footer .link-col h5 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem; /* mb-4 */
}

footer .link-col a {
  display: block;
  font-size: 0.875rem; /* text-sm */
  color: #d1d5db; /* text-gray-300 */
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

footer .link-col a:hover {
  color: #6366f1; /* hover:text-indigo-400 */
}

/* Avaliações */
footer .link-col p {
  font-size: 0.875rem;
  font-style: italic;
  color: #9ca3af; /* text-gray-400 */
  border-left: 4px solid #f97316; /* border-orange-500 */
  padding-left: 0.75rem;
}

/* Botão contato */
footer button {
  background-color: #4f46e5; /* bg-indigo-600 */
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1.5rem; /* py-2 px-6 */
  border-radius: 1rem; /* rounded-xl */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

footer button:hover {
  background-color: #4338ca; /* hover:bg-indigo-700 */
}

/* Redes sociais */
footer .flex a i {
  width: 1.5rem;
  height: 1.5rem;
  color: #9ca3af; /* text-gray-400 */
  transition: color 0.3s;
}

footer .flex a:hover i {
  color: #6366f1; /* hover:text-indigo-400 */
}

/* Direitos autorais e localização/idioma */
footer > .max-w-7xl > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #9ca3af; /* text-gray-400 */
  padding-top: 1rem;
}

@media(min-width:768px){
  footer > .max-w-7xl > div:last-child {
    flex-direction: row;
  }
}

/* Localização e idioma */
footer .flex.items-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

footer .flex.items-center i {
  width: 1rem;
  height: 1rem;
  color: #f97316; /* text-orange-400 */
  transition: color 0.3s;
}

footer .flex.items-center:hover i {
  color: #ffffff;
}

.category-header {
      margin-bottom: 1rem;
    }
    
    .category-header h1 {
      margin: 0;
      font-size: 2rem;
      font-weight: bold;
    }
    
    .subcategories {
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #e6e6e6;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }
    
    .subcategories a {
      font-weight: bold;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }
    
    .subcategories a:hover {
      color: #2ba6cb;
    }
    
    .filter-section {
      margin-bottom: 2rem;
    }
    
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
      align-items: center;
    }
    
    .filter-bar .filter-label {
      font-weight: bold;
      margin-right: 0.5rem;
    }
    
    .filter-bar button {
      padding: 0.5rem 1rem;
      background-color: #f5f5f5;
      color: #333;
      border: 1px solid #ddd;
      border-radius: 4px;
      cursor: pointer;
      font-size: 0.9rem;
    }
    
    .filter-bar button:hover {
      background-color: #e9e9e9;
    }
    
    .arrivals-title {
      margin: 2rem 0 1rem;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .product-card {
      border: 1px solid #e6e6e6;
      border-radius: 4px;
      padding: 1rem;
      transition: transform 0.2s;
      text-decoration: none;
      color: inherit;
      display: block;
      position: relative;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-decoration: none;
      color: inherit;
    }
    
    .product-image {
      height: 200px;
      background-color: #f5f5f5;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
    }
    
    .product-name {
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #333;
    }
    
    .product-meta {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    
    .product-price {
      font-weight: bold;
      color: #2ba6cb;
      font-size: 1.1rem;
    }
    
    .show-more {
      text-align: center;
      margin: 2rem 0;
    }
    
    .show-more button {
      background-color: #2ba6cb;
      color: white;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
    }
    
    .show-more p {
      margin-top: 0.5rem;
      color: #666;
    }
    
    .product-tag {
      background-color: #ff6b6b;
      color: white;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      position: absolute;
      top: 10px;
      left: 10px;
    }

.hlight-items {
  margin-top: 20px;
}

/* Cada card */
.hitem {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.2s ease-in-out;
}

.hitem:hover {
  transform: translateY(-4px);
}

/* Imagem do card */
.himg {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 10px;
}

.himg img {
  width: 150%;
  height: 150%;
  object-fit: cover;
}

/* Título */
.hitem strong {
  font-size: 16px;
  display: block;
  margin-top: 5px;
}

/* Preço */
.hprice {
  font-size: 18px;
  font-weight: 700;
  color: #ff6f3c;
  margin-top: 5px;
}

/* -----------------------------
   SEÇÃO — DESTAQUES DA SEMANA
----------------------------- */

.hlight-items {
  margin-top: 20px;
}

.hitem {
  background: #fff;
  padding: 12px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.2s ease-in-out;
}

.hitem:hover {
  transform: translateY(-4px);
}
/* ================================
   HOME / INDEX
================================ */

/* Cards de produtos */
.himg {
  background: #ddd;
  height: 160px;
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
}

.himg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hitem strong {
  font-size: 16px;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.hprice {
  font-size: 18px;
  margin-top: 4px;
  color: #ff6f3c;
  font-weight: 700;
}

/* Ajuste dos cards laterais (Desconto + Avaliação) */
.highlights aside {
  margin-top: 80px;
}

.promo.callout,
.rating.callout {
  border-radius: 18px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .highlights aside {
    margin-top: 20px;
  }
}

/* -----------------------------
   SEÇÃO DE REVIEWS
----------------------------- */
.reviews {
  margin-top: 60px;
}

.reviews h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.review-user {
  font-weight: 600;
  margin-bottom: 6px;
}

.review-stars {
  color: #f4c542;
  margin-bottom: 8px;
}

.review-text {
  font-size: 15px;
  color: #444;
}

.highlights .button {
  margin-top: 35px;
}

/* Newsletter */
.newsletter-form-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.newsletter-button {
  padding: 12px 20px;
  background: #ffaa00;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Categorias */
.categories-section .category-wrapper {
  position: relative;
  display: inline-block;
  padding: 0;
}

.categories-section .category-wrapper .category-card {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin-bottom: 0;
}

.categories-section .category-wrapper .category-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  margin: 0;
  padding: 4px 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 6px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Produtos em destaque (grid) */
.product .pimg img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 10px;
}

/* Tipografia geral da home */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, sans-serif; }
body { background-color: #eeeeee; }

/* ================================
   HOME / INDEX - FOUNDATION
================================ */

/* -----------------------------
   RESET E TIPOGRAFIA
----------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
}

/* -----------------------------
   GRID PRINCIPAL
----------------------------- */
.grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* -----------------------------
   CARDS DE PRODUTOS
----------------------------- */
.himg {
  background: #ddd;
  height: 160px;
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
}

.himg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hitem strong {
  font-size: 16px;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.hprice {
  font-size: 18px;
  margin-top: 4px;
  color: #ff6f3c;
  font-weight: 700;
}

/* -----------------------------
   DESTAQUES LATERAIS
----------------------------- */
.highlights aside {
  margin-top: 80px;
}

.promo.callout,
.rating.callout {
  border-radius: 18px;
  margin-bottom: 20px;
}

.highlights .button {
  margin-top: 35px;
}

/* -----------------------------
   REVIEWS
----------------------------- */
.reviews {
  margin-top: 60px;
}

.reviews h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.review-user {
  font-weight: 600;
  margin-bottom: 6px;
}

.review-stars {
  color: #f4c542;
  margin-bottom: 8px;
}

.review-text {
  font-size: 15px;
  color: #444;
}

/* -----------------------------
   NEWSLETTER
----------------------------- */
.newsletter-form-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.newsletter-button {
  padding: 12px 20px;
  background: #ffaa00;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-button:hover {
  background: #ff9500;
}

/* -----------------------------
   CATEGORIAS
----------------------------- */
.categories-section .category-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

.categories-section .category-wrapper .category-card {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}

.categories-section .category-wrapper .category-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  margin: 0;
  padding: 4px 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 6px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* -----------------------------
   PRODUTOS EM DESTAQUE
----------------------------- */
.product .pimg img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 10px;
}

/* -----------------------------
   RESPONSIVIDADE
----------------------------- */
@media (max-width: 768px) {
  .highlights aside {
    margin-top: 20px;
  }

  .newsletter-form-container {
    flex-direction: column;
  }

  .newsletter-button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .himg {
    height: 140px;
  }

  .product .pimg img {
    height: 200px;
  }

  .reviews h3 {
    font-size: 20px;
  }
}

.primary-nav {
  position: relative;
}

.primary-nav ul.menu {
  display: flex;
  list-style: none;
  gap: 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-43%); /* centraliza no meio do header */
  margin: 0;
  padding: 0;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #0a2540;
  padding: 5px 10px;
  transition: color 0.2s;
}

.primary-nav a:hover {
  color: #ff8600;
}

/* Banner Destaques */
.banner {
  height: 550px; /* altura do banner */
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hlight-items {
  margin-top: 20px;
}

.hitem {
  padding: 10px;
}

.hitem img {
  width: 100%;
  height: 300px; /* ajusta a altura conforme desejar */
  object-fit: cover;
  border-radius: 15px;
  display: block;
}
.subcategories-section {
    margin: 50px 0;
}

.subcategories-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.subcategory-item {
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subcategory-item a {
    text-decoration: none;
    color: #333;
}

.subcategory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.subcategory-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
}

.subcategory-name {
    font-size: 1rem;
    font-weight: 600;
}

/* ===== Product Page ===== */
.product-page {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Galeria de imagens */
.product-gallery .main-image-placeholder {
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 10px;
  border-radius: 8px;
}

.thumbnail-selector .thumbnail {
  height: 60px;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 5px;
}

.thumbnail-selector .thumbnail.active {
  border: 2px solid #333;
}

/* Seções do produto */
.product-sections a.section-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
}

.product-sections a.section-link:hover {
  background-color: #f8f8f8;
}

.product-sections .stars {
  color: #f4c150;
}

/* Informações do produto */
.product-info .info-header {
  margin-bottom: 10px;
}

.product-info .wishlist-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.product-description {
  margin-bottom: 15px;
}

.price-block {
  margin-bottom: 15px;
}

.current-price {
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 10px;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.discount-badge {
  background-color: #dc3545;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.tax-info {
  font-size: 0.85rem;
  color: #666;
}

.ratings .stars {
  color: #f4c150;
}

.option-selector {
  margin-bottom: 15px;
}

.add-to-cart-btn {
  margin-bottom: 15px;
}

.shipping-info p {
  margin: 2px 0;
}

.content-block {
  margin-bottom: 15px;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  margin-bottom: 5px;
}

.features-list .check-icon {
  color: #28a745;
  margin-right: 5px;
}

/* ===================== */
/* GERAL */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===================== */
/* HEADER */
.header-bar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.brand-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6b46c1; /* Roxo similar ao logo */
}
.back-to-shop {
  font-size: 0.9rem;
  color: #666;
  padding: 0.25rem 0.5rem;
}




/* ===================== */
/* CART PAGE */
.cart-page h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.cart-page p {
  color: #555;
  font-size: 0.95rem;
}

/* ===================== */
/* CART ITEMS */

.cart-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s;
}
.cart-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.item-img-placeholder {
  width: 100px;
  height: 100px;
  background-color: #f0f0f0;
  border-radius: 10px;
}
.cart-item h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.shipping {
  font-size: 0.8rem;
  color: green;
  margin-top: 0.2rem;
}
.price-qty {
  margin-top: 0.75rem;
}
.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}
.qty-box button {
  background: #f0f0f0;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-weight: bold;
}
.qty-box input {
  width: 2.5rem;
  border: none;
  text-align: center;
}
.price {
  font-weight: bold;
  font-size: 1.2rem;
  color:  #ff8600;
}
.discount {
  font-size: 0.8rem;
  color:  #ff8600;
}
.remove-btn {
  background: #ffeded;
  border: 1px solid #ffcccc;
  color:  #ff8600;
  border-radius: 6px;
  font-size: 1.2rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

/* ===================== */
/* SUMMARY */
.cart-summary {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 1rem;
}
.cart-summary h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color:  #ff8600;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
.cart-summary .button {
  margin-top: 1rem;
  background-color: #ff8600 ;
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: bold;
  text-align: center;
  transition: background 0.2s;
}
.cart-summary .button:hover {
  background-color: #553c9a;
}
.cart-summary .button.secondary {
  background-color: #f0f0f0;
  color: #333;
  margin-top: 0.5rem;
}
.cart-summary .button.secondary:hover {
  background-color: #e0e0e0;
}

/* ===================== */
/* SERVICES */
.services {
  margin-top: 2rem;
}
.service {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* ===================== */
/* FOOTER */
.footer-bar {
  background:  #ff8600;
  color: #fff;
  padding: 2rem 0;
}
.footer-bar h5 {
  margin-bottom: 0.5rem;
  color: #f0f0f0;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.25rem;
}
.footer-links a {
  color: #ccc;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bar p {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

.checkout-container {
  padding: 2rem 0;
}

.checkout-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff8600;
}

/* FORM */
.checkout-form h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #ff8600;
}

.checkout-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"] {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.checkout-form input:focus {
  border-color:  #ff8600;
  outline: none;
}

/* PAYMENT OPTIONS */
.payment-options .pay-option {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.payment-options .pay-option:hover {
  border-color:  #ff8600;
  background-color: #f0f0ff;
}

.payment-options input[type="radio"] {
  margin-right: 0.5rem;
}

/* CREDIT INFO */
.credit-info label {
  display: block;
  margin-bottom: 1rem;
}

/* =============================
   CHECKOUT SUMMARY
============================= */
.checkout-summary {
  background-color: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

.checkout-summary h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.sum-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.totals {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 1rem;
}

.totals div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.totals .total {
  font-weight: bold;
  font-size: 1.1rem;
  color:  #ff8600;
}

/* BUTTON */
.btn-checkout {
  background-color:  #ff8600;
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.3rem;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-top: 1rem;
  transition: background 0.2s ease;
}

.btn-checkout:hover {
  background-color:  #ff8600;
}

.secure-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}


.brand-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5a2eb7;
}

.back-to-shop {
  font-size: 0.9rem;
  color: #666;
}

.back-to-shop:hover {
  color: #5a2eb7;
}

.checkout-container {
  padding: 2rem 0;
}

.checkout-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #5a2eb7;
}

.checkout-form label {
  display: block;
  margin-bottom: 1rem;
}

.checkout-form input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.3rem;
  border: 1px solid #ccc;
}

.checkout-form input:focus {
  border-color: #5a2eb7;
  outline: none;
}

.payment-options .pay-option {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.payment-options .pay-option:hover {
  border-color: #5a2eb7;
  background: #f0f0ff;
}

.credit-info label {
  margin-bottom: 1rem;
}

.checkout-summary {
  background: #fff;
  padding: 1rem;
  border-radius: 0.3rem;
  border: 1px solid #ccc;
}

.checkout-summary h2 {
  margin-bottom: 1rem;
}

.sum-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.totals .grid-x {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.button.expanded {
  background: #5a2eb7;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem;
  margin-top: 1rem;
}

.button.expanded:hover {
  background: #3f1a85;
}

.secure-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}
.callout.secondary {
  background: #fef3c7;
  color: #92400e;
  font-weight: bold;
  text-align: center;
  padding: 0.8rem 0;
}

/* =====================
   THANK YOU BOX
===================== */
.thankyou-box {
  margin: 3rem 0;
  padding: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: #16a34a;
  margin-bottom: 1rem;
}

.thankyou-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111827;
}

.thankyou-box p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* =====================
   ORDER SUMMARY
===================== */
.order-summary.callout {
  background: #f9fafb;
  border-left: 4px solid #16a34a;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.label.success {
  background: #16a34a;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: bold;
}

/* =====================
   NEXT STEPS
===================== */
.next-steps h4 {
  margin-bottom: 1rem;
  color: #111827;
}

.steps-grid .step-item {
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.steps-grid .step-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5a2eb7;
  margin-bottom: 0.5rem;
}

/* =====================
   BUTTONS
===================== */
.button.large {
  margin: 0.5rem 0;
}

.button.primary {
  background-color: #5a2eb7;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.8rem 1.5rem;
}

.button.primary:hover {
  background-color: #7e43e3;
}

.button.secondary {
  background-color: #e0e7ff;
  color: #5a2eb7;
  border-radius: 0.5rem;
  padding: 0.8rem 1.5rem;
}

.button.secondary:hover {
  background-color: #c7d2fe;
}

/* =====================
   SUPPORT INFO
===================== */
.support-info {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.support-info a {
  color: #5a2eb7;
  text-decoration: none;
}

.support-info a:hover {
  text-decoration: underline;
}