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

    body {
      background: #f5f5f5;
      padding: 30px;
    }

    .header {
      width: 100%;
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 360px;
      background: #0d6efd;
      border-radius: 14px;
      overflow: visible;
      box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    }

    .left-area {
      display: flex;
      flex-direction: column;
      padding: 18px 22px;
      gap: 18px;
    }

    .top-row {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .logo {
      min-width: 140px;
      font-size: 28px;
      font-weight: bold;
      color: white;
    }

    .search-box {
      flex: 1;
      position: relative;
      min-width: 0;
    } 
        
    .search-box input {
      width: 100%;
      height: 50px;
      border: none;
      border-radius: 10px;
      padding: 0 18px;
      font-size: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .lang {
      background: rgba(255,255,255,0.6);
      padding: 12px 16px;
      border-radius: 10px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }
    


    .top-banner {
      width: 220px;
      height: 50px;
      border-radius: 10px;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

.top-banner{
    width: 220px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;

    transform: translateX(20px);
}

.top-row{
    justify-content: space-between;
}

    .top-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bottom-row {
      display: flex;
      gap: 28px;
      align-items: center;
      font-size: 15px;
      color: #333;
      font-weight: 600;
    }

    .bottom-row{
        display: flex;
        gap: 28px;
        align-items: center;
        flex-wrap: wrap;
    }

    .bottom-row a {
      text-decoration: none;
      color: white;
      transition: 0.2s;
    }

    .bottom-row a:hover {
      opacity: 0.7;
    }

    .categories-dropdown select {
      border: none;
      padding: 10px 14px;
      border-radius: 8px;
      background: rgba(255,255,255,0.8);
      font-weight: bold;
      cursor: pointer;
      font-size: 14px;
      color: #333;
      outline: none;
    }

    .categories-dropdown select:hover {
      background: #fff;
    }

    .categories-wrapper {
      position: relative;
    }

    .categories-button {
      color: white;
      font-weight: bold;
      cursor: pointer;
      padding: 10px 0;
    } 
    
    
    .categories-menu {
      position: absolute;
      top: 30px;
      left: 0;
      width: 260px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      display: none;
      overflow: visible;
      z-index: 999;
    }  

    
    .categories-menu.open{
        display: block;
    }    
    
    /*Deasbilitar para desativar o hover do menu*/
    .categories-wrapper:hover .categories-menu {
      display: block;
    }

    .category-item {
      position: relative;
      padding: 14px 18px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      background: white;
      transition: 0.2s;
      overflow: hidden;
    }

    .category-item:hover {
      background: #f5f5f5;
    }


    .subcategory-panel.open{
        display: block;
    }  
    
    
    .subcategory-panel{
        display: none;

        background: white;
        border-radius: 16px;

        box-shadow: 0 15px 35px rgba(0,0,0,0.15);

        overflow: hidden;
    }    
    
    .subcategory-panel{
          position: absolute;
          left: 100%;
          top: 0;
          width: 240px;
          background: white;
          border-radius: 0 12px 12px 12px;
          box-shadow: 0 8px 25px rgba(0,0,0,0.15);
          display: none;
          padding: 12px;
          flex-direction: column;
          gap: 10px;
          min-height: 100%;
    }

    .subcategory-panel.open-sub{
        display: flex;
    }    


    .subcategory-panel a {
      text-decoration: none;
      color: #444;
      padding: 8px 10px;
      border-radius: 8px;
      transition: 0.2s;
      font-size: 14px;
    }

    .subcategory-panel a:hover {
      background: #f0f0f0;
      color: #000;
    }

    
 /*Start Configuration to Mobile*/    
@media screen and (max-width: 700px){

    .header{
        display: block;
        width: 100%;
    }

    .left-area{
        padding: 12px;
    }

    .top-row{
        display: flex;
        flex-direction: column;
        gap: 10px;
    } 
    
    .logo{
        width: 100%;
        text-align: center;
    }

    .search-box{
        width: 100%;
    }

    .search-box input{
        width: 100%;
    }

    .lang{
        width: 100%;
        text-align: center;
    }

    .top-banner{
        width: 100%;
        height: 50px;
        transform: none !important;
        margin: 0;
    }

    .banner-area{
        width: 100%;
        margin-top: 15px;
    }

    .marketing-slider{
        width: 100%;
        height: 140px;
    }
    
    .bottom-row{
        justify-content: center;
        gap: 12px;
    }       

    .bottom-row{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .bottom-row a,
    .categories-wrapper{
        width: calc(50% - 10px);
        text-align: center;
    }
     
    .categories-menu{
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0px;
        width: 100%;
        z-index: 999;
    
        background: white;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        border: 1px solid rgba(255,255,255,0.2);
    }
}

 /*End Configuration to Mobile*/    


@media (max-width: 900px) {
      .categories-menu {
        position: relative;
        width: 100%;
      }

      .subcategory-panel {
        position: relative;
        left: 0;
        width: 100%;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 10px;
      }
}
    
/*    .banner-area {
      background: #ffe600;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
    }

    .banner {
      width: 100%;
      height: 100%;
      min-height: 120px;
      border-radius: 12px;
      overflow: hidden;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }*/

    .marketing-slider {
      position: relative;
      width: 100%;
      height: 170px;
      border-radius: 14px;
      overflow: hidden;
      background: #111;
    }

    .custom-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .slide.active {
      opacity: 1;
    }

    .carousel-dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      transition: 0.3s;
    }

    .active-dot {
      background: white;
      transform: scale(1.2);
    }

    .banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.product-card{
    width: calc(25% - 15px);
}

.products-grid{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.product-card{
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 15px);
}

 /*TABLET*/ 
@media screen and (max-width: 1024px){

    .product-card{
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

}

 /*MOBILE*/ 
@media screen and (max-width: 700px){

    .product-card{
        flex: 1 1 100%;
        max-width: 100%;
    }

}

/*Para Pesquisa*/

.search-bar-amazon {
    max-width: 600px;
    margin: 0 auto;
}

.search-bar-amazon .input-group {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 25px;
}

.search-bar-amazon input:focus {
    outline: none;
    box-shadow: none;
    border-color: #FFE600;
}