/* =================================================================
   PREMIUM PRODUCT SHOWCASE REDESIGN
   ================================================================= */

/* Section Background Adjustment for Glassmorphism Context */
.products-section {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Premium Typography Enhancements */
/*.section-title h2 span {
    background: linear-gradient(135deg, #2a5a9e 0%, #4284d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
} */

/*.section-title p {
    font-size: 1.1rem;
    color: #5a6b7c;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
} */

/* Premium Product Filter Tabs */
.product-filters .filter-tabs {
    background: rgba(255, 255, 255, 0.5);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.filter-btn:hover {
    color: #4284d6;
    background: rgba(66, 132, 214, 0.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(66, 132, 214, 0.25);
    transform: translateY(-1px);
}

/* Premium Card Glassmorphism Redesign */
.advanced-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.advanced-products-grid .product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advanced-products-grid .product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(66, 132, 214, 0.15), 0 0 0 1px rgba(66, 132, 214, 0.1);
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
}

/* Image Premium Treatment */
.product-card .product-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin: 6px 6px 0 6px;
    /* Subtle inset */
}

.product-card .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Badge Refinement */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #192324;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
}

/* Content Area Refinement */
.product-card .product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #192324;
    line-height: 1.3;
}

.product-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Specs Refinement */
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-item {
    background: rgba(66, 132, 214, 0.06);
    color: #4284d6;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card:hover .spec-item {
    background: rgba(66, 132, 214, 0.12);
    color: #2a5a9e;
}

/* Enhanced 'View Specs' Button */
.spec-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #4284d6;
    border: 1px solid rgba(66, 132, 214, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.spec-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #4284d6 0%, #2a5a9e 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.product-card:hover .spec-btn {
    border-color: transparent;
    color: white;
}

.product-card:hover .spec-btn::before {
    width: 100%;
}

/* -----------------------------------------------------------------
   Product Features Highlight - Premium Redesign
   ----------------------------------------------------------------- */
.product-features-highlight {
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-features-highlight .feature-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-features-highlight .feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2a5a9e 0%, #4284d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(66, 132, 214, 0.2));
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #192324;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Production Capabilities Redesign - Similar Polish */
.production-capabilities {
    margin-top: 60px;
}

.production-capabilities .capability-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.production-capabilities .capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(66, 132, 214, 0.1);
}

.production-capabilities .capability-icon {
    width: 60px;
    height: 60px;
    background: rgba(66, 132, 214, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4284d6;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.production-capabilities .capability-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #192324;
}

.production-capabilities .capability-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* OEKO-TEX Certification Customization */
#oeko-tex-card .how-we-work-content {
    background: linear-gradient(135deg, #a4cf5f 0%, #7db928 100%) !important;
}

#oeko-tex-card .how-we-work-content h3,
#oeko-tex-card .how-we-work-content p {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* GRS Certification Customization */
#grs-card .how-we-work-content {
    background: linear-gradient(135deg, #00b5ad 0%, #008294 100%) !important;
}

#grs-card .how-we-work-content h3,
#grs-card .how-we-work-content p {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Sedex Certification Customization */
#sedex-card .how-we-work-content {
    background: linear-gradient(135deg, #e9769f 0%, #ca5c83 100%) !important;
}

#sedex-card .how-we-work-content h3,
#sedex-card .how-we-work-content p {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ISO Certification Customization */
#iso-card .how-we-work-content {
    background: linear-gradient(135deg, #005eb8 0%, #003f7a 100%) !important;
}

#iso-card .how-we-work-content h3,
#iso-card .how-we-work-content p {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}