/* ===================================
   GLOBAL - DESABILITAR SELEÇÃO DE TEXTO
   =================================== */

/* Desabilitar seleção de texto em toda a página */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Permitir seleção apenas em inputs, textareas e elementos editáveis */
input,
textarea,
[contenteditable="true"],
.editable,
pre,
code {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* ===================================
   LOGIN MODAL STYLES
   =================================== */

/* Backdrop - Overlay escuro */
.edgtf-login-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.edgtf-login-backdrop.show {
  display: flex;
  opacity: 1;
}

/* Modal Container */
.edgtf-login-modal {
  background: #0e0e10;
  border: 1px solid rgba(91, 100, 112, 0.5);
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: scale(0.9) translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.edgtf-login-backdrop.show .edgtf-login-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.edgtf-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(75, 85, 99, 0.3);
  border: 1px solid rgba(75, 85, 99, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.edgtf-close-button:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

.edgtf-close-button svg {
  width: 18px;
  height: 18px;
  color: #d1d5db;
}

.edgtf-close-button:hover svg {
  color: #ef4444;
}

/* Login Form Container */
.edgtf-login-form {
  padding: 40px 32px 32px;
}

.edgtf-login-form-inner {
  width: 100%;
}

/* Login Title */
.login-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.login-title img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Description */
.edgtf-login-description {
  margin-bottom: 20px;
}

.edgtf-login-description p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
}

/* Benefits List */
.edgtf-login-benefits {
  margin-bottom: 24px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  padding: 16px;
}

.edgtf-login-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edgtf-login-benefits li {
  position: relative;
  padding-left: 28px;
  color: #d1d5db;
  font-size: 14px;
  margin-bottom: 8px;
}

.edgtf-login-benefits li:last-child {
  margin-bottom: 0;
}

.edgtf-login-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(9, 250, 196, 1);
  font-weight: bold;
  width: 20px;
  height: 20px;
  background: rgba(9, 250, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Form Inputs */
.login-form input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  background: #0e0e10;
  border: 1px solid rgba(91, 100, 112, 0.5);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.login-form input[type="text"]:focus {
  outline: none;
  border-color: rgba(9, 250, 196, 1);
  box-shadow: 0 0 0 3px rgba(9, 250, 196, 0.1);
}

.login-form input[type="text"]::placeholder {
  color: #9ca3af;
}

/* Submit Button */
.edgtf-btn-submit,
.form-submit input[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.edgtf-btn-submit:hover,
.form-submit input[type="submit"]:hover {
  background: var(--primary-color);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
  transform: translateY(-2px);
}

.form-submit {
  margin-bottom: 16px;
}

/* Cancel Link */
.edgtf-cancel-link {
  text-align: center;
  margin-bottom: 16px;
}

.edgtf-cancel-link a {
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.edgtf-cancel-link a:hover {
  color: #ffffff;
}

/* Secure Notice */
.edgtf-secure-notice {
  text-align: center;
  color: #6b7280;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Loading Spinner */
.edgtf-loading-spinner {
  width: 48px;
  height: 48px;
  margin: 24px auto;
  border: 4px solid rgba(9, 250, 196, 0.2);
  border-top-color: rgba(9, 250, 196, 1);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}

/* Auth Steps List */
.edgtf-auth-steps {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.edgtf-auth-steps li {
  position: relative;
  padding-left: 32px;
  color: #d1d5db;
  font-size: 14px;
  margin-bottom: 12px;
}

.edgtf-auth-steps li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgba(9, 250, 196, 1);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
      opacity: 1;
      transform: translateY(-50%) scale(1);
  }
  50% {
      opacity: 0.5;
      transform: translateY(-50%) scale(1.2);
  }
}

/* Success Icon */
.edgtf-success-icon {
  width: 80px;
  height: 80px;
  margin: 24px auto;
  background: linear-gradient(135deg, rgba(9, 250, 196, 0.2) 0%, rgba(9, 250, 196, 0.1) 100%);
  border: 3px solid rgba(9, 250, 196, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.edgtf-success-icon::after {
  content: '✓';
  color: rgba(9, 250, 196, 1);
  font-size: 40px;
  font-weight: bold;
}

@keyframes successPop {
  0% {
      transform: scale(0);
      opacity: 0;
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

/* Success List */
.edgtf-success-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  background: rgba(9, 250, 196, 0.05);
  border: 1px solid rgba(9, 250, 196, 0.1);
  border-radius: 12px;
  padding: 16px;
}

.edgtf-success-list li {
  position: relative;
  padding-left: 28px;
  color: #d1d5db;
  font-size: 14px;
  margin-bottom: 8px;
}

.edgtf-success-list li:last-child {
  margin-bottom: 0;
}

.edgtf-success-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(9, 250, 196, 1);
  font-weight: bold;
  width: 20px;
  height: 20px;
  background: rgba(9, 250, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Redirect Message */
.edgtf-redirect-message {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  margin-top: 16px;
}

.edgtf-redirect-message span {
  color: rgba(9, 250, 196, 1);
  font-weight: bold;
}

/* Hidden State */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 640px) {
  .edgtf-login-modal {
      max-width: 95%;
      padding: 32px 24px 24px;
  }

  .edgtf-login-form {
      padding: 32px 24px 24px;
  }

  .login-title {
      font-size: 18px;
  }
}

/* Scroll customizado para o modal */
.edgtf-login-modal::-webkit-scrollbar {
  width: 8px;
}

.edgtf-login-modal::-webkit-scrollbar-track {
  background: rgba(31, 41, 55, 0.5);
  border-radius: 8px;
}

.edgtf-login-modal::-webkit-scrollbar-thumb {
  background: rgba(9, 250, 196, 0.3);
  border-radius: 8px;
}

.edgtf-login-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(9, 250, 196, 0.5);
}

/* ============================================================================
   SEARCH MODAL STYLES
   ============================================================================ */

/* Modal Wrapper & Backdrop */
.search-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999 !important;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5rem;
  pointer-events: auto;
  overflow-y: auto;
}

.search-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1rem 1rem;
  animation: fadeIn 0.3s ease-out;
  z-index: 99999;
  overflow-y: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal Container */
.search-modal-container {
  background: #0f0f12;
  border: 1px solid rgb(28 27 30);
  border-radius: 16px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(var(--primary-rgb), 0.15);
  width: 100%;
  max-width: 1200px;
  max-height: 80vh;
  overflow: hidden;
  animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 100000;
  pointer-events: auto;
  margin: 0 20px;
  padding: 20px;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal Header */
.search-modal-header {
  padding: 28px 28px 24px 28px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
  background: rgba(17, 16, 17, 0.5);
}

.search-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.search-header-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.search-icon-main {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.search-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.3px;
}

.search-subtitle {
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
}

.search-hint {
  color: #6b7280;
  font-size: 12px;
  margin: 4px 0 0 0;
}

.search-kbd {
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 11px;
  font-family: monospace;
  color: #9ca3af;
}

.search-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-close-btn:hover {
  background: rgba(var(--primary-rgb), 0.1);
  color: #fff;
  transform: scale(1.05);
}

.search-close-btn svg {
  width: 20px;
  height: 20px;
}

/* Search Input */
.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9ca3af;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 46px;
  background: rgba(17, 16, 17, 0.8);
  border: 2px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #6b7280;
}

.search-input:focus {
  border-color: var(--primary-color);
  background: rgba(17, 16, 17, 1);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.search-clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-clear-btn:hover {
  background: rgba(var(--primary-rgb), 0.2);
  color: #fff;
}

.search-clear-btn svg {
  width: 14px;
  height: 14px;
}

/* Category Filters Section */
.search-filters-section {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
  background: rgba(17, 16, 17, 0.3);
}

.search-filters-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-icon {
  width: 18px;
  height: 18px;
  color: #9ca3af;
  flex-shrink: 0;
}

.filter-label {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.category-filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.category-filter-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
  color: #9ca3af;
}

.category-filter-btn:hover {
  color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.1);
}

.category-filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

/* Search Results */
.search-results-wrapper {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(80vh - 280px);
}

.search-results-wrapper::-webkit-scrollbar {
  width: 8px;
}

.search-results-wrapper::-webkit-scrollbar-track {
  background: rgba(17, 16, 17, 0.5);
  border-radius: 10px;
}

.search-results-wrapper::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.3);
  border-radius: 10px;
}

.search-results-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-rgb), 0.5);
}

.search-results-header {
  margin-bottom: 20px;
}

.results-count-text {
  color: #9ca3af;
  font-size: 14px;
  margin: 0;
}

/* Mensagens de loading e vazio */
.search-results-wrapper .col-span-full {
  padding: 40px 20px;
  text-align: center;
}

.search-results-wrapper .text-center {
  padding: 40px 20px;
}

/* Loading Spinner */
.search-loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

/* Animação de rotação para spinner - IMPORTANTE: não remover */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 0.6s linear infinite !important;
  display: inline-block;
  will-change: transform;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 4px;
  align-items: start;
}

/* Grid completo para mensagens de erro/vazio */
.search-results-grid .col-span-full {
  grid-column: 1 / -1;
}

/* Estilo para produtos do category.html no modal */
.search-results-grid .product,
.search-results-grid li.product {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  width: 100%;
}

.search-results-grid .product::before,
.search-results-grid li.product::before,
.search-results-grid .product::marker,
.search-results-grid li.product::marker {
  display: none !important;
  content: none !important;
}

/* Ajusta card de produto dentro do grid */
.search-results-grid .product .block,
.search-results-grid li.product .block {
  background: linear-gradient(145deg, rgba(23, 22, 26, 0.9), rgba(16, 15, 18, 0.95));
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.search-results-grid .product .block:hover,
.search-results-grid li.product .block:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(var(--primary-rgb), 0.2);
}

/* Remove padding/margin extra de imagens dentro dos produtos */
.search-results-grid .product img,
.search-results-grid li.product img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Garante que links dentro dos produtos ocupem todo o espaço */
.search-results-grid .product a,
.search-results-grid li.product a {
  text-decoration: none;
  color: inherit;
}

/* Ajusta preços dentro dos produtos */
.search-results-grid .product .price,
.search-results-grid li.product .price,
.search-results-grid .product .edgtf-pli-price,
.search-results-grid li.product .edgtf-pli-price {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
}

/* Ajusta títulos dentro dos produtos */
.search-results-grid .product h3,
.search-results-grid li.product h3,
.search-results-grid .product .edgtf-product-list-title,
.search-results-grid li.product .edgtf-product-list-title {
  color: #fff !important;
  margin: 0 !important;
}

/* Product Card in Search Results */
.search-product-card {
  background: linear-gradient(145deg, rgba(23, 22, 26, 0.9), rgba(16, 15, 18, 0.95));
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.search-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(var(--primary-rgb), 0.2);
}

.search-product-card:hover::before {
  opacity: 1;
}

.search-product-image {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background: rgba(17, 16, 17, 0.8);
}

.search-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.search-product-card:hover .search-product-image img {
  transform: scale(1.05);
}

.search-product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-product-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  min-height: 42px;
}

.search-product-price {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.search-product-category {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

/* Responsive */
@media (min-width: 1600px) {
  .search-results-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1200px) {
  .search-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .search-results-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet - 481px até 768px */
@media (max-width: 768px) and (min-width: 481px) {
  .search-modal-backdrop {
    padding: 1rem;
  }
  
  .search-modal-container {
    border-radius: 14px;
    max-height: 85vh;
    margin: 0 15px;
  }
  
  .search-modal-header {
    padding: 22px;
  }
  
  .search-header-top {
    margin-bottom: 20px;
  }
  
  .search-title {
    font-size: 18px;
  }
  
  .search-subtitle {
    font-size: 13px;
  }
  
  .search-input {
    height: 46px;
    font-size: 15px;
  }
  
  .search-filters-section {
    padding: 18px 22px;
  }
  
  .filter-label {
    font-size: 13px;
  }
  
  .category-filter-btn {
    padding: 7px 14px;
    font-size: 12px;
  }
  
  .search-results-wrapper {
    padding: 20px;
    max-height: calc(85vh - 300px);
  }
  
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    padding: 2px;
  }
  
  .search-product-image {
    height: 180px;
  }
  
  .search-product-name {
    font-size: 14px;
  }
  
  .search-product-price {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .search-modal-backdrop {
    padding: 0 !important;
    align-items: flex-start !important;
  }
  
  .search-modal-container {
    margin: 0 !important;
    padding: 15px !important;
    border-radius: 0 !important;
    max-height: 100vh !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .search-modal-header {
    padding: 15px !important;
  }
  
  .search-header-top {
    margin-bottom: 15px !important;
  }
  
  .search-header-info {
    gap: 10px !important;
  }
  
  .search-icon-main {
    width: 20px !important;
    height: 20px !important;
  }
  
  .search-title {
    font-size: 16px !important;
  }
  
  .search-subtitle {
    font-size: 12px !important;
  }
  
  .search-hint {
    display: none !important;
  }
  
  .search-close-btn {
    width: 36px !important;
    height: 36px !important;
  }
  
  .search-close-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  .search-input {
    height: 42px !important;
    font-size: 14px !important;
    padding: 0 36px 0 40px !important;
  }
  
  .search-input-icon {
    width: 16px !important;
    height: 16px !important;
    left: 12px !important;
  }
  
  .search-clear-btn {
    width: 28px !important;
    height: 28px !important;
    right: 6px !important;
  }
  
  .search-filters-section {
    padding: 12px 15px !important;
  }
  
  .search-filters-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .filter-icon {
    width: 16px !important;
    height: 16px !important;
  }
  
  .filter-label {
    font-size: 12px !important;
  }
  
  .category-filters-wrapper {
    width: 100%;
    gap: 6px !important;
  }
  
  .category-filter-btn {
    padding: 6px 12px !important;
    font-size: 11px !important;
    border-radius: 6px !important;
  }
  
  .search-results-wrapper {
    padding: 15px !important;
    max-height: calc(100vh - 280px) !important;
  }
  
  .search-results-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  
  .search-product-card {
    padding: 12px !important;
    border-radius: 10px !important;
  }
  
  .search-product-image {
    height: 180px !important;
    margin-bottom: 10px !important;
    border-radius: 6px !important;
  }
  
  .search-product-name {
    font-size: 14px !important;
    min-height: 38px !important;
    line-height: 1.3 !important;
  }
  
  .search-product-price {
    font-size: 16px !important;
    margin: 8px 0 !important;
  }
  
  .search-product-category {
    padding: 3px 8px !important;
    font-size: 10px !important;
  }
  
  .results-count-text {
    font-size: 12px !important;
  }
}

/* Extra Small Mobile - até 360px */
@media (max-width: 360px) {
  .search-modal-container {
    padding: 10px !important;
  }
  
  .search-modal-header {
    padding: 10px !important;
  }
  
  .search-header-info {
    gap: 8px !important;
  }
  
  .search-icon-main {
    width: 18px !important;
    height: 18px !important;
  }
  
  .search-title {
    font-size: 14px !important;
  }
  
  .search-subtitle {
    font-size: 11px !important;
  }
  
  .search-close-btn {
    width: 32px !important;
    height: 32px !important;
  }
  
  .search-close-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
  
  .search-input {
    height: 38px !important;
    font-size: 12px !important;
    padding: 0 34px 0 38px !important;
  }
  
  .search-input-icon {
    width: 14px !important;
    height: 14px !important;
    left: 10px !important;
  }
  
  .search-clear-btn {
    width: 26px !important;
    height: 26px !important;
  }
  
  .search-filters-section {
    padding: 10px !important;
  }
  
  .filter-icon {
    width: 14px !important;
    height: 14px !important;
  }
  
  .filter-label {
    font-size: 11px !important;
  }
  
  .category-filter-btn {
    padding: 5px 10px !important;
    font-size: 10px !important;
  }
  
  .search-results-wrapper {
    padding: 10px !important;
    max-height: calc(100vh - 260px) !important;
  }
  
  .search-results-grid {
    gap: 10px !important;
  }
  
  .search-product-card {
    padding: 10px !important;
  }
  
  .search-product-image {
    height: 150px !important;
  }
  
  .search-product-name {
    font-size: 13px !important;
    min-height: 34px !important;
  }
  
  .search-product-price {
    font-size: 15px !important;
  }
  
  .results-count-text {
    font-size: 11px !important;
  }
}

/* Prevenir scroll do body quando modal aberto no mobile */
@media (max-width: 768px) {
  body.search-modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
  }
  
  .search-modal-wrapper.active {
    overflow-y: auto !important;
  }
  
  .search-modal-backdrop {
    overflow-y: auto !important;
  }
}

/* ============================================================================
   SUBSCRIPTION SLIDER NAVIGATION CONTROLS
   ============================================================================ */

/* Controles de navegação */
.subscription-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.subscription-prev-btn,
.subscription-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(23, 22, 26, 0.8) 0%, rgba(17, 16, 17, 0.9) 100%);
  border: 2px solid rgba(23, 22, 26, 0.5);
  color: rgba(var(--primary-rgb), 1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.subscription-prev-btn::before,
.subscription-next-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.subscription-prev-btn:hover::before,
.subscription-next-btn:hover::before {
  width: 100%;
  height: 100%;
}

.subscription-prev-btn:hover,
.subscription-next-btn:hover {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.3) 100%);
  border-color: rgba(var(--primary-rgb), 0.8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.subscription-prev-btn:active,
.subscription-next-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.subscription-prev-btn:disabled,
.subscription-next-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(17, 16, 17, 0.5);
  border-color: rgba(23, 22, 26, 0.3);
  color: rgba(156, 163, 175, 0.5);
  transform: none;
  box-shadow: none;
}

.subscription-prev-btn:disabled:hover,
.subscription-next-btn:disabled:hover {
  background: rgba(17, 16, 17, 0.5);
  border-color: rgba(23, 22, 26, 0.3);
  transform: none;
  box-shadow: none;
}

.subscription-prev-btn svg,
.subscription-next-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.subscription-prev-btn:hover svg {
  transform: translateX(-2px);
}

.subscription-next-btn:hover svg {
  transform: translateX(2px);
}

/* Loading state */
.subscription-loading {
  text-align: center;
  padding: 3rem 0;
}

.subscription-loading .animate-spin {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(156, 163, 175, 0.3);
  border-top-color: rgba(var(--primary-rgb), 1);
  border-radius: 50%;
  animation: subscription-spin 0.6s linear infinite;
}

@keyframes subscription-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Slider wrapper */
.subscription-slider-wrapper {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(17, 16, 17, 0.4);
}

.subscription-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subscription-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.5rem;
}

/* Indicadores */
.subscription-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.subscription-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 22, 26, 1);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.subscription-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.subscription-indicator:hover {
  background: rgba(107, 114, 128, 1);
  transform: scale(1.2);
}

.subscription-indicator:hover::before {
  width: 150%;
  height: 150%;
}

.subscription-indicator.bg-\[rgba\(9\2c 250\2c 196\2c 1\)\] {
  background: rgba(var(--primary-rgb), 1);
  border-color: rgba(var(--primary-rgb), 0.5);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

.subscription-indicator.bg-\[rgba\(9\2c 250\2c 196\2c 1\)\]::before {
  width: 200%;
  height: 200%;
  background: rgba(var(--primary-rgb), 0.2);
}

/* Animação de entrada do slider */
@keyframes subscription-slide-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subscription-slider-wrapper {
  animation: subscription-slide-in 0.5s ease-out;
}

/* Responsivo */
@media (max-width: 768px) {
  .subscription-slider-container {
    padding: 1rem;
  }

  .slider-title {
    font-size: 1rem;
  }

  .subscription-prev-btn,
  .subscription-next-btn {
    width: 36px;
    height: 36px;
  }

  .subscription-prev-btn svg,
  .subscription-next-btn svg {
    width: 14px;
    height: 14px;
  }

  .subscription-indicators {
    margin-top: 1rem;
    gap: 0.375rem;
  }

  .subscription-indicator {
    width: 6px;
    height: 6px;
  }

  .subscription-indicator.bg-\[rgba\(9\2c 250\2c 196\2c 1\)\] {
    width: 10px;
    height: 10px;
  }
}

/* ============================================================================
   TESTIMONIALS CAROUSEL STYLES
   ============================================================================ */

/* Testimonial team holder - remove inline styles conflicts */
.edgtf-team-holder.edgtf-team-info-below-image {
  text-align: center !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
}

.edgtf-team-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.edgtf-team-image {
  margin-bottom: 20px !important;
  text-align: center;
}

.edgtf-team-image a {
  pointer-events: none;
}

.edgtf-team-info {
  text-align: center;
  width: 100%;
}

.edgtf-team-name {
  color: #fff !important;
  font-size: 20px !important;
  margin-bottom: 10px !important;
  font-weight: 600 !important;
}

.edgtf-team-name a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s;
}

.edgtf-team-name a:hover {
  color: rgba(9,250,196,1) !important;
}

.edgtf-team-position {
  color: #9ca3af !important;
  font-size: 14px !important;
  margin-bottom: 15px !important;
  line-height: 1.6;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edgtf-team-social-holder {
  display: flex !important;
  justify-content: center !important;
  gap: 4px !important;
  flex-wrap: wrap;
}

.edgtf-team-icon {
  display: inline-block;
}

.edgtf-team-icon i.fas.fa-star {
  color: rgba(9,250,196,1) !important;
  font-size: 16px !important;
}

@media (max-width: 768px) {
  .edgtf-team-name {
    font-size: 18px !important;
  }

  .edgtf-team-position {
    font-size: 13px !important;
    min-height: 80px;
  }

  .edgtf-team-icon i.fas.fa-star {
    font-size: 14px !important;
  }
}

/* Product Carousel - Estilos essenciais */
.product-carousel-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  z-index: 1;
}

.product-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(var(--primary-btn-ini-rgb), 0.1)
  );
  z-index: 1;
}

.product-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}
.edgtf-tabs.edgtf-tabs-standard {
    background-color: #100f12!important;
}
.product-carousel {
  display: flex;
  gap: 20px;
  animation: scroll-continuous 10.00s linear infinite;
}

.product-carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll-continuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.product-card {
  min-width: calc(16.666% - 16.666px);
  flex-shrink: 0;
}

/* Animações dos Cards */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.12), 
                0 0 40px rgba(var(--primary-rgb), 0.06), 
                0 0 60px rgba(var(--primary-rgb), 0.03),
                inset 0 0 20px rgba(var(--primary-rgb), 0.02);
  }
  50% {
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.20), 
                0 0 60px rgba(var(--primary-rgb), 0.10), 
                0 0 80px rgba(var(--primary-rgb), 0.05),
                inset 0 0 30px rgba(var(--primary-rgb), 0.03);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes pricePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Overlay de shimmer */
.product-card .edgtf-pl-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(var(--primary-rgb), 0.15), 
    transparent
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* Estados de hover */
.product-card .edgtf-pl-inner:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color) !important;
  animation: glowPulse 3.2s ease-out infinite;
}

.product-card .edgtf-pl-inner:hover::before {
  opacity: 0.35;
  animation: shimmer 3s linear infinite;
}

.product-card .edgtf-pl-inner:hover .edgtf-pl-image img {
  transform: scale(1.08) rotate(1deg);
}

.product-card .edgtf-pl-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animações de elementos internos */
.product-card .edgtf-pl-inner:hover .edgtf-product-list-title {
  animation: float 1.5s ease-in-out infinite;
}

.product-card .edgtf-pl-inner:hover .price .woocommerce-Price-amount {
  animation: pricePulse 1s ease-in-out infinite;
}

.product-card .edgtf-pl-inner:hover .edgtf-pli-onsale {
  animation: float 1.2s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 1200px) {
  .product-card {
    min-width: calc(25% - 15px);
  }
}

@media (max-width: 768px) {
  .product-carousel-wrapper {
    padding: 0 20px;
  }
  
  .product-card {
    min-width: calc(33.333% - 13.333px);
  }
}

@media (max-width: 480px) {
  .product-card {
    min-width: calc(50% - 10px);
  }
  
  .product-carousel-wrapper {
    padding: 0 20px;
  }
}

/* Loading Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Category Products Carousel */
#our-latest-products {
  position: relative;
}

.category-products-carousel-wrapper {
  position: relative;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 100%;
  overflow: visible;
}

.category-products-carousel {
  overflow: hidden;
  padding: 20px 0;
  margin: 0 20px;
  position: relative;
}

.category-products-carousel .edgtf-pl-holder {
  overflow: visible !important;
  position: relative;
}

.category-products-carousel .edgtf-pl-outer {
  display: flex !important;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  overflow: visible;
  position: relative;
  will-change: transform;
  padding: 0 20px;
}

.category-products-carousel .edgtf-pl-outer li.product {
  min-width: calc(25% - 15px);
  max-width: calc(25% - 15px);
  margin: 0 !important;
  flex-shrink: 0;
}

/* Controles de navegação - Centralizados embaixo */
.category-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.category-carousel-nav {
  position: relative;
  z-index: 100;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.25));
  border: 2px solid rgba(var(--primary-rgb), 0.4);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.category-carousel-nav:hover {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-rgb), 0.4));
  border-color: rgba(var(--primary-rgb), 0.7);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.5);
}

.category-carousel-nav:active {
  transform: translateY(-1px) scale(1.02);
}

.category-carousel-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.category-carousel-nav.disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.category-carousel-nav-prev {
  order: 1;
}

.category-carousel-nav-next {
  order: 2;
}

/* Separador visual entre os botões */
.category-carousel-nav-prev::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
}

@media (max-width: 1200px) {
  .category-products-carousel {
    padding: 20px 0;
    margin: 0 15px;
  }
  
  .category-products-carousel .edgtf-pl-outer {
    gap: 15px;
    padding: 0 15px;
  }
  
  .category-products-carousel .edgtf-pl-outer li.product {
    min-width: calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }
}

@media (max-width: 768px) {
  .category-products-carousel {
    padding: 20px 0;
    margin: 0 10px;
  }
  
  .category-products-carousel .edgtf-pl-outer {
    gap: 12px;
    padding: 0 10px;
  }
  
  .category-products-carousel .edgtf-pl-outer li.product {
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  
  .category-carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .category-carousel-controls {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .category-products-carousel {
    padding: 15px 0;
    margin: 0 10px;
  }
  
  .category-products-carousel .edgtf-pl-outer {
    gap: 10px;
    padding: 0 10px;
  }
  
  .category-products-carousel .edgtf-pl-outer li.product {
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  
  .category-carousel-nav {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  
  .category-carousel-controls {
    gap: 12px;
    margin-top: 20px;
  }
}

/* Accordion Animation */
.edgtf-accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  max-height: 0;
}

/* Accordion Icon - Seta */
.edgtf-accordion-mark .edgtf_icon_plus::before {
  content: "▼";
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 14px;
}
.ui-state-active .edgtf-accordion-mark .edgtf_icon_plus::before {
  transform: rotate(-180deg);
}


/* ========================================
   OUR ADVANTAGES SECTION - Estilo Moderno
   ======================================== */
.advantages-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0f 0%, #17161a 100%);
  position: relative;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.advantages-header {
  text-align: center;
  margin-bottom: 60px;
}

.edgtf-st-title {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.edgtf-st-title-hightlight {
  color: var(--primary-color);
  position: relative;
}

.edgtf-st-separator {
  margin: 20px auto;
  width: 125px;
}

.advantages-subtitle {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 700px;
  margin: 20px auto 40px;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0;
}

.advantage-card {
  background: linear-gradient(145deg, rgba(23, 22, 26, 0.9), rgba(16, 15, 18, 0.95));
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(var(--primary-rgb), 0.15),
    inset 0 0 60px rgba(var(--primary-rgb), 0.05);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotateY(360deg);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.05));
  border: 2px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.advantage-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.advantage-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.advantage-description {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========================================
   SUBSCRIPTIONS PRICING SECTION
   ======================================== */
.subscriptions-pricing-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0f 0%, #17161a 100%);
  position: relative;
}

.subscriptions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  gap: 30px;
  max-width: 1400px;
  margin: 40px auto 0;
  justify-content: center;
  padding: 0 20px;
}

.subscription-card {
  background: linear-gradient(145deg, rgba(23, 22, 26, 0.95), rgba(16, 15, 18, 1));
  border: 2px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 16px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  max-height: 600px;
  width: auto;
  max-width: 380px;
}

.subscription-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.subscription-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.subscription-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(var(--primary-rgb), 0.15),
    inset 0 0 60px rgba(var(--primary-rgb), 0.05);
}

.subscription-card:hover::before {
  opacity: 1;
}

.subscription-card:hover::after {
  opacity: 1;
}

.subscription-card.most-popular {
  border-color: rgba(var(--primary-rgb), 0.6);
  transform: scale(1.02);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(var(--primary-rgb), 0.2);
}

.subscription-card.most-popular::before {
  opacity: 1;
}

.subscription-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgb(var(--primary-btn-ini-rgb)), rgb(var(--primary-btn-end-rgb)));
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.5);
  z-index: 10;
}

.subscription-header {
  padding: 30px 20px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
  position: relative;
  z-index: 1;
}

.subscription-card.most-popular .subscription-header {
  padding-top: 50px;
}

.subscription-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscription-price-wrapper {
  margin: 14px 0;
}

.subscription-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}

.subscription-currency {
  font-size: 22px;
  margin-top: 5px;
}

.subscription-period {
  font-size: 15px;
  color: #9ca3af;
  margin-left: 5px;
  align-self: flex-end;
  margin-bottom: 5px;
}

.subscription-duration-toggle {
  display: none;
}

.subscription-duration-select {
  background: rgba(23, 22, 26, 0.8);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='currentColor' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.subscription-duration-select:hover {
  border-color: rgba(var(--primary-rgb), 0.6);
  background-color: rgba(var(--primary-rgb), 0.1);
}

.subscription-duration-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.duration-option {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.duration-option.active {
  background: linear-gradient(135deg, rgb(var(--primary-btn-ini-rgb)), rgb(var(--primary-btn-end-rgb)));
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.duration-option:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.subscription-features {
  padding: 18px 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.4;
}

.feature-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary-color);
}

.subscription-actions {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.subscription-btn {
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subscription-btn-primary {
  background: linear-gradient(135deg, rgb(var(--primary-btn-ini-rgb)), rgb(var(--primary-btn-end-rgb)));
  color: #fff;
  box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.35);
}

.subscription-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.5);
}

.subscription-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  font-size: 12px;
  padding: 12px 16px;
}

.subscription-btn-secondary:hover {
  background: rgba(var(--primary-rgb), 0.1);
  color: #fff;
  border-color: rgba(var(--primary-rgb), 0.4);
}

/* Responsivo - Subscriptions */
@media (min-width: 1400px) {
  .subscriptions-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 380px));
    max-width: 1600px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .subscriptions-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
    max-width: 1200px;
  }
  
  .subscription-card {
    max-width: 360px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .subscriptions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
    max-width: 900px;
    gap: 24px;
  }
  
  .subscription-card {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .subscriptions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    max-width: 500px;
  }
  
  .subscription-card {
    max-height: none;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  
  .subscription-card.most-popular {
    transform: scale(1);
  }
  
  .subscription-header {
    padding: 28px 18px 14px;
  }
  
  .subscription-title {
    font-size: 20px;
  }
  
  .subscription-price {
    font-size: 34px;
  }
  
  .subscription-currency {
    font-size: 20px;
  }
  
  .subscription-features {
    padding: 16px 18px;
  }
  
  .feature-item {
    font-size: 13px;
    padding: 6px 0;
  }
  
  .subscription-actions {
    padding: 0 18px 18px;
  }
  
  .subscription-btn {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* ========================================
   TESTIMONIALS SECTION - Mesmo visual do Advantages
   ======================================== */
.testimonials-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.testimonial-avatar {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.05)) !important;
  border: 2px solid rgba(var(--primary-rgb), 0.3) !important;
}

.avatar-letter {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.testimonial-card:hover .avatar-letter {
  transform: scale(1.1);
}

.testimonial-name {
  margin-top: 8px;
}

.testimonial-text {
  min-height: 80px;
  margin-bottom: 20px;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 15px;
}

.testimonial-stars i {
  color: var(--primary-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.5));
}

/* ========================================
   RECENT CUSTOMERS SECTION
   ======================================== */
.recent-customers-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.recent-customers-carousel-wrapper {
  position: relative;
  padding: 0 70px;
  margin-top: 30px;
}

/* Controles específicos do Recent Customers - laterais */
.recent-customers-carousel-wrapper .category-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.recent-customers-carousel-wrapper .category-carousel-nav-prev {
  left: 10px;
  order: initial;
}

.recent-customers-carousel-wrapper .category-carousel-nav-next {
  right: 10px;
  order: initial;
}

.recent-customers-carousel-wrapper .category-carousel-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.recent-customers-carousel-wrapper .category-carousel-nav.disabled:hover {
  transform: translateY(-50%);
}

.recent-customers-carousel-wrapper .category-carousel-nav-prev::after {
  display: none;
}

.recent-customers-carousel-container {
  overflow: hidden;
  padding: 20px 0;
  margin: -20px 0;
}

.recent-customers-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-customer-card {
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(23, 22, 26, 0.95), rgba(16, 15, 18, 1));
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-customer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recent-customer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.recent-customer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(var(--primary-rgb), 0.15),
    inset 0 0 60px rgba(var(--primary-rgb), 0.05);
  z-index: 10;
}

.recent-customer-card:hover::before {
  opacity: 1;
}

.recent-customer-card:hover::after {
  opacity: 1;
}

.recent-customer-card:hover .recent-customer-avatar {
  transform: scale(1.1);
}

.recent-customer-card:hover .recent-customer-status {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
}

.recent-customer-card:hover .recent-customer-name {
  color: var(--primary-color);
}

.recent-customer-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: visible;
  border: 3px solid rgba(var(--primary-rgb), 0.3);
  position: relative;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.05));
  transition: all 0.4s ease;
}

.recent-customer-card:hover .recent-customer-avatar {
  transform: scale(1.1);
  border-color: rgba(var(--primary-rgb), 0.6);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.recent-customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.recent-customer-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.05));
  position: relative;
  border-radius: 50%;
}

.recent-customer-avatar-placeholder span {
  position: relative;
  z-index: 1;
}

.recent-customer-status {
  position: absolute;
  bottom: -10px;
  right: 28px;
  width: 15px;
  height: 15px;
  background: #10b981;
  border: 2px solid rgba(16, 15, 18, 1);
  border-radius: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 2s infinite;
  z-index: 10;
  transition: all 0.3s ease;
}

.recent-customer-status svg {
  display: block;
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.recent-customer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  white-space: nowrap;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-customer-product {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.recent-customer-price {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.recent-customer-time {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

/* Responsivo - Recent Customers */
@media (max-width: 1200px) {
  .recent-customer-card {
    min-width: calc(33.333% - 13.333px);
  }
  
  .recent-customers-carousel-wrapper {
    padding: 0 60px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav-prev {
    left: 5px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav-next {
    right: 5px;
  }
}

@media (max-width: 768px) {
  .recent-customers-carousel-wrapper {
    padding: 0 55px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav-prev {
    left: 5px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav-next {
    right: 5px;
  }
  
  .recent-customer-card {
    min-width: calc(50% - 10px);
  }
  
  .recent-customer-avatar {
    width: 70px;
    height: 70px;
  }
  
  .recent-customer-name {
    font-size: 16px;
  }
  
  .recent-customer-product {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .recent-customers-carousel-wrapper {
    padding: 0 50px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav-prev {
    left: 2px;
  }
  
  .recent-customers-carousel-wrapper .category-carousel-nav-next {
    right: 2px;
  }
  
  .recent-customer-card {
    min-width: 100%;
  }
  
  .recent-customer-avatar {
    width: 60px;
    height: 60px;
  }
}

/* Responsivo - Our Advantages & Testimonials */
@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 15px;
  }
  
  .edgtf-st-title {
    font-size: 32px !important;
  }
  
  .advantages-subtitle {
    font-size: 16px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .advantage-card {
    padding: 30px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .edgtf-st-title {
    font-size: 28px !important;
  }
  
  .advantage-card {
    padding: 25px 15px;
  }
  
  .advantage-icon {
    width: 70px;
    height: 70px;
  }
  
  .advantage-icon svg,
  .avatar-letter {
    width: 32px;
    height: 32px;
    font-size: 28px;
  }
  
  .advantage-title {
    font-size: 18px;
  }
  
  .advantage-description,
  .testimonial-text {
    font-size: 14px;
  }
}

/* ========================================
   HERO SECTION - Header Principal
   ======================================== */
.hero-section {
  background: #000000;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 0;
}

.hero-section::before {
  content: 'ENERGY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 280px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(var(--primary-rgb), 0.1);
  text-stroke: 2px rgba(var(--primary-rgb), 0.1);
  z-index: 1;
  pointer-events: none;
  letter-spacing: 20px;
  white-space: nowrap;
  user-select: none;
}

.hero-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero-content {
  text-align: center;
  z-index: 10;
  position: relative;
  padding: 40px 20px;
  top: 7rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title-white {
  color: #fff;
  display: block;
  text-shadow: 
    0 0 40px rgba(255, 255, 255, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title-highlight {
  color: var(--primary-color);
  display: block;
  background: linear-gradient(135deg, rgb(var(--primary-ini-rgb)) 0%, rgb(var(--primary-end-rgb)) 100%);;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.5);
  filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.6));
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
  width: 350px;
  height: 350px;
}

.hero-btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--secondary-border);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-btn-primary:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.5);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.hero-btn span {
  position: relative;
  z-index: 1;
}

.hero-btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-image-container {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.hero-image {
  width: 1600px;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: brightness(1);
  animation: subtleFloat 8s ease-in-out infinite;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

/* Responsivo - Hero Section */
@media (max-width: 1200px) {
  
  .hero-section::before {
    font-size: 200px;
    letter-spacing: 15px;
  }
  
  .hero-title {
    font-size: 64px;
  }
}

@media (max-width: 968px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-section::before {
    font-size: 140px;
    letter-spacing: 10px;
    transform: translate(-50%, -50%);
  }
  
  .hero-title {
    font-size: 52px;
    letter-spacing: -1px;
  }
  
  .hero-btn {
    padding: 18px 40px;
    font-size: 16px;
  }
  
  .hero-image-container {
    top: 60%;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-section::before {
    font-size: 80px;
    letter-spacing: 5px;
    transform: translate(-50%, -50%);
  }
  
  .hero-section::after {
    font-size: 80px;
    letter-spacing: 10px;
    transform: translate(-50%, 30%);
  }
  
  .hero-title {
    font-size: 38px;
    margin-bottom: 30px;
  }
  
  .hero-btn {
    padding: 16px 35px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-image-container {
    top: 70%;
    width: 1450px;
  }
}

/* ============================================================================
   LATEST PRODUCTS - MOBILE OPTIMIZATION
   ============================================================================ */

/* Mobile Large - 2 colunas (481px - 768px) */
@media only screen and (max-width: 768px) and (min-width: 481px) {
  /* Ajusta o tamanho dos cards no carrossel */
  .category-products-carousel .edgtf-pl-outer li.product {
    min-width: calc(50% - 6px) !important;
    margin-right: 0 !important;
    list-style: none !important;
  }
  
  /* Ajusta o card interno para não espremer */
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pl-inner {
    min-height: 340px;
  }
  
  /* Ajusta imagem do produto */
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-image {
    margin-bottom: 12px !important;
  }
  
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-image img {
    width: 100% !important;
    height: auto !important;
    min-height: 160px;
    max-height: 180px;
    object-fit: cover;
  }
  
  /* Ajusta título do produto */
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-product-list-title {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Ajusta preço */
  .category-products-carousel .edgtf-pl-outer li.product .price,
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-price {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  
  /* Ajusta botão */
  .category-products-carousel .edgtf-pl-outer li.product .button,
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-btn {
    font-size: 12px !important;
    padding: 10px 14px !important;
    white-space: nowrap;
  }
  
  /* Ajusta wrapper do carrossel */
  .category-products-carousel-wrapper {
    padding: 0 50px !important;
  }
  
  .category-products-carousel {
    overflow: visible !important;
    padding: 15px 0 !important;
    margin: -15px 0 !important;
  }
}

/* Mobile Small - 1 coluna (até 480px) */
@media only screen and (max-width: 480px) {
  /* Cards ocupam toda a largura */
  .category-products-carousel .edgtf-pl-outer li.product {
    min-width: 100% !important;
    margin-right: 0 !important;
    list-style: none !important;
  }
  
  /* Card com mais espaço no mobile */
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pl-inner {
    min-height: auto;
  }
  
  /* Imagem com proporção adequada */
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-image {
    margin-bottom: 14px !important;
    width: 100%;
  }
  
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-image img {
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Título maior e mais legível */
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-product-list-title {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    min-height: auto;
  }
  
  /* Preço destacado */
  .category-products-carousel .edgtf-pl-outer li.product .price,
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
  }
  
  /* Botão maior e mais fácil de tocar */
  .category-products-carousel .edgtf-pl-outer li.product .button,
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-btn {
    font-size: 14px !important;
    padding: 12px 20px !important;
    width: 100%;
    display: block;
    text-align: center;
  }
  
  /* Ajusta texto/descrição se houver */
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-text,
  .category-products-carousel .edgtf-pl-outer li.product .product-description {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }
  
  /* Ajusta espaçamento dos produtos */
  .category-products-carousel .edgtf-pl-outer {
    gap: 12px !important;
  }
  
  .category-products-carousel {
    overflow: visible !important;
    padding: 15px 0 !important;
    margin: -15px 0 !important;
  }
}

/* Extra Small Mobile - 320px - 360px */
@media only screen and (max-width: 360px) {
  
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-pli-image img {
    min-height: 180px;
    max-height: 220px;
  }
  
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-product-list-title {
    font-size: 15px !important;
  }
  
  .category-products-carousel .edgtf-pl-outer li.product .button,
  .category-products-carousel .edgtf-pl-outer li.product .edgtf-btn {
    font-size: 13px !important;
    padding: 10px 16px !important;
  }
}

/* Ajustes para container da seção de produtos */
@media only screen and (max-width: 768px) {
  #our-latest-products {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  .edgtf-tab-container {
    padding: 15px 0 !important;
  }
  
  .edgtf-pl-holder {
    margin: 0 !important;
  }
}

/* Ajusta navegação do carrossel no mobile */
@media only screen and (max-width: 768px) {
  .category-carousel-nav {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
  }
  
  .category-carousel-controls {
    gap: 15px !important;
  }
  
  .category-products-carousel {
    padding: 20px 0 !important;
    margin: 0 10px !important;
  }
  
  .category-products-carousel .edgtf-pl-outer {
    padding: 0 10px !important;
  }
}

@media only screen and (max-width: 480px) {
  .category-carousel-nav {
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
  }
  
  .category-carousel-controls {
    gap: 12px !important;
    margin-top: 20px !important;
  }
  
  .category-products-carousel {
    padding: 15px 0 !important;
    margin: 0 10px !important;
  }
  
  .category-products-carousel .edgtf-pl-outer {
    padding: 0 10px !important;
  }
}
.widget.widget-recent{
  display: none;
}

/* ============================================================================
   PRODUCT PAGE (package.html) - Single Product Layout
   ============================================================================ */

/* Reset generic.css styles for product page */
.product .edgtf-single-product-content,
div[id^="product-"] .edgtf-single-product-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  margin-bottom: 60px !important;
}

/* Product Grid Layout - 2 Columns */
.edgtf-single-product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Gallery Column */
.woocommerce-product-gallery {
  width: 100%;
}

.woocommerce-product-gallery__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.woocommerce-product-gallery__image {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Product Info Column */
.edgtf-single-product-summary {
  width: 100%;
}

.summary.entry-summary {
  display: flex;
  flex-direction: column;
  
}

/* Product Title */
h4.edgtf-single-product-title,
.edgtf-single-product-title {
  font-size: 48px !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
  display: block !important;
}

/* Price */
p.price,
.summary .price,
.entry-summary .price {
  font-size: 42px !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  display: block !important;
}

.price .woocommerce-Price-currencySymbol {
  font-size: 42px !important;
  font-weight: 900 !important;
}

.price del {
  opacity: 0.5;
  margin-right: 12px;
  font-size: 32px !important;
}

/* Short Description */
.woocommerce-product-details__short-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.woocommerce-product-details__short-description p {
  margin: 0;
}

/* Add to Cart Form */
form.cart,
.summary form.cart,
.entry-summary form.cart {
  display: block !important;
  margin: 12px 0 !important;
  width: 100% !important;
}

button.single_add_to_cart_button.edgtf-btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.single_add_to_cart_button.button.alt:active {
  transform: translateY(0);
}

.single_add_to_cart_button.button.alt:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Product Meta (SKU, Category, Tags) */
.product_meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product_meta span {
  display: block;
}

.product_meta .sku_wrapper,
.product_meta .posted_in,
.product_meta .tagged_as {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.product_meta .sku,
.product_meta a {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product_meta a:hover {
  color: var(--primary-color);
}

/* Tabs Section */
.woocommerce-tabs.wc-tabs-wrapper {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.tabs.wc-tabs {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tabs.wc-tabs li {
  margin: 0;
  padding: 0;
}

.tabs.wc-tabs li a {
  display: block;
  padding: 16px 32px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tabs.wc-tabs li.active a,
.tabs.wc-tabs li a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Tab Content */
.woocommerce-Tabs-panel {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.woocommerce-Tabs-panel h2 {
  display: none;
}

.woocommerce-Tabs-panel p {
  margin: 0 0 16px 0;
}

/* Related Products Section */
.related.products {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  overflow: visible;
}

.related.products h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 32px;
}

.related.products .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.related.products .products li.product {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: visible;
}

.related.products .products li.product .edgtf-pl-inner {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.related.products .products li.product .edgtf-pl-image {
  width: 100%;
  overflow: hidden;
}

.related.products .products li.product .edgtf-pl-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.related.products .products li.product .edgtf-product-list-title {
  width: 100%;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
}

.related.products .products li.product .edgtf-pli-text {
  width: 100%;
  overflow: visible;
}

.related.products .products li.product .edgtf-pli-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related.products .products li.product .edgtf-pli-actions button,
.related.products .products li.product .edgtf-pli-actions a {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .edgtf-single-product-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .edgtf-single-product-title {
    font-size: 36px !important;
  }
  
  .related.products .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .related.products .products li.product .edgtf-pli-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .related.products .products li.product .edgtf-pli-actions button,
  .related.products .products li.product .edgtf-pli-actions a {
    width: 100%;
  }
  
  .summary .price {
    font-size: 32px !important;
  }
}

@media (max-width: 768px) {
  .edgtf-single-product-title {
    font-size: 28px !important;
  }
  
  .summary .price {
    font-size: 28px !important;
  }
  
  .related.products .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .related.products .products li.product .edgtf-pli-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .related.products .products li.product .edgtf-pli-actions button,
  .related.products .products li.product .edgtf-pli-actions a {
    width: 100%;
    font-size: 11px;
    padding: 8px 10px;
  }
  
  form.cart {
    flex-wrap: wrap;
  }
  
  .single_add_to_cart_button.button.alt {
    width: 100%;
    min-width: auto;
  }
  
  .tabs.wc-tabs {
    flex-wrap: wrap;
  }
  
  .tabs.wc-tabs li a {
    padding: 12px 20px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .edgtf-single-product-content {
    gap: 24px;
  }
  
  .edgtf-single-product-title {
    font-size: 24px !important;
  }
  
  .summary .price {
    font-size: 24px !important;
  }
  
  .related.products .products {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .related.products h2 {
    font-size: 24px !important;
    margin-bottom: 20px;
  }
  
  .related.products .products li.product .edgtf-pli-actions {
    flex-direction: column;
    gap: 6px;
  }
  
  .related.products .products li.product .edgtf-pli-actions button,
  .related.products .products li.product .edgtf-pli-actions a {
    width: 100%;
    font-size: 10px;
    padding: 6px 8px;
  }
  
  .product_meta {
    font-size: 12px;
  }
}

 .widget.woocommerce.widget_products ul li{
    min-height: 80px!important;
  }
  
  /* Remove marker/bullet points do subscription slider */
  .subscription-slider li,
  .subscription-slider-wrapper li,
  .subscription-slide li {
    list-style: none !important;
  }
  
  .subscription-slider li::marker,
  .subscription-slider-wrapper li::marker,
  .subscription-slide li::marker {
    display: none !important;
    content: none !important;
  }

  /* Remove conteúdo dos pseudo-elementos das setas de paginação */
  .woocommerce-pagination ul li a.prev:before{
    display: none !important;
    content: none !important;
  }
  .woocommerce-pagination ul li a.next:before{
    display: none !important;
    content: none !important;
  }

  /* ============================================ */
  /* FIX: Grid de Produtos - Alinhamento Correto */
  /* ============================================ */
  
  /* Grid container */
  .products.columns-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Cada item do produto */
  .products.columns-3 > li.product {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  /* Container interno do produto */
  .products.columns-3 > li.product .edgtf-pl-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
  }
  
  /* Área da imagem - altura fixa */
  .products.columns-3 .edgtf-pl-image {
    width: 100% !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    flex-shrink: 0 !important;
  }
  
  /* Imagem do produto - cover para preencher uniformemente */
  .products.columns-3 .edgtf-pl-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Conteúdo do card - flex para ocupar espaço restante */
  .products.columns-3 .edgtf-pl-inner > div:not(.edgtf-pl-image) {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  /* Título do produto - altura fixa para alinhamento */
  .products.columns-3 .edgtf-product-list-title {
    min-height: 36.4px !important;
    max-height: 36.4px !important;
  }
  
  /* Botões de ação - sempre na parte inferior */
  .products.columns-3 .edgtf-pli-actions {
    margin-top: auto !important;
  }
  
  /* Responsivo: 2 colunas em tablets */
  @media (max-width: 991px) {
    .products.columns-3 {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 15px !important;
    }
  }
  
  /* Responsivo: 1 coluna em mobile */
  @media (max-width: 600px) {
    .products.columns-3 {
      grid-template-columns: 1fr !important;
      gap: 15px !important;
    }
  }

  /* ============================================ */
  /* FIX: Subscription Plans & Featured Products */
  /* ============================================ */
  
  /* Slides do subscription/featured products */
  .subscription-slide {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Cada item do produto no slider */
  .subscription-slide > li.product {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  /* Container interno do produto no slider */
  .subscription-slide > li.product .edgtf-pl-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
  }
  
  /* Área da imagem no slider - mesma altura do grid */
  .subscription-slide .edgtf-pl-image {
    width: 100% !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    flex-shrink: 0 !important;
  }
  
  /* Imagem do produto no slider */
  .subscription-slide .edgtf-pl-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Conteúdo do card no slider */
  .subscription-slide .edgtf-pl-inner > div:not(.edgtf-pl-image) {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  /* Título do produto no slider */
  .subscription-slide .edgtf-product-list-title {
    min-height: 36.4px !important;
    max-height: 36.4px !important;
  }
  
  /* Botões de ação no slider */
  .subscription-slide .edgtf-pli-actions {
    margin-top: auto !important;
  }
  
  /* Container do slider */
  .subscription-slider-wrapper {
    width: 100% !important;
    overflow: hidden !important;
  }
  
  .subscription-slider {
    display: flex !important;
    transition: transform 0.3s ease-in-out !important;
  }
 /* ============================================ */
  /* FIX: Produtos Index - Alinhamento Consistente */
  /* ============================================ */
  
  /* ===== FEATURED PRODUCTS CAROUSEL ===== */
  
  /* Cada card no carousel de featured products */
  .product-carousel .product-card {
    display: flex !important;
    flex-direction: column !important;
    width: 280px !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Container interno do produto no carousel */
  .product-carousel .edgtf-pl-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
  }
  
  /* Área da imagem no carousel - mesma altura do grid */
  .product-carousel .edgtf-pl-image {
    width: 100% !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    flex-shrink: 0 !important;
  }
  
  /* Imagem do produto no carousel */
  .product-carousel .edgtf-pl-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Conteúdo do card no carousel */
  .product-carousel .edgtf-pl-inner > div:not(.edgtf-pl-image) {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  /* Título do produto no carousel */
  .product-carousel .edgtf-product-list-title {
    min-height: 36.4px !important;
    max-height: 36.4px !important;
  }
  
  /* Botões de ação no carousel */
  .product-carousel .edgtf-pli-actions {
    margin-top: auto !important;
  }
  
  /* ===== CATEGORY TABS PRODUCTS ===== */
  
  /* Cada produto nas tabs de categorias */
  .products-container-wrapper li.product,
  .edgtf-pl-outer li.product,
  .category-products-carousel li.product {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  /* Container interno nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-inner,
  .edgtf-pl-outer .edgtf-pl-inner,
  .category-products-carousel .edgtf-pl-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
  }
  
  /* Área da imagem nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-image,
  .edgtf-pl-outer .edgtf-pl-image,
  .category-products-carousel .edgtf-pl-image {
    width: 100% !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    flex-shrink: 0 !important;
  }
  
  /* Imagem do produto nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-image img,
  .edgtf-pl-outer .edgtf-pl-image img,
  .category-products-carousel .edgtf-pl-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Conteúdo do card nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-inner > div:not(.edgtf-pl-image),
  .edgtf-pl-outer .edgtf-pl-inner > div:not(.edgtf-pl-image),
  .category-products-carousel .edgtf-pl-inner > div:not(.edgtf-pl-image) {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  /* Título nas tabs de categorias */
  .products-container-wrapper .edgtf-product-list-title,
  .edgtf-pl-outer .edgtf-product-list-title,
  .category-products-carousel .edgtf-product-list-title {
    min-height: 36.4px !important;
    max-height: 36.4px !important;
  }
  
  /* Botões de ação nas tabs de categorias */
  .products-container-wrapper .edgtf-pli-actions,
  .edgtf-pl-outer .edgtf-pli-actions,
  .category-products-carousel .edgtf-pli-actions {
    margin-top: auto !important;
  }
  
  /* ===== SUBSCRIPTION CARDS ===== */
  
  /* Ajustes responsivos para subscription cards */
  @media (max-width: 768px) {
    .subscriptions-grid {
      grid-template-columns: 1fr !important;
      padding: 0 10px !important;
    }
    
    .subscription-card {
      max-width: 100% !important;
    }
  }
  
  @media (max-width: 600px) {
    .product-carousel .product-card {
      width: 100% !important;
    }
  }
  
  /* ===== CATEGORY CAROUSEL LAYOUT ===== */
  
  /* Container dos produtos no carousel de categorias */
  .edgtf-pl-outer {
    display: flex !important;
    gap: 20px !important;
    transition: transform 0.3s ease !important;
  }
  
  /* Garantir que os produtos sejam flex itens */
  .edgtf-pl-outer > li.product {
    flex: 0 0 auto !important;
    width: 280px !important;
  }
  
  /* Responsivo para carousel de categorias */
  @media (max-width: 768px) {
    .edgtf-pl-outer > li.product {
      width: 250px !important;
    }
  }
  
  @media (max-width: 480px) {
    .edgtf-pl-outer > li.product {
      width: 100% !important;
      max-width: 320px !important;
    }
  }

  /* ===== MOBILE TOUCH/SWIPE SUPPORT ===== */

  /* Melhorar área de toque em mobile */
  @media (max-width: 768px) {
    .edgtf-pl-outer,
    .recent-customers-carousel,
    .product-carousel {
      touch-action: pan-y pinch-zoom !important;
      -webkit-user-select: none !important;
      user-select: none !important;
      cursor: grab !important;
    }

    .edgtf-pl-outer:active,
    .recent-customers-carousel:active,
    .product-carousel:active {
      cursor: grabbing !important;
    }

    /* Suavizar transições de arraste */
    .edgtf-pl-outer,
    .recent-customers-carousel {
      transition: transform 0.3s ease !important;
    }

    /* Indicador visual de que pode arrastar */
    .category-products-carousel-wrapper::before,
    .recent-customers-carousel-wrapper::before {
      content: '';
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      display: none;
    }

    @media (max-width: 768px) {
      .category-products-carousel-wrapper::before,
      .recent-customers-carousel-wrapper::before {
        display: block;
      }
    }
  }

  /* ================================================
       BACK TO TOP BUTTON
       ================================================ */

    #edgtf-back-to-top.on {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    #edgtf-back-to-top:hover {
      transform: translateY(-5px);
    }

    #edgtf-back-to-top:active {
      transform: translateY(-2px) scale(0.95);
    }

    #edgtf-back-to-top .fa-angle-up {
      animation: bounceUpDown 2s infinite ease-in-out;
    }

    @keyframes bounceUpDown {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
    }

    /* ================================================
       DISCORD FLOATING BUTTON
       ================================================ */
    .discord-float-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 25px rgba(88, 101, 242, 0.5), 0 0 40px rgba(88, 101, 242, 0.3);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 9998;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      animation: floatIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    }

    @keyframes floatIn {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .discord-float-btn:hover {
      background: linear-gradient(135deg, #6b76f5 0%, #5865F2 100%);
      box-shadow: 0 8px 35px rgba(88, 101, 242, 0.7), 0 0 60px rgba(88, 101, 242, 0.5);
      transform: translateY(-8px) scale(1.05);
      border-color: rgba(255, 255, 255, 0.3);
      animation: wiggle 0.6s ease-in-out;
    }

    @keyframes wiggle {
      0%, 100% { transform: translateY(-8px) scale(1.05) rotate(0deg); }
      25% { transform: translateY(-8px) scale(1.05) rotate(-5deg); }
      75% { transform: translateY(-8px) scale(1.05) rotate(5deg); }
    }

    .discord-float-btn svg {
      width: 32px;
      height: 32px;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
      animation: pulse 2s infinite ease-in-out;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }

    /* Efeito de pulso ao redor do botão */
    .discord-pulse {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      background: rgba(88, 101, 242, 0.4);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: pulseRing 2s infinite ease-out;
      pointer-events: none;
    }

    @keyframes pulseRing {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
      }
      100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
      }
    }

    /* Responsivo */
    @media (max-width: 768px) {

      .discord-float-btn {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 20px;
      }

      .discord-float-btn svg {
        width: 28px;
        height: 28px;
      }
    }

    @media (max-width: 480px) {

      .discord-float-btn {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 15px;
      }

      .discord-float-btn svg {
        width: 26px;
        height: 26px;
      }
    }

    /* ============================================ */
  /* FIX: Produtos Index - Alinhamento Consistente */
  /* ============================================ */
  
  /* ===== FEATURED PRODUCTS CAROUSEL ===== */
  
  /* Cada card no carousel de featured products */
  .product-carousel .product-card {
    display: flex !important;
    flex-direction: column !important;
    width: 280px !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Container interno do produto no carousel */
  .product-carousel .edgtf-pl-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
  }
  
  /* Área da imagem no carousel - mesma altura do grid */
  .product-carousel .edgtf-pl-image {
    width: 100% !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    flex-shrink: 0 !important;
  }
  
  /* Imagem do produto no carousel */
  .product-carousel .edgtf-pl-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Conteúdo do card no carousel */
  .product-carousel .edgtf-pl-inner > div:not(.edgtf-pl-image) {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  /* Título do produto no carousel */
  .product-carousel .edgtf-product-list-title {
    min-height: 36.4px !important;
    max-height: 36.4px !important;
  }
  
  /* Botões de ação no carousel */
  .product-carousel .edgtf-pli-actions {
    margin-top: auto !important;
  }
  
  /* ===== CATEGORY TABS PRODUCTS ===== */
  
  /* Cada produto nas tabs de categorias */
  .products-container-wrapper li.product,
  .edgtf-pl-outer li.product,
  .category-products-carousel li.product {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  /* Container interno nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-inner,
  .edgtf-pl-outer .edgtf-pl-inner,
  .category-products-carousel .edgtf-pl-inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
  }
  
  /* Área da imagem nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-image,
  .edgtf-pl-outer .edgtf-pl-image,
  .category-products-carousel .edgtf-pl-image {
    width: 100% !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    flex-shrink: 0 !important;
  }
  
  /* Imagem do produto nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-image img,
  .edgtf-pl-outer .edgtf-pl-image img,
  .category-products-carousel .edgtf-pl-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  /* Conteúdo do card nas tabs de categorias */
  .products-container-wrapper .edgtf-pl-inner > div:not(.edgtf-pl-image),
  .edgtf-pl-outer .edgtf-pl-inner > div:not(.edgtf-pl-image),
  .category-products-carousel .edgtf-pl-inner > div:not(.edgtf-pl-image) {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  /* Título nas tabs de categorias */
  .products-container-wrapper .edgtf-product-list-title,
  .edgtf-pl-outer .edgtf-product-list-title,
  .category-products-carousel .edgtf-product-list-title {
    min-height: 36.4px !important;
    max-height: 36.4px !important;
  }
  
  /* Botões de ação nas tabs de categorias */
  .products-container-wrapper .edgtf-pli-actions,
  .edgtf-pl-outer .edgtf-pli-actions,
  .category-products-carousel .edgtf-pli-actions {
    margin-top: auto !important;
  }
  
  /* ===== SUBSCRIPTION CARDS ===== */
  
  /* Ajustes responsivos para subscription cards */
  @media (max-width: 768px) {
    .subscriptions-grid {
      grid-template-columns: 1fr !important;
      padding: 0 10px !important;
    }
    
    .subscription-card {
      max-width: 100% !important;
    }
  }
  
  @media (max-width: 600px) {
    .product-carousel .product-card {
      width: 100% !important;
    }
  }
  
  /* ===== CATEGORY CAROUSEL LAYOUT ===== */
  
  /* Container dos produtos no carousel de categorias */
  .edgtf-pl-outer {
    display: flex !important;
    gap: 20px !important;
    transition: transform 0.3s ease !important;
  }
  
  /* Garantir que os produtos sejam flex itens */
  .edgtf-pl-outer > li.product {
    flex: 0 0 auto !important;
    width: 280px !important;
  }
  
  /* Responsivo para carousel de categorias */
  @media (max-width: 768px) {
    .edgtf-pl-outer > li.product {
      width: 250px !important;
    }
  }
  
  @media (max-width: 480px) {
    .edgtf-pl-outer > li.product {
      width: 100% !important;
      max-width: 320px !important;
    }
  }

  /* ===== MOBILE TOUCH/SWIPE SUPPORT ===== */

  /* Melhorar área de toque em mobile */
  @media (max-width: 768px) {
    .edgtf-pl-outer,
    .recent-customers-carousel,
    .product-carousel {
      touch-action: pan-y pinch-zoom !important;
      -webkit-user-select: none !important;
      user-select: none !important;
      cursor: grab !important;
    }

    .edgtf-pl-outer:active,
    .recent-customers-carousel:active,
    .product-carousel:active {
      cursor: grabbing !important;
    }

    /* Suavizar transições de arraste */
    .edgtf-pl-outer,
    .recent-customers-carousel {
      transition: transform 0.3s ease !important;
    }

    /* Indicador visual de que pode arrastar */
    .category-products-carousel-wrapper::before,
    .recent-customers-carousel-wrapper::before {
      content: '';
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 4px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      display: none;
    }

    @media (max-width: 768px) {
      .category-products-carousel-wrapper::before,
      .recent-customers-carousel-wrapper::before {
        display: block;
      }
    }
  }

   /* Smoke Canvas */
      #smoke-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9998;
      }

      /* Mobile - Desabilitar efeito de fumaça */
      @media (max-width: 768px) {
        #smoke-canvas {
          display: none !important;
        }
      }
      .tebex-footer-wrapper{
        display: none !important;
      }

      /* Modern Package Page Styles */
.modern-product-content {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery hover effects */
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(var(--primary-rgb), 0.3) !important;
}

/* Tab styles */
.modern-tabs li:not(.active) a {
  color: #9ca3af;
  border-bottom: 3px solid transparent;
}

.modern-tabs li:not(.active) a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.modern-tabs li a svg {
  transition: transform 0.3s;
}

.modern-tabs li:hover a svg {
  transform: scale(1.1);
}

/* Disabled button state */
.add-to-cart-ajax:disabled,
.subscribe-ajax-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .modern-product-content {
    grid-template-columns: 1fr 420px !important;
    gap: 30px !important;
  }
}

@media (max-width: 1024px) {
  .modern-product-content {
    grid-template-columns: 1fr !important;
  }
  
  .product-info-modern {
    position: static !important;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .product-gallery-modern {
    max-width: 800px;
    margin: 0 auto;
  }
}

/* Related Products Grid - Mesmo estilo da index.html */
.related-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Cada produto relacionado */
.related-products-grid > li.product {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Container interno dos produtos relacionados */
.related-products-grid > li.product .edgtf-pl-inner {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 280px !important;
}

/* Área da imagem - altura fixa igual à index.html */
.related-products-grid .edgtf-pl-image {
  width: 100% !important;
  height: 140px !important;
  min-height: 140px !important;
  max-height: 140px !important;
  flex-shrink: 0 !important;
}

/* Imagem do produto - cover para preencher uniformemente */
.related-products-grid .edgtf-pl-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Conteúdo do card - flex para ocupar espaço restante */
.related-products-grid .edgtf-pl-inner > div:not(.edgtf-pl-image) {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

/* Título do produto - altura fixa para alinhamento */
.related-products-grid .edgtf-product-list-title {
  min-height: 36.4px !important;
  max-height: 36.4px !important;
}

/* Botões de ação - sempre na parte inferior */
.related-products-grid .edgtf-pli-actions {
  margin-top: auto !important;
}

@media (max-width: 1200px) {
  .related-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}

@media (max-width: 768px) {
  .edgtf-title-holder {
    height: 120px !important;
  }
  
  .edgtf-title-wrapper {
    height: 120px !important;
  }
  
  .edgtf-page-title {
    font-size: 24px !important;
  }
  
  .modern-product-content {
    margin-bottom: 40px !important;
  }
  
  .product-info-modern {
    padding: 25px !important;
  }
  
  .product-info-modern h1 {
    font-size: 22px !important;
  }
  
  .price-section span {
    font-size: 36px !important;
  }
  
  .modern-tabs li a {
    padding: 15px 20px !important;
    font-size: 14px !important;
  }
  
  .woocommerce-Tabs-panel {
    padding: 25px 20px !important;
  }
  
  .gallery-nav {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
  
  .thumbnail-item {
    flex: 0 0 70px !important;
    height: 70px !important;
  }
  
  .try-before-buy-card {
    padding: 20px !important;
  }
  
  .try-before-buy-card h3 {
    font-size: 15px !important;
  }
  
  .try-before-buy-card p {
    font-size: 12px !important;
  }
  
  .edgtf-container {
    padding: 0 15px 60px !important;
  }
}

@media (max-width: 600px) {
  .related-products-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* Gallery Navigation Buttons */
.gallery-nav:hover {
  background: rgba(var(--primary-rgb), 0.9) !important;
  border-color: rgba(var(--primary-rgb), 0.5) !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4) !important;
}

.gallery-nav:active {
  transform: translateY(-50%) scale(0.95) !important;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--primary-rgb), 0.5) rgba(255, 255, 255, 0.1);
}

.gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.5);
  border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-rgb), 0.7);
}

.thumbnail-item:hover {
  border-color: rgba(var(--primary-rgb), 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.thumbnail-item.active {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.2);
}

/* Main Gallery Container */
.main-gallery-container {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-gallery-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Description content styling */
.description-content p {
  margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.description-content li {
  margin-bottom: 8px;
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4 {
  color: #fff;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.description-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.description-content a:hover {
  color: #ff3d4a;
  text-decoration: underline;
}

/* Loading animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Description Images Styles */
.description-single-image img:hover {
  transform: scale(1.02) !important;
}

.description-image-grid {
  animation: fadeIn 0.5s ease-out;
}

.description-image-carousel-container {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for description images */
@media (max-width: 768px) {
  .description-image-grid {
    grid-template-columns: 1fr !important;
    padding: 15px !important;
    gap: 12px !important;
  }
  
  .description-image-carousel-container {
    padding: 20px 15px !important;
  }
  
  .description-carousel-track .carousel-slide {
    flex: 0 0 calc(100% - 10px) !important;
  }
  
  .description-carousel-track .carousel-slide img {
    height: 200px !important;
  }
  
  .description-image-carousel-container button {
    width: 35px !important;
    height: 35px !important;
    font-size: 14px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .description-carousel-track .carousel-slide {
    flex: 0 0 calc(50% - 10px) !important;
  }
}

/* Click to enlarge indicator */
.description-single-image {
  overflow: visible !important;
}

.imageWrapper::before,
.carousel-slide::before {
  content: '🔍';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(var(--primary-rgb), 0.9);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.imageWrapper:hover::before,
.carousel-slide:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.description-single-image::after {
  content: '🔍 Clique para ver em tamanho real';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
}

.description-single-image:hover::after {
  opacity: 1;
}


    /* Loading Screen Styles */
    .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #111011;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .loading-screen.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loading-spinner {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .loading-dot {
      width: 20px;
      height: 20px;
      background-color: var(--primary-color);
      border-radius: 50%;
      animation: loading-bounce 1.4s infinite ease-in-out both;
    }

    .loading-dot:nth-child(1) {
      animation-delay: -0.32s;
    }

    .loading-dot:nth-child(2) {
      animation-delay: -0.16s;
    }

    @keyframes loading-bounce {
      0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
      }
      40% {
        transform: scale(1);
        opacity: 1;
      }
    }
    /* Animação de glow pulsante com a cor vermelha */
    @keyframes glowPulse {
      0%, 100% {
        box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.12), 
                    0 0 40px rgba(var(--primary-rgb), 0.06), 
                    0 0 60px rgba(var(--primary-rgb), 0.03),
                    inset 0 0 20px rgba(var(--primary-rgb), 0.02);
      }
      50% {
        box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.20), 
                    0 0 60px rgba(var(--primary-rgb), 0.10), 
                    0 0 80px rgba(var(--primary-rgb), 0.05),
                    inset 0 0 30px rgba(var(--primary-rgb), 0.03);
      }
    }
    
    /* Animação shimmer - brilho que passa pelo card */
    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }
      100% {
        background-position: 200% center;
      }
    }
    
    /* Animação de flutuação suave */
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-3px);
      }
    }
    
    /* Animação de pulso para o preço */
    @keyframes pricePulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }
    
    .edgtf-pl-inner {
      position: relative;
    }
    
    /* Overlay de shimmer */
    .edgtf-pl-inner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 15px;
      background: linear-gradient(
        90deg, 
        transparent, 
        rgba(var(--primary-rgb), 0.15), 
        transparent
      );
      background-size: 200% 100%;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }
    
    /* Estados de hover */
    .edgtf-pl-inner:hover {
      transform: translateY(-8px);
      border-color: var(--primary-color) !important;
      animation: glowPulse 3.2s ease-out infinite;
    }
    
    .edgtf-pl-inner:hover::before {
      opacity: 0.35;
      animation: shimmer 3s linear infinite;
    }
    
    .edgtf-pl-inner:hover .edgtf-pl-image img {
      transform: scale(1.08) rotate(1deg);
    }
    
    .edgtf-pl-image img {
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Animações de elementos internos */
    .edgtf-pl-inner:hover .edgtf-product-list-title {
      animation: float 1.5s ease-in-out infinite;
    }
    
    .edgtf-pl-inner:hover .price .woocommerce-Price-amount {
      animation: pricePulse 1s ease-in-out infinite;
    }
    
    .edgtf-pl-inner:hover .edgtf-pli-onsale {
      animation: float 1.2s ease-in-out infinite;
    }
    /* Animação do Loading Spinner - Garantir que funciona */
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 0.6s linear infinite;
  display: inline-block;
  will-change: transform;
}

/* Estilo do Menu de Usuário */
.edgtf-user-menu-wrapper {
  display: inline-flex;
  top: 15px;
}

.edgtf-user-menu-opener {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  padding: 5px 30px;
  border-radius: 4px;
  transition: background 0.3s ease;
  height: 100%;
}

.edgtf-user-menu-opener:hover {
  background: rgba(255, 255, 255, 0.05);
}

.edgtf-user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--primary-rgb), 0.4);
}

.edgtf-user-name {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.edgtf-user-name-text {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.edgtf-user-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.edgtf-user-menu-wrapper:hover .edgtf-user-arrow {
  transform: rotate(180deg);
}

/* Dropdown do usuário */
.edgtf-user-menu-wrapper .second {
  position: absolute;
  top: 100%;
  right: auto;
  left: -80px;
  min-width: 220px;
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 4px;
  padding: 10px 0;
  margin-top: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.edgtf-user-menu-wrapper .second.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Centralizar carrinho */
.edgtf-shopping-cart-holder {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 20px !important;
}

.edgtf-shopping-cart-inner {
  display: flex;
  align-items: center;
}

.edgtf-header-cart {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
}

.edgtf-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.edgtf-cart-icon svg {
  display: block;
}

.edgtf-cart-number {
  background: var(--primary-color);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
}

/* ===================================
 CURRENCY SELECTOR STYLES
 =================================== */

.edgtf-currency-selector-holder {
  position: relative;
}

.edgtf-currency-dropdown {
  position: relative;
}

.edgtf-currency-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 44px;
  height: 40px;
}

.edgtf-currency-button:hover {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-2px);
}

.edgtf-currency-button .currency-symbol-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  min-width: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edgtf-currency-button .currency-code {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.edgtf-currency-button .currency-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.edgtf-currency-button.active .currency-arrow {
  transform: rotate(180deg);
}

.edgtf-currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 8px;
  padding: 8px 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.edgtf-currency-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #c0c0c0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.currency-option:hover {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
}

.currency-option.active {
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-color);
}

.currency-symbol {
  font-weight: 700;
  font-size: 16px;
  width: 24px;
  text-align: center;
}

.currency-name {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Estilo do botão de documentação - Igual ao botão de moeda */
.edgtf-docs-holder {
  position: relative;
}

.edgtf-docs-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 44px;
  height: 40px;
  position: relative;
  top: 5px;
}

.edgtf-docs-button:hover {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-2px);
}

.edgtf-docs-button svg {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.edgtf-docs-button:hover svg path {
  fill: var(--primary-color);
}

.edgtf-docs-button:hover svg line,
.edgtf-docs-button:hover svg polyline {
  stroke: #ffffff;
}

/* Posicionamento da Logo - Responsivo */
.edgtf-logo-wrapper {
  transition: margin-left 0.3s ease;
}

/* Telas muito grandes - Logo bem à direita */
@media screen and (min-width: 1920px) {
  .edgtf-logo-wrapper {
      margin-left: 250px;
  }
}

/* Telas grandes - Logo à direita */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .edgtf-logo-wrapper {
      margin-left: 180px;
  }
}

/* Telas médias - Logo um pouco à direita */
@media screen and (min-width: 1220px) and (max-width: 1439px) {
  .edgtf-logo-wrapper {
      margin-left: -30px;
  }
}

/* Telas menores que 1220px - Logo centralizada/esquerda */
@media screen and (max-width: 1219px) {
  .edgtf-logo-wrapper {
      margin-left: 0;
  }
}

/* Ajustes para Mobile */
@media screen and (max-width: 1219px) {
  /* Mostrar toggle mobile */
  .edgtf-side-menu-button-opener {
      display: inline-flex !important;
  }
  
  /* Esconder menu de navegação */
  .edgtf-main-menu {
      display: none !important;
  }
  
  /* Esconder link do Discord no header */
  .edgtf-social-icon-widget-holder {
      display: none !important;
  }
  
  /* Esconder botão Sign In completo no header */
  .edgtf-login-button {
      display: none !important;
  }
  
  /* Mostrar ícone de login no mobile */
  .edgtf-login-icon-mobile {
      display: inline-flex !important;
  }
  
  /* MANTER menu de usuário visível no mobile */
  .edgtf-user-menu-wrapper {
      display: inline-flex !important;
      position: relative;
      margin: 0 10px !important;
  }
  
  /* Esconder busca e documentação no mobile header */
  .edgtf-search-opener,
  .edgtf-docs-holder {
      display: none !important;
  }
  
  /* Ajustes do botão de moeda no mobile */
  .edgtf-currency-button {
      min-width: auto;
      height: auto;
  }
  
  /* Ajustes do botão de docs no mobile */
  .edgtf-docs-button {
      min-width: auto;
      height: auto;
  }
  
  /* Ajustar espaçamento dos itens restantes */
  .edgtf-shopping-cart-holder {
      margin: 0 10px !important;
  }
  
  /* Currency selector no mobile */
  .edgtf-currency-selector-holder {
      margin: 0 10px !important;
  }
  
  .edgtf-currency-button {
      padding: 8px 10px;
      font-size: 12px;
      min-width: auto;
      justify-content: center;
      gap: 0;
  }
  
  /* Esconder código da moeda no mobile, mostrar apenas símbolo */
  .edgtf-currency-button .currency-code {
      display: none !important;
  }
  
  .edgtf-currency-button .currency-symbol-icon {
      font-size: 20px;
      font-weight: 700;
      min-width: auto;
      margin: 0;
  }
  
  /* Esconder seta no mobile para botão mais limpo */
  .edgtf-currency-button .currency-arrow {
      display: none !important;
  }
  
  .edgtf-currency-dropdown-menu {
      position: fixed;
      top: 60px !important;
      right: 10px;
      left: auto;
      min-width: 160px;
  }
  
  /* No mobile, mostrar apenas avatar */
  .edgtf-user-name {
      display: none !important;
  }
  
  .edgtf-user-avatar {
      width: 35px !important;
      height: 35px !important;
  }
  
  .edgtf-user-menu-opener {
      padding: 5px !important;
  }
  
  /* Ajustar dropdown no mobile */
  .edgtf-user-menu-wrapper .second {
      position: fixed !important;
      top: 60px !important;
      right: 10px !important;
      left: auto !important;
      width: 200px !important;
      max-width: calc(100vw - 20px) !important;
  }
  
  /* Ícone de login mobile */
  .edgtf-login-icon-mobile {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
  }
  
  .edgtf-login-icon-mobile:hover {
      background: rgba(var(--primary-rgb), 0.2);
      transform: scale(1.05);
  }
  
  .edgtf-login-icon-mobile svg {
      width: 20px;
      height: 20px;
  }
}

/* Estilo para itens ativos no menu */
.edgtf-main-menu .edgtf-active-item > a,
.edgtf-main-menu .current-menu-item > a {
  color: var(--primary-color) !important;
}

.edgtf-main-menu .edgtf-active-item > a .item_text,
.edgtf-main-menu .current-menu-item > a .item_text {
  color: var(--primary-color) !important;
  position: relative;
}

.edgtf-main-menu .edgtf-active-item > a .item_text::after,
.edgtf-main-menu .current-menu-item > a .item_text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
      width: 0;
  }
  to {
      width: 100%;
  }
}

/* Estilo para dropdown ativo (More) */
.edgtf-main-menu .current-menu-ancestor > a,
.edgtf-main-menu .current-menu-parent > a {
  color: var(--primary-color) !important;
}

.edgtf-main-menu .current-menu-ancestor > a .item_text,
.edgtf-main-menu .current-menu-parent > a .item_text {
  color: var(--primary-color) !important;
}

/* Menu Mobile - Itens Ativos */
.edgtf-mobile-nav .edgtf-active-item > a,
.edgtf-mobile-nav .current-menu-item > a {
  color: var(--primary-color) !important;
  font-weight: 700;
  position: relative;
  padding-left: 10px;
}

.edgtf-mobile-nav .edgtf-active-item > a span,
.edgtf-mobile-nav .current-menu-item > a span {
  color: var(--primary-color) !important;
}

.edgtf-mobile-nav .edgtf-active-item > a::before,
.edgtf-mobile-nav .current-menu-item > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 2px;
}

.edgtf-mobile-nav .current-menu-ancestor > a,
.edgtf-mobile-nav .current-menu-parent > a {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.edgtf-mobile-nav .current-menu-ancestor > a span,
.edgtf-mobile-nav .current-menu-parent > a span {
  color: var(--primary-color) !important;
}

/* Estilo para o menu mobile lateral */
.edgtf-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: #111011;
  z-index: 9999 !important;
  overflow-y: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
}

.edgtf-side-menu.ps--active-y {
  opacity: 1 !important;
  transform: translateX(0) !important;
  visibility: visible !important;
}

.edgtf-side-area-inner {
  padding: 60px 30px 40px 30px;
}

/* Mobile Nav Styles */
.edgtf-mobile-nav {
  width: 100%;
}

.edgtf-mobile-nav .edgtf-grid {
  width: 100%;
}

.edgtf-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.edgtf-mobile-nav li {
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.edgtf-mobile-nav li a {
  display: block;
  padding: 16px 0;
  color: #c0c0c0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: left;
}

.edgtf-mobile-nav li a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.edgtf-mobile-nav li a span {
  display: inline-block;
}

/* Mobile Arrow */
.mobile_arrow {
  position: absolute;
  right: 0;
  top: 12px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mobile_arrow i {
  color: #c0c0c0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.mobile_arrow:hover i {
  color: var(--primary-color);
}

.mobile_arrow .fa-angle-down {
  display: none;
}

.mobile_arrow.active .fa-angle-right {
  display: none;
}

.mobile_arrow.active .fa-angle-down {
  display: inline;
}

/* Sub Menu */
.edgtf-mobile-nav .sub_menu {
  display: none;
  padding-left: 20px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.02);
}

.edgtf-mobile-nav .sub_menu.open {
  display: block;
}

.edgtf-mobile-nav .sub_menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.edgtf-mobile-nav .sub_menu li:last-child {
  border-bottom: none;
}

.edgtf-mobile-nav .sub_menu li a {
  padding: 12px 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.edgtf-mobile-nav .sub_menu li a:hover {
  padding-left: 10px;
}

/* Mobile No Link */
.edgtf-mobile-no-link {
  cursor: pointer;
}

.edgtf-close-side-menu {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  cursor: pointer !important;
  z-index: 10000;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

.edgtf-close-side-menu:hover {
  background: rgba(var(--primary-rgb), 0.2);
  border-color: rgba(var(--primary-rgb), 0.5);
  transform: rotate(90deg);
}

.edgtf-close-side-menu svg {
  width: 22px;
  height: 22px;
  display: block !important;
  overflow: visible;
  color: #ffffff;
  stroke: #ffffff;
  pointer-events: none !important;
  margin: auto;
  flex-shrink: 0;
}

.edgtf-close-side-menu svg path {
  stroke: #ffffff !important;
  stroke-width: 2.5 !important;
  pointer-events: none !important;
}

.edgtf-close-side-menu .edgtf-side-area-close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}

.edgtf-close-side-menu:hover svg {
  color: #ffffff;
  stroke: #ffffff;
}

.edgtf-close-side-menu:hover svg path {
  stroke: #ffffff !important;
}

.edgtf-close-side-menu * {
  pointer-events: none !important;
}

.edgtf-side-area-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding: 0 30px;
}

/* Scrollbar personalizada para o menu */
.ps__scrollbar-y-rail {
  width: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.ps__scrollbar-y {
  background: rgba(var(--primary-rgb), 0.5);
  width: 5px;
}

/* Hover nos links do menu */
.edgtf-side-menu a:hover {
  color: var(--primary-color) !important;
}

/* Estilo para dropdown do menu de navegação */
.menu-item-has-children,
.has_sub {
  position: relative;
}

.menu-item-has-children .second {
  position: absolute;
  top: 100%;
  min-width: 200px;
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 4px;
  padding: 10px 0;
  margin-top: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.menu-item-has-children .second.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item-has-children .second ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item-has-children .second li {
  margin: 0;
  padding: 0;
}

.menu-item-has-children .second a {
  display: block;
  padding: 10px 20px;
  color: #c0c0c0 !important;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.menu-item-has-children .second a:hover {
  color: var(--primary-color) !important;
  background: rgba(var(--primary-rgb), 0.1);
}

/* Hover nos links do dropdown do usuário */
.edgtf-user-menu-wrapper .second a:hover {
  color: var(--primary-color) !important;
  background: rgba(var(--primary-rgb), 0.1);
}

/* Backdrop do menu mobile - DESATIVADO */
.edgtf-side-menu-backdrop {
  display: none !important;
}

/* ===================================
 PURCHASES MODAL STYLES
 =================================== */

.purchases-modal-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
}

.purchases-modal-content.active {
  display: block;
}

.purchases-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.purchases-modal-container {
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      transform: translateY(30px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.purchases-modal-header {
  padding: 30px;
  border-bottom: 1px solid #252525;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0) 100%);
}

.purchases-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.purchases-header-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.purchases-icon-main {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.purchases-header-text {
  flex: 1;
}

.purchases-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.purchases-subtitle {
  font-size: 14px;
  color: #c0c0c0;
  margin: 0;
}

.purchases-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.purchases-close-btn:hover {
  background: rgba(var(--primary-rgb), 0.2);
  border-color: rgba(var(--primary-rgb), 0.5);
  transform: rotate(90deg);
}

.purchases-results-wrapper {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.purchases-results-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.purchase-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.purchase-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateX(4px);
}

.purchase-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.purchase-item-info {
  flex: 1;
}

.purchase-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.purchase-item-id {
  font-size: 12px;
  color: #808080;
  font-family: 'Courier New', monospace;
}

.purchase-item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
}

.purchase-item-details {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.purchase-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #808080;
}

.purchase-detail-value {
  font-size: 14px;
  color: #c0c0c0;
  font-weight: 500;
}

.purchase-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.purchase-status.completed {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}

.purchase-status.pending {
  background: rgba(255, 159, 67, 0.15);
  color: #ff9f43;
}

.purchase-status.refunded {
  background: rgba(255, 71, 87, 0.15);
  color: #ff4757;
}

.purchases-empty {
  text-align: center;
  padding: 60px 20px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .purchases-modal-backdrop {
      padding: 10px;
  }
  
  .purchases-modal-container {
      max-height: 95vh;
  }
  
  .purchases-modal-header {
      padding: 20px;
  }
  
  .purchases-header-info {
      gap: 12px;
  }
  
  .purchases-icon-main {
      width: 36px;
      height: 36px;
  }
  
  .purchases-title {
      font-size: 22px;
  }
  
  .purchases-results-wrapper {
      padding: 20px;
  }
  
  .purchase-item {
      padding: 16px;
  }
  
  .purchase-item-header {
      flex-direction: column;
      gap: 12px;
  }
  
  .purchase-item-price {
      text-align: left;
  }
  
  .purchase-item-details {
      flex-direction: column;
      gap: 12px;
  }
}
/* Estilos para o Popup de Gift - Mantendo o padrão da página */
.gift-form-popup.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.gift-form-popup .popup-scroll-cont {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 15%)!important;
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.gift-form-popup .popup-content {
  background: rgb(17, 16, 17);
  border: 1px solid rgb(51, 49, 51);
  border-radius: 15px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease-out;
}

.gift-form-popup .popup-content h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-align: center;
}

.gift-form-popup .popup-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto 25px;
  border-radius: 2px;
}

.gift-form-popup .popup-content input[type="text"],
.gift-form-popup .popup-content input.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  font-family: inherit;
}

.gift-form-popup .popup-content input[type="text"]:focus,
.gift-form-popup .popup-content input.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.gift-form-popup .popup-content input::placeholder {
  color: #9ca3af;
}

.gift-form-popup .popup-content .actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.gift-form-popup .popup-content .actions button[type="submit"],
.gift-form-popup .popup-content .actions .btn-primary {
  flex: 1;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.gift-form-popup .popup-content .actions button[type="submit"]:hover,
.gift-form-popup .popup-content .actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.gift-form-popup .popup-content .actions button[type="submit"]:active,
.gift-form-popup .popup-content .actions .btn-primary:active {
  transform: translateY(0);
}

.gift-form-popup .popup-content .actions.updating button {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.gift-form-popup .popup-content .actions.updating button::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.gift-form-popup .popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #9ca3af;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-form-popup .popup-close::before {
  content: '×';
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.gift-form-popup .popup-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Responsivo */
@media (max-width: 640px) {
  .gift-form-popup .popup-content {
    padding: 30px 25px;
  }
  
  .gift-form-popup .popup-content h2 {
    font-size: 22px;
  }
}
/* Remove margens do main quando estiver em popup */
.popup .store-product-options {
  margin: 0 !important;
  padding: 0 !important;
}

/* Container principal */
.popup .edgtf-login-form {
  margin: 0 !important;
  padding: 32px !important;
  background: transparent !important;
}

.popup .edgtf-login-form-inner {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(var(--primary-rgb), 0.5) !important;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Actions Container */
.popup .actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

/* Submit Button */
.popup .edgtf-btn-submit {
  width: 100%;
  margin-bottom: 0;
}

/* Cancel Link */
.popup .edgtf-cancel-link {
  display: block;
  text-align: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  margin-top: 16px;
  transition: color 0.2s;
}

.popup .edgtf-cancel-link:hover {
  color: var(--primary-color) !important;
}

/* Secure Notice */
.popup .edgtf-secure-notice {
  text-align: center;
  color: #9ca3af;
  font-size: 12px;
  margin: 16px 0 0 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.discord-info-box {
  transition: all 0.3s ease;
}

.discord-info-box:hover {
  background: rgba(var(--primary-rgb), 0.15) !important;
}

#remember-discord-container label:hover {
  color: #fff !important;
}

#cached-discord-info {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo para mobile */
@media (max-width: 640px) {
  .popup .edgtf-login-form {
    padding: 24px 20px !important;
  }
  
  .popup-content {
    max-width: 95% !important;
    margin: 10px !important;
  }
  
  .login-title {
    font-size: 18px !important;
  }
}

/* Scroll personalizado */
.popup .edgtf-login-form::-webkit-scrollbar {
  width: 6px;
}

.popup .edgtf-login-form::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.popup .edgtf-login-form::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.popup .edgtf-login-form::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Connection Status Dropdown */
.connection-status-menu-item {
  pointer-events: none !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  margin-bottom: 8px !important;
  padding: 0 !important;
}

.connection-status-dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
}

.connection-status-dropdown .connection-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  pointer-events: auto;
}

.connection-status-dropdown .status-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.connection-status-dropdown .status-badge.clickable:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Modal de Desconexão Discord (baseado no Clear Cart Modal) */
.disconnect-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000001;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.disconnect-modal.show {
  opacity: 1;
}

.disconnect-modal-content {
  background: linear-gradient(135deg, rgb(24 24 24 / 98%) 0%, rgb(4 4 4 / 98%) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.disconnect-modal.show .disconnect-modal-content {
  transform: scale(1);
}

.disconnect-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disconnect-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #5865f2;
}

.disconnect-modal-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.disconnect-modal-message {
  padding: 24px;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
}

.disconnect-modal-actions {
  display: flex;
  gap: 12px;
  padding: 20px 24px 24px;
}

.disconnect-modal-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  outline: none;
}

.disconnect-modal-btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.disconnect-modal-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.disconnect-modal-btn-confirm {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: white;
  border: 1px solid #6a76f5;
}

.disconnect-modal-btn-confirm:hover {
  background: linear-gradient(135deg, #4752c4 0%, #3c44a8 100%);
  transform: translateY(-1px);
}

.disconnect-modal-btn-confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.disconnect-modal-btn-confirm.loading {
  position: relative;
  color: transparent !important;
}

.disconnect-modal-btn-confirm.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: disconnectSpin 0.6s linear infinite;
}

@keyframes disconnectSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ================================================
   CUSTOM SCROLLBAR - SCROLLBAR VERTICAL
   ================================================ */

/* WebKit Browsers (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111011;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  border: 2px solid #111011;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover, var(--primary-color));
  border: 2px solid #111011;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #111011;
}

/* Estilização adicional para melhor visual */
::-webkit-scrollbar-thumb:active {
  background: var(--primary-hover, var(--primary-color));
}