/* Things We Need Page - Complete Modern Redesign */
.things-need-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.donation-info-card {
    background: linear-gradient(135deg, rgba(66, 42, 20, 0.05) 0%, rgba(66, 42, 20, 0.02) 100%);
    border: 2px solid rgba(66, 42, 20, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-weight: 700;
}

.donation-steps {
    margin: 0 0 25px 0;
    padding-left: 25px;
    color: #555;
    line-height: 1.8;
}

.donation-steps li {
    margin-bottom: 15px;
    font-size: 16px;
}

.donation-steps strong {
    color: var(--primary-color);
    font-weight: 600;
}

.delivery-address {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.delivery-address i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.delivery-address strong {
    color: var(--primary-color);
    margin-right: 5px;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(66, 42, 20, 0.1);
    border: 1px solid rgba(66, 42, 20, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(66, 42, 20, 0.2);
    border-color: #422A14;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition);
}

.product-card-modern:hover .product-image-modern {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 42, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.view-product {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-info {
    padding: 25px;
}

.product-title-modern {
    font-size: 18px;
    font-weight: 600;
    color: #422A14;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    transition: var(--transition);
}

.product-card-modern:hover .product-title-modern {
    color: var(--primary-light);
}

#things_we_need .section-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#things_we_need > .layout-padding > .things_we_need > div:first-child {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(66, 42, 20, 0.08);
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

#things_we_need > .layout-padding > .things_we_need > div:first-child p {
    margin: 10px 0;
}

.limited-holder{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  
  .le-box{
    width: 100%;
    padding: 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(66, 42, 20, 0.1);
    border: 1px solid rgba(66, 42, 20, 0.1);
  }
  
  .le-box:hover {
    background-color: #fff;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(66, 42, 20, 0.18);
    border-color: #422A14;
    z-index: 1;
    position: relative;
  }
  .le-img{
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 0;
    background: #f9f9f9;
  }
  
  .le-box:hover .le-img {
    box-shadow: none;
  }
  
  .le-box:hover .product-pg-img {
    transform: translate(-50%, 0%) scale(1.05);
  }
  .le-box a{
    color: inherit;
    text-decoration: none;
  }
  .le-box .le-title{
    text-transform: none;
    font-weight: 600;
    font-size: 16px;
    margin: 0px;
    color: #422A14;
    font-family: inherit;
    margin-top: 0;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    line-height: 1.5;
  }
  
  .le-box:hover .le-title {
    color: #5a3a1f;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    .limited-holder {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .limited-holder {
        grid-template-columns: 1fr;
        gap: 20px;
    }
  }
  .product-pg-img{
    width: auto;
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translate(-50%,0%);
    z-index: 2;
  }
  .variant-pg-img{
    height: 28px;
    border-radius: 50px;
    width: 28px;
  }
  .le-variant{
    display: flex;
    overflow: hidden;
    margin-top: 5px;
  }
  .variant-img-btn{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    margin-right: 12px;
    cursor: pointer;
  }
  .variant-img-num{
    line-height: 35px;
    text-align: center;
    cursor: auto;
  }
  .variant-img-btn.active-variant-btn{
    border: 1px solid #333;
  }
  .press-box{
    width: calc((100%/3) - 10px);
    
  }
  .product-holder{
    display: flex;
    padding: 20px 0px;
    margin-bottom: 80px;
  }
  .product-container{
    margin-top: 0px;
  }