:root {
  --olx-purple: #6f2da8;
  --olx-orange: #ff8700;
  --olx-light-purple: #f4f1ff;
  --olx-light-orange: #fff4e6;
  --olx-gray: #666666;
  --olx-light-gray: #f8f9fa;
  --olx-border: #e9ecef;
}

/* Custom font for small texts */
.small-text-font {
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--olx-light-gray);
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: white;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 20px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}

.logo-o {
  color: var(--olx-purple);
}

.logo-x {
  color: var(--olx-orange);
}

.search-container {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: var(--olx-orange);
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-btn {
  background: none;
  border: none;
  color: var(--olx-gray);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.header-btn:hover {
  background-color: var(--olx-light-gray);
}

.login-btn {
  color: #333;
  font-weight: 600;
  background: transparent;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s;
}

.login-btn:hover {
  background: #f8f9fa;
}

.announce-btn {
  background: var(--olx-orange);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.announce-btn:hover {
  background: #e67600;
}

/* Main Content */
.main-content {
  padding: 20px 0;
}

/* Product Header (moved above images) */
.product-header {
  margin-bottom: 20px;
}

.product-title-main {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.3;
}

/* Product date and code styling - HORIZONTAL (LADO A LADO) */
.product-date-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.product-date-main {
  color: #999999;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  white-space: nowrap;
}

.product-code {
  color: #999999;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  white-space: nowrap;
}

/* Mobile Product Header - OCULTO NO DESKTOP */
.mobile-product-header {
  display: none;
  background: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.mobile-product-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.3;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Mobile Product date and code styling - VERTICAL STACK */
.mobile-product-date-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-product-date {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.mobile-product-code {
  color: #666666 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: default !important;
  pointer-events: none !important;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

/* Mobile Product date and code styling - HORIZONTAL (LADO A LADO) */
.mobile-product-date-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mobile-product-date {
  color: #999999;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  white-space: nowrap;
}

.mobile-product-code {
  color: #999999 !important;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: default !important;
  pointer-events: none !important;
  display: inline-block;
  white-space: nowrap;
}

/* Garantir que não seja um link em qualquer contexto */
.mobile-product-code a,
.mobile-product-date-info .mobile-product-code,
.mobile-product-date-info .mobile-product-code a {
  color: #999999 !important;
  text-decoration: none !important;
  cursor: default !important;
  pointer-events: none !important;
  display: block;
}

/* Product layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

/* Image Gallery */
.image-gallery {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.main-image {
  position: relative;
  margin-bottom: 15px;
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.image-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.thumbnail-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumbnail.active {
  border-color: #6f42c1;
}

/* Product Info */
.product-info {
  background: white;
  border-radius: 8px;
  padding: 20px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid transparent;
  background: #e2f9ff;
  color: #13596b;
}

.badge i {
  color: #13596b;
}

.badge.guarantee {
  background: #e2f9ff;
  color: #13596b;
  border-color: #b3e5fc;
}

.badge.fast-delivery {
  background: #e2f9ff;
  color: #13596b;
  border-color: #b3e5fc;
}

.badge.installments {
  background: #e2f9ff;
  color: #13596b;
  border-color: #b3e5fc;
}

.badge.online-payment {
  background: #e2f9ff;
  color: #13596b;
  border-color: #b3e5fc;
}

.price-section {
  margin-bottom: 30px;
}

.price-main {
  font-size: 32px;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.price-details {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.installments-text {
  font-weight: 600;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.installments-link {
  color: #6f42c1;
  text-decoration: none;
  margin-left: 10px;
}

/* Shipping Section */
.shipping-section {
  margin-bottom: 30px;
}

.shipping-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.shipping-section h3 {
  font-size: 18px;
  margin: 0;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #333;
}

.shipping-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cep-input {
  flex: 0 0 60%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: #f8f9fa;
  outline: none;
  transition: border-color 0.2s;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  height: 48px;
  color: #999;
}

.cep-input:focus {
  border-color: #ff8700;
  background: white;
}

.cep-input::placeholder {
  color: #999;
  font-size: 14px;
}

.calculate-btn {
  background: transparent;
  color: #ff8700;
  border: 1px solid #ff8700;
  padding: 12px 20px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  height: 48px;
  min-width: 100px;
}

.calculate-btn:hover {
  background: #ff8700;
  color: white;
}

.calculate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cep-link {
  color: #333;
  text-decoration: underline;
  font-size: 14px;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.cep-link:hover {
  color: #666;
}

/* Shipping Results */
.shipping-results {
  margin-top: 15px;
}

.shipping-location {
  background: #f0f0f0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.shipping-options {
  background: white;
  padding: 0;
}

.shipping-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.shipping-icon {
  color: #666;
  font-size: 18px;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.shipping-details {
  flex: 1;
}

.shipping-text {
  font-size: 14px;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  display: block;
  line-height: 1.4;
}

.shipping-price {
  color: #28a745;
  font-weight: 600;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.more-options {
  color: #6f42c1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  display: block;
  margin-top: 8px;
}

.more-options:hover {
  text-decoration: underline;
}

.description-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.product-description {
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 14px;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.action-buttons button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #ff8700;
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #ff8700;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
  min-width: 140px;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.action-buttons button:hover {
  background: #fff4e6;
}

.action-buttons button i {
  color: #ff8700;
  font-size: 16px;
}

/* Product Details */
.product-details {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

.product-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.detail-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.detail-value {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.detail-value a {
  color: #6f42c1;
  text-decoration: none;
  font-weight: 500;
}

.detail-value a:hover {
  text-decoration: underline;
}

/* Location Section */
.location-section {
  margin-bottom: 30px;
}

.location-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.location-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-label {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.location-value {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

/* Right Column */
.product-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Price Box */
.price-box {
  background: white;
  border-radius: 8px;
  padding: 20px;
}

.price-button {
  background: #6d0ad6 !important;
  border-radius: 12px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: white !important;
  border: none;
  box-shadow: none;
  position: relative;
  clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 15px 100%, 0% 50%);
  padding-left: 35px;
  width: 100%;
  min-height: 50px;
}

.price-button::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 15px solid #6d0ad6;
  z-index: -1;
}

.price-button .price-large {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: white !important;
}

.price-button .price-text {
  text-align: right;
  font-size: 12px;
  line-height: 1.2;
  color: white !important;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.price-button .price-text div {
  color: white !important;
}

.price-button .price-text div:first-child {
  font-weight: 600;
}

.price-button .price-text div:last-child {
  font-weight: 400;
  opacity: 0.9;
}

.price-large {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.price-text {
  text-align: right;
  font-size: 14px;
  line-height: 1.3;
}

.price-text div:first-child {
  font-weight: 600;
}

.price-text div:last-child {
  font-weight: 400;
  opacity: 0.9;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 20px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  color: white;
}

.payment-icon.visa {
  background: #1a1f71;
}

.payment-icon.mastercard {
  background: #eb001b;
}

.payment-icon.elo {
  background: #ffd700;
  color: #000;
}

.payment-icon.pix {
  background: #32bcad;
}

.see-all {
  color: #8b5cf6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
}

.see-all:hover {
  text-decoration: underline;
}

/* Seller Info */
.seller-info {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.seller-header {
  margin-bottom: 20px;
}

.seller-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.seller-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.btn-buy {
  flex: 1;
  background: #ff8700;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-buy:hover {
  background: #e67600;
}

.btn-chat {
  flex: 1;
  background: white;
  color: #ff8700;
  border: 2px solid #ff8700;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-chat:hover {
  background: #fff4e6;
}

.seller-status-center {
  margin-bottom: 20px;
}

.seller-status {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.seller-verification {
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.seller-verification span {
  font-size: 12px;
  color: #999999;
  font-weight: normal;
  margin-right: 8px;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.verification-badges {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 12px;
}

.verification-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.verification-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11ce64;
  color: white;
  font-size: 10px;
}

.verification-icon.phone {
  background: #11ce64;
}

.verification-icon.email {
  background: #11ce64;
}

.verification-icon.facebook {
  background: #11ce64;
}

.seller-verification small {
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  display: block;
  text-align: center;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.view-all-ads {
  color: #6d0ad6;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.2s;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.view-all-ads:hover {
  color: #5a08b8;
}

.view-all-ads i {
  font-size: 16px;
  color: #999999;
}

/* Seller Stats */
.seller-stats {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px; /* Aumentar margem para separar melhor */
  border-bottom: 2px solid #e9ecef; /* Adicionar linha divisória */
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.stats-divider {
  width: 1px;
  height: 80px;
  background-color: #e9ecef;
  margin: 0 10px;
}

.stat-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stat-icon-placeholder::after {
  content: "";
}

.stat-number {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 8px;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.stat-label {
  font-size: 14px;
  color: #666;
  line-height: 1.3;
  font-weight: normal;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

/* Guarantees */
.guarantees {
  background: #f0e6ff;
  border-radius: 8px;
  padding: 25px 20px;
  min-height: 200px;
  margin-bottom: 30px;
  margin-top: 40px; /* Aumentar margem superior para separar melhor */
  border-top: 2px solid #d1c4e9; /* Adicionar linha divisória superior */
}

.guarantees h4 {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.guarantee-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.guarantee-item:last-child {
  margin-bottom: 0;
}

.guarantee-icon {
  width: 30px;
  height: 30px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #333;
  font-size: 18px;
}

.guarantee-content {
  font-size: 14px;
  line-height: 1.6;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  color: #333;
}

.guarantee-content strong {
  font-weight: bold;
}

.guarantee-link {
  color: #6f42c1;
  text-decoration: none;
  font-weight: normal;
}

.guarantee-link:hover {
  text-decoration: underline;
}

/* Security Tips */
.security-tips {
  background: #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  margin-top: 30px;
}

.security-tips h4 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

.security-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.security-icon {
  width: 40px;
  height: 40px;
  background-image: url("https://static.olx.com.br/cd/vi/images/tip-badge.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.security-content {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  color: #333;
}

.security-link {
  color: #6f42c1;
  text-decoration: none;
  font-weight: normal;
}

.security-link:hover {
  text-decoration: underline;
}

/* Mobile Menu Button Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Chat and Notification Button Styles */
.mobile-chat-btn,
.mobile-notification-btn {
  display: none;
}

/* Mobile Floating Buttons Styles */
.mobile-floating-buttons {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-buy {
  background: #ff8700;
  color: white;
}

.floating-buy:hover {
  background: #e67600;
  transform: translateY(-2px);
}

.floating-chat {
  background: white;
  color: #ff8700;
  border: 2px solid #ff8700;
}

.floating-chat:hover {
  background: #fff4e6;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid #e9ecef;
  padding: 40px 0 30px;
  margin-top: 60px;
}

.footer-content {
  width: 100%;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-row:last-child {
  margin-bottom: 0;
}

.footer-main-links {
  display: flex;
  gap: 40px;
}

.footer-secondary-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #333;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-link {
  color: #666;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: #333;
}

.footer-copyright {
  width: 100%;
}

.footer-copyright span {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  font-family: "Nunito Sans", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 20px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .footer-main-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-secondary-links {
    gap: 15px;
  }

  .footer-social {
    align-self: flex-start;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .footer-main-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-secondary-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-social {
    gap: 20px;
    margin-top: 15px;
  }
}

/* Update mobile responsive styles */
@media (max-width: 768px) {
  /* Show mobile elements */
  .mobile-menu-btn {
    display: block;
  }

  .mobile-chat-btn,
  .mobile-notification-btn {
    display: flex;
    font-size: 18px;
    padding: 8px;
  }

  .mobile-floating-buttons {
    display: flex;
  }

  /* MOSTRAR Mobile Product Header APENAS NO MOBILE */
  .mobile-product-header {
    display: block !important;
  }

  /* OCULTAR Product Header desktop NO MOBILE */
  .product-header {
    display: none;
  }

  /* OCULTAR Price Box NO MOBILE */
  .price-box {
    display: none;
  }

  /* Ajustar layout do produto no mobile */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-left {
    order: 1;
  }

  .product-right {
    order: 2;
    margin-top: 20px;
  }

  /* Update header layout for mobile */
  .header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 15px;
    padding: 15px 0;
  }

  .mobile-menu-btn {
    grid-column: 1;
    grid-row: 1;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    font-size: 24px;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    gap: 5px;
  }

  .header-btn:not(.mobile-chat-btn):not(.mobile-notification-btn):not(.announce-btn) {
    display: none;
  }

  .search-container {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
  }

  .search-input {
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    border: 1px solid #ddd;
    background: #f8f9fa;
  }

  /* Update product layout for mobile */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-header {
    /* Additional styles for mobile product header can be added here */
  }
}
