html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #0D1B3B, #193b8a, #0D1B3B);
  color: #F0F4F8;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding-bottom: 200px;
}

h1 {
  padding-top: 110px;
  font-size: 85px;
  text-align: center;
  background: linear-gradient(to right, rgb(232, 188, 86), #fae8bd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#miniText {
  margin-left: 1300px;
  margin-top: -90px;
  background: linear-gradient(to right, #fae8bd, rgb(232, 188, 86));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

header {
  width: 100%;
  height: 470px;
  background-image: 
    linear-gradient(to bottom, rgba(15, 38, 90, 0.6), rgba(95, 142, 251, 0.6)), 
    url('Img/sport-shoes-1470061_1280.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  display: flex;
  flex: 1;
}

/* Navigation */
.menu-lateral {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: -260px;
  width: 300px;
  height: 100vh;
  color: #b3987dff;
  z-index: 10;
  padding: 130px 0 0 0;
  transition: left 0.3s ease;
}

.menu-lateral a {
  display: block;
  color: #b3987dff;
  padding: 10px 80% 10px 50px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 5px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.menu-lateral a:hover {
  background-color: #2c3752;
  color: rgb(34, 183, 176);
}

.menu-lateral.ativo {
  left: 0;
}

.main-content {
  margin-left: 230px;
  flex: 1;
  padding: 20px;
}

h2 {
  color: rgb(254, 231, 184);
  margin-bottom: 20px;
  font-weight: 600;
}

/* Product Cards */
.produto {
  display: inline-block;
  vertical-align: top;
  width: 210px;
  min-height: 270px;
  margin: 15px;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  background-color: rgb(250, 245, 215);
  color: #1B2A52;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.produto:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.produto img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 6px;
  display: block;
  backface-visibility: hidden;
  transition: transform 0.5s ease;
}


.produto button {
  margin-top: 12px;
  padding: 8px 16px;
  background-color: rgb(149, 113, 74);
  color: rgb(248, 242, 206);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.produto button:hover {
  background-color: #162342;
  color: rgb(34, 183, 176);
}

.produto button:active {
  transform: scale(0.95);
}

/* Shopping Cart Section */
.carrinho {
  width: 260px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.btn-remover {
  background: none;
  border: none;
  color: #b3987dff;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
  transition: color 0.3s;
}

.btn-remover:hover {
  color: #0D1B3B;
}

#lista-carrinho li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 5px;
  background-color: rgb(250, 245, 215);
  border-radius: 4px;
  color: #1B2A52;
}

.btn-limpar, .btn-pagar {
  background-color: transparent;
  color: #b3987dff;
  border: none;
  width: 100%;
  height: 35px;
  border-radius: 5px;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-pagar {
  margin-top: 40px;
}

.btn-limpar:hover, .btn-pagar:hover {
  background-color: #0D1B3B;
  color: rgb(34, 183, 176);
}
