
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f8f8;
  color: var(--baseblack);
}

.product-showcase-page {
    
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 24px;
  padding: 0 0 31px 0;
  background-color: #f9f8f8;
}

/* Product Grid Section */
.product-grid-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  z-index: 1;
  margin-top:64px;
}

.tabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 0 0 0;
  width: 100%;
  background-color: white;
}

.tabs-list {
  display: flex;
  width: 562px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #ff3131;
  background-color: transparent;
  height: auto;
  padding: 0;
}

.tab-trigger {
      display: flex;
    width: 155px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 16px;
    background-color: white;
    border-radius: 15px 15px 0 0;
    border: 1px solid #ff3131;
    border-bottom: 0px solid #ff3131;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--baseblack);
    font-size: 14px;
    cursor: pointer;
    text-wrap: nowrap;
}

.tab-trigger.active {
  border-bottom: none;
  background-color: var(--orange);
  color:white;
  
}

.tab-trigger.active:hover{
    background-color: var(--orange);
}

.tab-trigger:hover {
  background-color: #f8f8f8;
}

.tab-content {
  width: 100%;
}

.tab-panel {
  display: none;
  padding: 20px;
  text-align: center;
  color: var(--baseblack);
}

.tab-panel.active {
  display: block;
}

/* Level Navigation */
.level-nav {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
}

.level-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  border-radius: 48px;
  border: 0.5px solid rgba(44, 37, 36, 0.5);
  background-color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--baseblack);
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.level-btn.active {
  background: linear-gradient(0deg, rgba(255, 96, 68, 0.2) 0%, rgba(255, 96, 68, 0.2) 100%), 
              linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.level-btn:hover {
  background-color: #f8f8f8;
}

/* Category Section */
.category-section {
  display: flex;
  flex-wrap:wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 0 80px;
  width: 100%;
  background-color: var(--basewhite);
  /*overflow-y: auto;*/
}

/*.products-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
/*  gap: 22px;*/
/*  width: 100%;*/
/*  max-width: 1400px;*/
/*}*/

/* Product Card */
.products-grid{
    position:relative;
    transform:scale(1);
  transition: transform .2s ease;
  cursor:pointer;
}

.products-grid:hover{
    transform:scale(1.02);
}

.products-grid:hover .product-image{
    transform:scale(1.1);
}


.product-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
  background-color: var(--basewhite);
  border-radius: 16px;
  border: 0.5px solid rgba(0, 0, 0, 0.3);
  min-width: 350px;
  max-width:390px;
  
}

.product-card .secondary-button{
    width:100%;
}




.product-image-container {
  display: flex;
  flex-direction: column;
  height: 257px;
  align-items: center;
  background-color: #c7c7c7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 9px;
  justify-content: center;
  position:relative;
}

.combo3x .comboTag{
    background: #35d2d9;
}

.combo2x .comboTag{
    background: #35d960;
}


.comboTag{
    position: absolute;
    left: 89%;
    bottom: 92.5%;
    padding: 7px 12px;
    background: #35d2d9;
    color: white;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter';
    border-radius: 0 12px;
    /* border: 1px solid #ff3232; */
    z-index: 1;
}

.product-image {
  width: 100%;
  height: 309px;
  object-fit: cover;
  transform:scale(1);
  transition: transform .3s ease;
}

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 12px;
  width: 100%;
  margin-bottom: 9px;
}

.product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.product-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--baseblack);
  font-size: 18px;
  line-height: normal;
  white-space: nowrap;
}

.product-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--baseblack);
  font-size: 12px;
  line-height: normal;
  white-space: nowrap;
}

.product-rating {
  display: flex;
  width: 98px;
  align-items: center;
  gap: 2px;
}

.star {
  width: 19px;
  height: 19px;
}

.product-combo-visibility{
    visibility: hidden;
}

.product-combo {
    position: absolute;
    left: 12px;
    top: 12px;
    width: fit-content;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--baseblack);
    font-size: 12px;
    line-height: normal;
    white-space: nowrap;
    background: #ff3232;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 20px;
    padding: 4px 8px;
    animation: glowUP 1s linear infinite;
    z-index: 1;
}

@keyframes glowUP{
    0%{
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
    }
    50%{
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
    }
    100%{
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

.product-combo span{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.product-actions {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  flex: 1;
  background-color: var(--secondaryorange);
  color: var(--basewhite);
}

.btn-primary:hover {
  background-color: rgba(255, 50, 50, 0.9);
}

.btn-secondary {
  width: 151px;
  background-color: var(--basewhite);
  color: var(--secondaryblue);
  border: 1px solid #004e9b;
}

.btn-secondary:hover {
  background-color: #f8f8f8;
}

.cart-icon {
  width: 19px;
  height: 18px;
}




/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .category-section {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .tabs-list {
    width: 100%;
    max-width: 500px;
  }
  
  .tab-trigger {
    width: auto;
    font-size:12px;
    flex: 1;
    /*min-width: 120px;*/
    padding: 4px 12px;
  }
  .level-btn{
      font-size:12px;
      padding: 4px 12px;
  }
  .category-section {
    padding: 0 20px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .level-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-secondary {
    width: 100%;
  }
}