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

:root {
    --primary-color: #0f766e;
    --secondary-color: #2563eb;
    --accent-color: #14b8a6;
    --text-color: #102a43;
    --text-light: #52606d;
    --bg-light: #f4f8f7;
    --border-color: #d9e5e2;
    --white: #ffffff;
    --section-padding-y: 64px;
    --section-heading-gap: 32px;
    --content-max-prose: 42rem;
    --radius-card: 18px;
    --radius-image: 14px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
}

.nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.bg-light {
    background: var(--bg-light);
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--text-color);
}

.section p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.section li {
    margin-bottom: 10px;
}

.section hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 40px 0;
}

/* Timeline */
.timeline {
    margin: 30px 0;
}

.timeline-item {
    padding: 15px;
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-card ul {
    list-style: none;
    margin-left: 0;
}

.product-card li {
    padding-left: 20px;
    position: relative;
}

.product-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Advantages */
.advantages {
    margin: 30px 0;
}

.advantage-item {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.advantage-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.spec-table th,
.spec-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.spec-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-color);
}

.spec-table tbody tr:hover {
    background: var(--bg-light);
}

.note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Contact */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 12px;
    padding-left: 25px;
}

.commitment-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.commitment-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.commitment-box ul {
    list-style: none;
}

.commitment-box li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.commitment-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Carousel Section */
.carousel-section {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: fadeEffect 1.5s;
}

/* Background images will be set inline, keeping fallback colors */
.carousel-slide:first-child {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.carousel-slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.carousel-slide.active {
    display: block;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Special styling for different slides */
.carousel-slide-dark .carousel-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-slide-bright .carousel-overlay {
    background: rgba(99, 102, 241, 0.3);
}

.carousel-content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.content-box-inner h2 {
    color: var(--text-color);
    text-shadow: none;
}

.content-box-inner p {
    color: var(--text-light);
    text-shadow: none;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.carousel-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.6);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

@keyframes fadeEffect {
    from {opacity: 0.7}
    to {opacity: 1}
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.why-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Product Preview Section */
.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-preview-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.product-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.preview-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.product-preview-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-preview-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.learn-more:hover {
    color: var(--secondary-color);
}

/* Features Large Section */
.features-large-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-large-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.feature-large-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-large-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    right: 20px;
}

.feature-large-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #102a43;
    color: var(--white);
    padding: 36px 20px;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 6px;
}

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

/* Additional Styles */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.link-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 40px 0;
    gap: 15px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 20px;
}

.process-arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.material-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.size-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.size-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.size-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 20px;
}

/* Production Detail Styles */
.intro-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.detailed-process {
    margin: 50px 0;
}

.process-detail-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-detail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-detail-card h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 24px;
}

.process-detail-card > p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 16px;
}

.detail-list {
    margin: 20px 0;
    padding-left: 25px;
}

.detail-list li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.8;
}

.process-benefit {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-color);
}

.production-stats {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: white;
}

.production-stats h3 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

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

.advantage-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage-box h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.advantage-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Product Detail Section Styles */
.section-intro {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.product-detail-section {
    padding: 60px 20px;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-detail-wrapper.reverse {
    direction: rtl;
}

.product-detail-wrapper.reverse > * {
    direction: ltr;
}

.product-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
}

.product-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.product-icon-large {
    font-size: 120px;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.image-note {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-info-side {
    padding: 20px;
}

.product-info-side h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.product-specs {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.spec-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.spec-row strong {
    color: var(--text-color);
    font-weight: 600;
}

.spec-row span {
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.product-benefits {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.product-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-benefits p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Product Categories Navigation */
.product-categories-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.category-nav-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.category-nav-item.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.category-nav-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-nav-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.category-nav-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Product Category Sections */
.product-category-section {
    display: none;
    padding: 60px 20px;
}

.product-category-section.active {
    display: block;
}

.category-header-detail {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.category-header-detail h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.category-header-detail p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Sub Products Grid */
.sub-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sub-product-card-detailed {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.sub-product-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sub-product-card-detailed.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.05), var(--white));
}

.sub-product-image-box {
    background: var(--bg-light);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.product-image-placeholder-small {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-image-placeholder-small.halal {
    background: linear-gradient(135deg, #10b981, #059669);
}

.product-image-placeholder-small.hpmc {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.product-image-placeholder-small.enteric {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.product-icon-medium {
    font-size: 60px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-bottom: 10px;
}

.size-badge {
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.sub-product-details {
    padding: 25px;
}

.sub-product-details h3 {
    color: var(--text-color);
    font-size: 22px;
    margin-bottom: 8px;
}

.product-code {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
}

.product-subtitle-special {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.product-specs-compact {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-color);
}

.spec-value {
    color: var(--text-light);
}

.product-features-compact {
    margin: 15px 0;
}

.product-features-compact h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.product-features-compact ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-features-compact li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.product-features-compact li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.featured-tag {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Products Page Layout */
.products-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 30px;
}

.products-main-content {
    min-width: 0;
}

.products-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Search Section */
.search-section {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-btn {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #4f46e5;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Products Display Grid */
.products-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* New Product Category Grid */
.products-category-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.product-category-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.product-category-header {
    padding: 30px;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-icon-large {
    font-size: 64px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.product-category-header h3 {
    flex: 1;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.subcategory-badge {
    background: rgba(255,255,255,0.3);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.product-category-body {
    padding: 30px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.product-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
}

.variants-section {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.variants-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.variant-group {
    margin-bottom: 20px;
}

.variant-group:last-child {
    margin-bottom: 0;
}

.variant-group strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 15px;
}

.variant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.size-tag {
    background: var(--primary-color);
    color: white;
}

.color-tag {
    background: #8b5cf6;
    color: white;
}

.highlight-tag {
    background: #10b981;
    color: white;
    font-weight: 600;
}

.highlight-group {
    background: rgba(99, 102, 241, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.variant-note {
    margin-top: 12px;
    padding: 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.variant-note strong {
    color: var(--primary-color);
}

.product-specs-table {
    margin-top: 25px;
}

.product-specs-table h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.specs-table thead {
    background: var(--primary-color);
    color: white;
}

.specs-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background: var(--bg-light);
}

.product-actions {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.view-details-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.view-details-btn span {
    font-size: 18px;
    transition: transform 0.3s;
}

.view-details-btn:hover span {
    transform: translateX(5px);
}

.product-card-detailed {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.product-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card-image {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.product-card-icon {
    font-size: 64px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.product-size-badge {
    position: absolute;
    bottom: 15px;
    background: rgba(255,255,255,0.3);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.product-card-content {
    padding: 20px;
}

.product-card-content h3 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-code-display {
    color: var(--text-light);
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
}

.product-quick-specs {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
}

.product-quick-specs div {
    margin-bottom: 6px;
    color: var(--text-light);
}

.product-quick-specs div:last-child {
    margin-bottom: 0;
}

.product-quick-specs strong {
    color: var(--text-color);
    margin-right: 8px;
}

.product-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    align-items: center;
}

.attr-item {
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: inline-block;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.category-tag {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.size-tag {
    background: var(--bg-light);
    color: var(--primary-color);
}

.printing-tag {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
}

/* Sidebar Navigation */
.sidebar-nav {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.sidebar-nav h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.sidebar-category {
    margin-bottom: 15px;
}

.sidebar-category-btn {
    width: 100%;
    padding: 12px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-color);
    transition: background 0.3s;
}

.sidebar-category-btn:hover {
    background: rgba(99, 102, 241, 0.1);
}

.sidebar-category-btn span:first-child {
    margin-right: 10px;
    font-size: 18px;
}

.expand-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.sidebar-subcategories {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    margin-top: 8px;
}

.sidebar-subcategories.expanded {
    max-height: 500px;
}

.sidebar-subcategories a {
    display: block;
    padding: 8px 12px 8px 35px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.sidebar-subcategories a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Sidebar Stats */
.sidebar-stats {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-stats h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.stat-item-small {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.stat-item-small:last-child {
    border-bottom: none;
}

.stat-item-small span {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.stat-item-small strong {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.6;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-page-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-display-grid {
        grid-template-columns: 1fr;
    }
    
    .search-section {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .product-category-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .category-icon-large {
        font-size: 48px;
    }
    
    .product-category-header h3 {
        font-size: 22px;
    }
    
    .product-category-body {
        padding: 20px;
    }
    
    .product-features-list {
        grid-template-columns: 1fr;
    }
    
    .variants-section {
        padding: 20px;
    }
    
    .specs-table {
        font-size: 12px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 10px 8px;
    }
}

/* ============================================
   B2B Product Detail Page Refresh
   ============================================ */

.pdp-hero {
    background:
        linear-gradient(120deg, rgba(244, 248, 247, 0.96), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at 82% 18%, rgba(15, 118, 110, 0.14), transparent 30%);
    border-bottom: 1px solid var(--border-color);
    padding: 64px 20px;
}

.pdp-hero-grid {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.pdp-hero-content h2 {
    color: #102a43;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.pdp-hero-content > p:not(.eyebrow) {
    color: #334e68;
    font-size: 20px;
    line-height: 1.65;
    max-width: 760px;
}

.pdp-size-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
}

.pdp-size-chips span {
    background: rgba(15, 118, 110, 0.10);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 999px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    padding: 7px 12px;
}

.pdp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.pdp-hero-gallery .product-gallery {
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 44px rgba(16, 42, 67, 0.08);
    margin: 0;
}

.pdp-content-section {
    background: #ffffff;
}

.pdp-section-grid {
    display: grid;
    gap: 28px 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 36px;
}

.pdp-info-card {
    background: transparent;
    border: none;
    border-left: 3px solid rgba(15, 118, 110, 0.22);
    border-radius: 0;
    box-shadow: none;
    padding: 2px 0 2px 22px;
}

.pdp-wide-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    box-shadow: 0 6px 22px rgba(16, 42, 67, 0.05);
    padding: 28px;
}

.pdp-wide-card.pdp-overview-card {
    background: #fafcfb;
    border-left: 4px solid var(--primary-color);
    padding: 28px 32px;
}

.pdp-info-card h3,
.pdp-wide-card h3 {
    color: #102a43;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.pdp-info-card p,
.pdp-wide-card p {
    color: #52606d;
    line-height: 1.7;
}

.pdp-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pdp-check-list li {
    color: #334e68;
    line-height: 1.6;
    margin-bottom: 11px;
    padding-left: 24px;
    position: relative;
}

.pdp-check-list li::before {
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 4px;
    position: absolute;
    top: 10px;
    width: 7px;
}

.pdp-wide-card {
    margin-bottom: 36px;
}

.pdp-feature-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pdp-feature-pill {
    background: #f4f8f7;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: #334e68;
    font-weight: 700;
    line-height: 1.45;
    padding: 14px;
}

.pdp-spec-header {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.pdp-spec-header p {
    margin: 0;
}

.pdp-spec-table-wrap {
    overflow-x: auto;
}

.pdp-spec-table {
    border-collapse: collapse;
    width: 100%;
}

.pdp-spec-table th,
.pdp-spec-table td {
    border-bottom: 1px solid var(--border-color);
    color: #334e68;
    padding: 14px;
    text-align: left;
    white-space: nowrap;
}

.pdp-spec-table th {
    background: #f4f8f7;
    color: #102a43;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pdp-related-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pdp-related-card {
    background: #f8fbfa;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: inherit;
    display: block;
    padding: 18px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pdp-related-card:hover {
    border-color: rgba(15, 118, 110, 0.4);
    box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08);
    transform: translateY(-2px);
}

.pdp-related-visual {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 14px;
    color: var(--primary-color);
    display: flex;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
    width: 48px;
}

.pdp-related-visual img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.pdp-related-card p {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pdp-related-card h4 {
    color: #102a43;
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
}

.pdp-quote-grid {
    align-items: start;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

.pdp-quote-grid h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.pdp-quote-form {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.16);
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
}

.pdp-quote-form label {
    color: #102a43;
}

.pdp-quote-form .full-width {
    grid-column: 1 / -1;
}

.pdp-quote-form .send-inquiry-btn {
    background: var(--primary-color);
    margin-top: 0;
}

@media (max-width: 1024px) {
    .pdp-hero-grid,
    .pdp-quote-grid {
        grid-template-columns: 1fr;
    }

    .pdp-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pdp-hero {
        padding: 48px 20px;
    }

    .pdp-hero-actions,
    .pdp-spec-header {
        align-items: stretch;
        flex-direction: column;
    }

    .pdp-section-grid,
    .pdp-feature-grid,
    .pdp-related-grid,
    .pdp-quote-form {
        grid-template-columns: 1fr;
    }

    .pdp-info-card,
    .pdp-wide-card,
    .pdp-quote-form {
        padding: 22px;
    }
}

/* ============================================
   Premium Products Page Redesign
   ============================================ */

.products-hero {
    background:
        linear-gradient(120deg, rgba(244, 248, 247, 0.96), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at 82% 18%, rgba(15, 118, 110, 0.16), transparent 30%);
    border-bottom: 1px solid var(--border-color);
    padding: 56px 20px 48px;
}

.products-hero-content {
    max-width: 980px;
}

.products-hero h1,
.products-hero h2 {
    color: #102a43;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.products-hero p:not(.eyebrow) {
    color: #334e68;
    font-size: 21px;
    line-height: 1.6;
    max-width: 780px;
}

.products-trust-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.products-trust-item {
    align-content: start;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
    display: grid;
    min-height: 122px;
    padding: 20px;
}

.products-trust-item strong {
    color: var(--primary-color);
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.products-trust-item span {
    color: #52606d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-solutions-section {
    background: #ffffff;
}

.product-overview-stack {
    display: grid;
    gap: 34px;
}

.product-solution-block {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(16, 42, 67, 0.08);
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    overflow: hidden;
}

.product-solution-block.reverse {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.product-solution-block.reverse .product-visual-panel {
    order: 2;
}

.product-visual-panel {
    align-items: center;
    background:
        linear-gradient(145deg, rgba(15, 118, 110, 0.12), rgba(37, 99, 235, 0.08)),
        #f4f8f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    padding: 44px;
    position: relative;
}

.product-visual-panel::before,
.product-visual-panel::after {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 999px;
    content: "";
    position: absolute;
}

.product-visual-panel::before {
    height: 210px;
    transform: rotate(-26deg);
    width: 76px;
}

.product-visual-panel::after {
    height: 210px;
    transform: rotate(26deg) translateX(58px);
    width: 76px;
}

.capsule-visual {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.12);
    color: var(--primary-color);
    display: flex;
    font-size: 34px;
    font-weight: 800;
    height: 112px;
    justify-content: center;
    letter-spacing: 0.08em;
    position: relative;
    width: 112px;
    z-index: 1;
}

.product-solution-image {
    aspect-ratio: 4 / 3;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(16, 42, 67, 0.10);
    overflow: hidden;
    position: relative;
    width: min(100%, 340px);
    z-index: 1;
}

.product-solution-image img {
    background: #ffffff;
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 18px;
    width: 100%;
}

.visual-caption {
    color: #334e68;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
    margin-top: 22px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
}

.product-solution-content {
    padding: 44px;
}

.product-solution-content h3 {
    color: #102a43;
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 16px;
}

.product-solution-content > p {
    color: #52606d;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.solution-detail-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 26px;
}

.solution-detail-grid h4 {
    color: #102a43;
    font-size: 15px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.solution-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-check-list li {
    color: #334e68;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.solution-check-list li::before {
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 4px;
    position: absolute;
    top: 10px;
    width: 7px;
}

.solution-size-row {
    background: #f4f8f7;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
}

.solution-size-row strong {
    color: #102a43;
    display: block;
    margin-bottom: 12px;
}

.solution-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.solution-actions .view-details-btn,
.solution-actions .quote-link {
    min-width: 150px;
}

.customization-section {
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.customization-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customization-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: #102a43;
    font-weight: 800;
    padding: 22px;
}

.customization-card::before {
    background: var(--primary-color);
    border-radius: 999px;
    content: "";
    display: block;
    height: 4px;
    margin-bottom: 18px;
    width: 46px;
}

.customization-showcase {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
    margin: 28px 0 0;
    overflow: hidden;
}

.customization-showcase img {
    aspect-ratio: 21 / 9;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.customization-showcase figcaption {
    color: #52606d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 14px 18px 16px;
    text-transform: uppercase;
}

.catalog-search-section {
    background: #ffffff;
    padding-top: 56px;
}

.catalog-search-panel {
    align-items: end;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    margin-bottom: 24px;
    padding: 24px;
}

.catalog-search-panel h2 {
    color: #102a43;
    font-size: 26px;
    margin-bottom: 8px;
}

.catalog-search-panel p:last-child {
    color: #52606d;
    line-height: 1.65;
    margin: 0;
}

.catalog-search-panel .search-section {
    margin: 0;
}

.secondary-tabs {
    margin-bottom: 24px;
}

.compact-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-catalog-grid .catalog-product-card {
    box-shadow: 0 10px 24px rgba(16, 42, 67, 0.06);
}

.compact-catalog-grid .catalog-product-header {
    padding: 20px;
}

.compact-catalog-grid .catalog-product-body {
    padding: 20px;
}

@media (max-width: 1100px) {
    .product-solution-block,
    .product-solution-block.reverse,
    .catalog-search-panel {
        grid-template-columns: 1fr;
    }

    .product-solution-block.reverse .product-visual-panel {
        order: 0;
    }

    .compact-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 58px 20px 46px;
    }

    .products-trust-row,
    .solution-detail-grid,
    .customization-grid,
    .compact-catalog-grid {
        grid-template-columns: 1fr;
    }

    .product-visual-panel {
        min-height: 250px;
    }

    .product-solution-content {
        padding: 28px;
    }

    .product-solution-content h3 {
        font-size: 28px;
    }

    .solution-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .solution-actions .view-details-btn,
    .solution-actions .quote-link {
        width: 100%;
    }

    .customization-showcase img {
        aspect-ratio: 16 / 10;
    }
}

/* ============================================
   Products Catalog Refresh
   ============================================ */

.products-intro-card {
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8f7 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(16, 42, 67, 0.08);
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 42px;
    padding: 34px;
}

.products-intro-card h2 {
    color: #102a43;
    line-height: 1.2;
    margin-bottom: 12px;
}

.products-intro-card p:last-child {
    color: #52606d;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    max-width: 820px;
}

.products-category-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.catalog-product-card:hover {
    border-color: rgba(15, 118, 110, 0.42);
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.10);
    transform: translateY(-3px);
}

.catalog-product-image {
    aspect-ratio: 16 / 10;
    background: #f4f8f7;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.catalog-product-image img {
    background: #ffffff;
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 14px;
    width: 100%;
}

.catalog-product-header {
    align-items: center;
    background: #f4f8f7;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 16px;
    padding: 24px;
}

.catalog-product-icon {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 16px;
    color: var(--primary-color);
    display: flex;
    flex-shrink: 0;
    font-size: 30px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.catalog-category {
    color: var(--primary-color);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.catalog-product-header h3 {
    color: #102a43;
    font-size: 22px;
    line-height: 1.25;
    margin: 0;
}

.catalog-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.catalog-product-body .product-description {
    color: #52606d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.catalog-feature-list {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.catalog-feature {
    background: #f4f8f7;
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    color: #334e68;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
}

.catalog-meta {
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    padding-top: 18px;
}

.catalog-meta strong {
    color: #102a43;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.catalog-size-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-size-tags span {
    background: rgba(15, 118, 110, 0.10);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 999px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    padding: 7px 12px;
}

.catalog-product-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.catalog-product-actions .view-details-btn,
.quote-link {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    text-decoration: none;
}

.catalog-product-actions .view-details-btn {
    background: var(--primary-color);
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.18);
    color: #ffffff;
}

.catalog-product-actions .view-details-btn:hover {
    background: #115e59;
}

.quote-link {
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.35);
    color: var(--primary-color);
}

.quote-link:hover {
    background: rgba(15, 118, 110, 0.08);
}

.products-sidebar .sidebar-nav,
.products-sidebar .sidebar-stats {
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
}

.products-sidebar h3,
.products-sidebar h4 {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .products-category-grid {
        grid-template-columns: 1fr;
    }

    .products-intro-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .products-intro-card,
    .catalog-product-header,
    .catalog-product-body {
        padding: 22px;
    }

    .catalog-product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-product-actions .view-details-btn,
    .quote-link {
        width: 100%;
    }
}

/* ============================================
   Pharmaceutical B2B Refresh
   ============================================ */

body {
    background: #ffffff;
}

.header {
    border-bottom: 1px solid rgba(15, 118, 110, 0.14);
    box-shadow: 0 1px 8px rgba(16, 42, 67, 0.06);
}

.nav a {
    color: #334e68;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

.hero-small {
    background: linear-gradient(135deg, #0f766e 0%, #155e75 100%);
    padding: 72px 20px;
}

.hero-small h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.hero-small p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.section {
    padding: var(--section-padding-y) 20px;
}

.section-heading {
    max-width: 820px;
    margin-bottom: var(--section-heading-gap);
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.two-column-section h2 {
    color: #102a43;
    font-size: clamp(1.65rem, 2.8vw, 2.125rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-heading p,
.two-column-section p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    max-width: var(--content-max-prose);
}

.eyebrow {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.b2b-hero {
    background:
        linear-gradient(120deg, rgba(244, 248, 247, 0.95) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(224, 247, 244, 0.85) 100%),
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 34%);
    border-bottom: 1px solid var(--border-color);
    padding: 96px 20px;
}

.b2b-hero-grid {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.b2b-hero-content .hero-title {
    color: #102a43;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.04;
    margin-bottom: 22px;
    max-width: 820px;
}

.b2b-hero-content .hero-subtitle {
    color: #334e68;
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 720px;
}

.hero-keyline {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.cta-button,
.cta-button-secondary {
    border-radius: 999px;
    font-weight: 700;
    padding: 14px 28px;
}

.cta-button {
    background: var(--primary-color);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
    color: #ffffff;
}

.cta-button:hover {
    background: #115e59;
    box-shadow: 0 16px 32px rgba(15, 118, 110, 0.22);
}

.cta-button-secondary {
    border: 1px solid rgba(15, 118, 110, 0.35);
    color: var(--primary-color);
}

.cta-button-secondary:hover {
    background: rgba(15, 118, 110, 0.08);
    color: #115e59;
}

.b2b-hero-panel,
.profile-fact-card {
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 22px;
    box-shadow: 0 22px 48px rgba(16, 42, 67, 0.10);
    padding: 34px;
}

.b2b-hero-panel h3,
.profile-fact-card h3 {
    color: #102a43;
    font-size: 24px;
    line-height: 1.35;
    margin: 0 0 22px;
}

.panel-label {
    background: rgba(15, 118, 110, 0.1);
    border-radius: 999px;
    color: var(--primary-color);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 8px 14px;
}

.hero-image-card {
    display: grid;
    gap: 18px;
    padding: 18px;
}

.hero-main-image,
.hero-support-images img,
.manufacturing-image-card {
    background: #f4f8f7;
}

.hero-main-image {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
}

.hero-main-image img,
.hero-support-images img,
.manufacturing-image-card img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-support-images {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-support-images img {
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
}

.trust-list,
.clean-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-list li,
.clean-list li {
    border-top: 1px solid var(--border-color);
    color: #334e68;
    line-height: 1.55;
    padding: 13px 0 13px 28px;
    position: relative;
}

.trust-list li::before,
.clean-list li::before {
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 4px;
    position: absolute;
    top: 21px;
    width: 8px;
}

.stats-section {
    background: #ffffff;
}

.stats-card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(16, 42, 67, 0.06);
    padding: 28px;
}

.stat-card-wide {
    grid-column: span 2;
}

.stat-value {
    color: var(--primary-color);
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
}

.stat-label {
    color: #52606d;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.two-column-section {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.capability-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-grid.four-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-card,
.process-preview-card,
.solution-card,
.timeline-step {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(16, 42, 67, 0.05);
    padding: 26px;
}

.capability-card h3,
.process-preview-card h3,
.solution-card h3,
.timeline-step h3 {
    color: #102a43;
    font-size: 20px;
    margin: 0 0 12px;
}

.capability-card p,
.process-preview-card p,
.solution-card p,
.timeline-step p {
    color: #52606d;
    line-height: 1.7;
    margin: 0;
}

.text-link,
.learn-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(15, 118, 110, 0.35);
    text-underline-offset: 3px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.text-link:hover,
.learn-more:hover {
    color: #115e59;
    text-decoration-color: rgba(17, 94, 89, 0.55);
}

.home-manufacturing-images {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    margin-top: 40px;
}

.manufacturing-image-card {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(16, 42, 67, 0.06);
    margin: 0;
    min-height: 230px;
    overflow: hidden;
    position: relative;
}

.manufacturing-image-card.large {
    min-height: 300px;
}

.manufacturing-image-card figcaption {
    background: linear-gradient(to top, rgba(16, 42, 67, 0.78), rgba(16, 42, 67, 0));
    bottom: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    left: 0;
    letter-spacing: 0.04em;
    padding: 42px 18px 16px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

.process-preview-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
    color: rgba(15, 118, 110, 0.24);
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

.solution-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card {
    color: inherit;
    display: block;
    min-height: 220px;
    text-decoration: none;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.solution-card:hover {
    border-color: rgba(15, 118, 110, 0.45);
    box-shadow: 0 18px 36px rgba(16, 42, 67, 0.10);
    transform: translateY(-4px);
}

.solution-card h3 {
    color: var(--primary-color);
}

.final-cta {
    background: linear-gradient(135deg, #0f766e 0%, #155e75 100%);
    color: #ffffff;
    padding: 64px 20px;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
    color: #ffffff;
}

.final-cta-content {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.final-cta-content h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.25;
    margin-bottom: 12px;
}

.final-cta-content p {
    line-height: 1.7;
    margin: 0;
    max-width: 760px;
    opacity: 0.9;
}

.final-cta .cta-button {
    background: #ffffff;
    color: var(--primary-color);
    flex-shrink: 0;
}

.final-cta .cta-button-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

.final-cta .cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.final-cta .hero-buttons {
    flex-shrink: 0;
}

.final-cta .cta-button:hover {
    background: #e6fffb;
    color: #115e59;
}

.about-intro {
    align-items: start;
}

.about-factory-image,
.about-quality-image {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(16, 42, 67, 0.07);
    margin: 42px 0 0;
    overflow: hidden;
}

.about-quality-image {
    margin-bottom: 34px;
    margin-top: 0;
}

.about-factory-image img,
.about-quality-image img {
    aspect-ratio: 16 / 7;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-factory-image figcaption,
.about-quality-image figcaption {
    color: #52606d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 14px 18px 16px;
    text-transform: uppercase;
}

.process-timeline {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 36px;
}

.timeline-step span {
    color: var(--primary-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.about-philosophy {
    margin-top: 0;
}

.photo-item,
.production-photo,
.contact-photo {
    border: 1px solid var(--border-color);
}

.footer {
    background: #102a43;
    color: #ffffff;
    padding: 36px 20px;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 6px;
}

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

@media (max-width: 1024px) {
    .b2b-hero-grid,
    .two-column-section {
        grid-template-columns: 1fr;
    }

    .stats-card-grid,
    .capability-grid.four-column,
    .solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-preview-grid,
    .process-timeline,
    .home-manufacturing-images {
        grid-template-columns: 1fr;
    }

    .manufacturing-image-card,
    .manufacturing-image-card.large {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .b2b-hero {
        padding: 72px 20px;
    }

    .b2b-hero-content .hero-title {
        font-size: 40px;
    }

    .b2b-hero-content .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
        width: 100%;
    }

    .hero-support-images {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-card-grid,
    .capability-grid,
    .capability-grid.four-column,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .stat-card-wide {
        grid-column: span 1;
    }

    .final-cta-content {
        align-items: stretch;
        flex-direction: column;
    }

    .final-cta-content .cta-button {
        text-align: center;
    }

    .about-factory-image img,
    .about-quality-image img {
        aspect-ratio: 4 / 3;
    }

    .hero-small h2 {
        font-size: 34px;
    }
}

/* Photo Showcase Styles */
.photo-showcase {
    margin: 40px 0;
}

/* ============================================
   Contact Page B2B Refresh
   ============================================ */

.contact-hero {
    background:
        linear-gradient(120deg, rgba(244, 248, 247, 0.96), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at 82% 18%, rgba(15, 118, 110, 0.16), transparent 30%);
    border-bottom: 1px solid var(--border-color);
    padding: 56px 20px 48px;
}

.contact-hero-grid {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.contact-hero h1,
.contact-hero h2 {
    color: #102a43;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 900px;
}

.contact-hero p:not(.eyebrow),
.contact-hero-panel p {
    color: #334e68;
    font-size: 19px;
    line-height: 1.65;
    max-width: 780px;
}

.contact-hero-panel {
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.08);
    padding: 30px;
}

.contact-hero-panel h3 {
    color: #102a43;
    font-size: 24px;
    margin: 0 0 12px;
}

.contact-hero-panel p {
    font-size: 16px;
    margin: 0;
}

.contact-info-section,
.contact-support-section {
    background: #ffffff;
}

.contact-card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card-grid-single {
    grid-template-columns: minmax(0, 720px);
}

.b2b-contact-card,
.inquiry-help-card,
.contact-inquiry-form,
.contact-support-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
}

.b2b-contact-card {
    padding: 30px;
}

.b2b-contact-card h3 {
    color: #102a43;
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 22px;
}

.contact-detail-list {
    display: grid;
    gap: 18px;
    margin: 0;
}

.contact-detail-list div {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.contact-detail-list dt {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.contact-detail-list dd {
    color: #334e68;
    line-height: 1.65;
    margin: 0;
}

.contact-detail-list a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.contact-detail-list a:hover {
    color: #115e59;
    text-decoration: underline;
}

.contact-form-grid {
    align-items: start;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.contact-form-grid h2 {
    color: #102a43;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.25;
    margin-bottom: 12px;
}

.contact-form-grid > div > p:not(.eyebrow) {
    color: #52606d;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: var(--content-max-prose);
}

.inquiry-help-card {
    padding: 26px;
}

.inquiry-help-card h3 {
    color: #102a43;
    font-size: 22px;
    margin: 0 0 18px;
}

.contact-check-list {
    display: grid;
    gap: 11px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-check-list li {
    color: #334e68;
    line-height: 1.55;
    padding-left: 24px;
    position: relative;
}

.contact-check-list li::before {
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 4px;
    position: absolute;
    top: 9px;
    width: 7px;
}

.contact-inquiry-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
}

.contact-inquiry-form .full-width {
    grid-column: 1 / -1;
}

.contact-inquiry-form textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-inquiry-form .send-inquiry-btn {
    background: var(--primary-color);
    margin-top: 0;
}

.contact-inquiry-form .send-inquiry-btn:hover {
    background: #115e59;
}

.contact-support-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-support-card {
    padding: 24px;
}

.contact-support-card h3 {
    color: #102a43;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px;
}

.contact-support-card p {
    color: #52606d;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1100px) {
    .contact-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .contact-hero-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 54px 20px 46px;
    }

    .contact-hero h2 {
        font-size: 38px;
    }

    .contact-hero p:not(.eyebrow) {
        font-size: 17px;
    }

    .b2b-contact-card,
    .contact-hero-panel,
    .contact-inquiry-form,
    .contact-support-card,
    .inquiry-help-card {
        padding: 22px;
    }

    .contact-inquiry-form,
    .contact-support-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   B2B Product Detail Page Styles
   ============================================ */

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

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

.breadcrumb a:hover {
    color: #4f46e5;
}

.breadcrumb span {
    color: var(--text-light);
}

/* PDP Layout */
.product-detail-section {
    padding: 40px 0;
}

.pdp-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.pdp-main-column {
    min-width: 0;
}

.pdp-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Product Gallery */
.product-gallery {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    cursor: zoom-in;
}

.main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.gallery-main:hover .main-image {
    transform: scale(1.05);
}

.image-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-main:hover .image-zoom-hint {
    opacity: 1;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    border-width: 3px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Quick Inquiry Card */
.quick-inquiry-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
    position: sticky;
    top: 100px;
}

.inquiry-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.4;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.form-select,
.form-input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--white);
    color: var(--text-color);
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-select {
    cursor: pointer;
}

.send-inquiry-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 28px;
    transition: background 0.2s, box-shadow 0.2s;
}

.send-inquiry-btn:hover {
    background: #115e59;
    box-shadow: 0 16px 32px rgba(15, 118, 110, 0.22);
    transform: none;
}

.send-inquiry-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 20px;
}

.inquiry-success {
    background: #10b981;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    animation: slideIn 0.3s ease-out;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.inquiry-success p {
    margin: 5px 0;
}

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

/* Contact Supplier Widget */
.contact-supplier-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.contact-supplier-widget h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.supplier-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.supplier-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.supplier-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 32px;
    color: white;
}

.supplier-details {
    flex: 1;
    text-align: left;
}

.supplier-name {
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 4px 0;
    font-size: 15px;
}

.supplier-company {
    color: var(--text-light);
    margin: 0;
    font-size: 13px;
}

.chat-now-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.chat-now-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.response-time {
    color: var(--text-light);
    font-size: 12px;
}

/* Recommended Products */
.recommended-products {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.recommended-products h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.recommended-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recommended-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    background: var(--white);
}

.recommended-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.recommended-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recommended-icon {
    font-size: 32px;
}

.recommended-info {
    flex: 1;
    min-width: 0;
}

.recommended-info h4 {
    font-size: 14px;
    color: var(--text-color);
    margin: 0 0 4px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recommended-category {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Product Tabs */
.product-tabs-container {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.product-tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-light);
}

.tab-button {
    flex: 1;
    padding: 18px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-button:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--white);
}

.product-tabs-content {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

.tab-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

/* Description Content */
.description-section {
    margin-bottom: 30px;
}

.description-section:last-child {
    margin-bottom: 0;
}

.description-section h4 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.description-section p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    line-height: 1.6;
    color: var(--text-color);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.option-item {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 6px;
}

.option-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.option-item span {
    color: var(--text-color);
    font-size: 14px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.spec-table thead {
    background: var(--primary-color);
    color: white;
}

.spec-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.spec-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
}

.spec-table tbody tr:hover {
    background: var(--bg-light);
}

/* Packaging Info */
.packaging-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
}

.info-item ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-color);
    line-height: 1.8;
}

.info-item li {
    margin-bottom: 8px;
}

/* Certifications Grid (Legacy - kept for compatibility) */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* Certifications Badges - New Horizontal Layout */
.certifications-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.cert-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0 1 auto;
    min-width: 150px;
}

.cert-badge-image {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.cert-badge-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
    cursor: pointer;
}

.cert-badge-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

@media (max-width: 768px) {
    .certifications-badges {
        flex-direction: column;
        gap: 30px;
    }
    
    .cert-badge-item {
        width: 100%;
        max-width: 300px;
    }
    
    .cert-badge-image {
        max-width: 100%;
        max-height: 200px;
    }
}

/* Certificate Lightbox */
.cert-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

.cert-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease-in;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cert-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: var(--white);
    padding: 10px;
}

.cert-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.cert-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cert-lightbox-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.cert-lightbox-nav {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cert-nav-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.cert-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cert-nav-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cert-lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .cert-lightbox-img {
        max-height: 70vh;
    }
    
    .cert-lightbox-title {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .cert-lightbox-close {
        top: -35px;
        font-size: 35px;
        width: 35px;
        height: 35px;
    }
    
    .cert-nav-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.cert-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.cert-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.cert-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    min-height: 150px;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.cert-image:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
}

.cert-icon-fallback {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.cert-item strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.cert-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pdp-layout {
        grid-template-columns: 1fr;
    }
    
    .pdp-sidebar {
        position: static;
    }
    
    .quick-inquiry-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        padding: 15px;
    }
    
    .gallery-main {
        aspect-ratio: 4/3;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .product-tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        border-bottom: 1px solid var(--border-color);
        border-left: 3px solid transparent;
    }
    
    .tab-button.active {
        border-bottom-color: var(--border-color);
        border-left-color: var(--primary-color);
    }
    
    .product-tabs-content {
        padding: 20px;
    }
    
    .quick-inquiry-card {
        padding: 20px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.95);
    transition: filter 0.3s;
}

.photo-item:hover img {
    filter: brightness(1);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
    text-align: center;
}

.production-photo,
.contact-photo {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    margin: 20px auto;
}

.photo-caption-center {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-section {
        height: 400px;
    }
    
    .carousel-content h2 {
        font-size: 28px;
    }
    
    .carousel-content p {
        font-size: 16px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 10px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 300px;
    }
    
    .nav {
        gap: 15px;
        font-size: 14px;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .products-grid,
    .contacts-grid,
    .highlights-grid,
    .links-grid,
    .size-guide,
    .why-choose-grid,
    .product-preview-grid,
    .features-large-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .feature-large-number {
        font-size: 48px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .production-photo,
    .contact-photo {
        width: 100%;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number-large {
        margin-bottom: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-detail-card {
        padding: 25px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-wrapper.reverse {
        direction: ltr;
    }
    
    .product-image-placeholder {
        max-width: 100%;
    }
    
    .product-icon-large {
        font-size: 80px;
    }
    
    .spec-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-info-side h2 {
        font-size: 28px;
    }
    
    .product-categories-nav {
        grid-template-columns: 1fr;
    }
    
    .sub-products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header-detail h2 {
        font-size: 28px;
    }
    
    .sub-product-card-detailed {
        margin-bottom: 20px;
    }
    
    .product-image-placeholder-small {
        width: 120px;
        height: 120px;
    }
    
    .product-icon-medium {
        font-size: 50px;
    }
}

/* Final PDP overrides: keep the refreshed quote form ahead of older legacy form rules. */
.pdp-overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f4f8f7 100%);
}

.pdp-overview-card p:last-child {
    color: #334e68;
    font-size: 18px;
    line-height: 1.75;
    max-width: 920px;
}

.pdp-feature-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pdp-display-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pdp-display-card {
    background: #f8fbfa;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
}

.pdp-display-image {
    align-items: center;
    aspect-ratio: 1;
    background: #ffffff;
    display: flex;
    justify-content: center;
    padding: 18px;
}

.pdp-display-image img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.pdp-display-card strong {
    color: #102a43;
    display: block;
    font-size: 14px;
    padding: 14px 16px 16px;
}

.pdp-process-flow {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(9, minmax(96px, 1fr));
}

.pdp-process-step {
    background: #f8fbfa;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    min-height: 118px;
    padding: 16px;
}

.pdp-process-step span {
    color: var(--primary-color);
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.pdp-process-step strong {
    color: #102a43;
    display: block;
    font-size: 14px;
    line-height: 1.35;
}

.pdp-quality-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
}

.pdp-future-image-grid {
    display: grid;
    gap: 16px;
}

.pdp-image-placeholder-card {
    align-items: center;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.92)),
        #f4f8f7;
    border: 1px dashed rgba(15, 118, 110, 0.35);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.pdp-image-placeholder-card span {
    color: #102a43;
    font-weight: 800;
    margin-bottom: 8px;
}

.pdp-image-placeholder-card small {
    color: #52606d;
    line-height: 1.5;
}

.pdp-quality-image-card {
    background: #f4f8f7;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    margin: 0;
    overflow: hidden;
}

.pdp-quality-image-card img {
    aspect-ratio: 16 / 10;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.pdp-quality-image-card figcaption {
    background: #ffffff;
    color: #102a43;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 14px 16px;
    text-transform: uppercase;
}

.pdp-packaging-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
}

.pdp-packaging-card {
    background: #f8fbfa;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
}

.pdp-packaging-card span {
    color: var(--primary-color);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pdp-packaging-card strong {
    color: #102a43;
    display: block;
    line-height: 1.45;
}

.pdp-carton-table {
    margin-top: 8px;
}

.pdp-faq-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pdp-faq-item {
    background: #f8fbfa;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
}

.pdp-faq-item h4 {
    color: #102a43;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.pdp-faq-item p {
    margin: 0;
}

.pdp-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pdp-quote-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    .pdp-process-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .pdp-display-grid,
    .pdp-packaging-grid,
    .pdp-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-quality-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pdp-display-grid,
    .pdp-feature-grid.compact,
    .pdp-faq-list,
    .pdp-packaging-grid,
    .pdp-process-flow,
    .pdp-related-grid {
        grid-template-columns: 1fr;
    }

    .pdp-quote-form {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Specifications Page Refresh
   ============================================ */

.specifications-hero {
    background:
        linear-gradient(120deg, rgba(244, 248, 247, 0.96), rgba(255, 255, 255, 0.94)),
        radial-gradient(circle at 82% 18%, rgba(15, 118, 110, 0.16), transparent 30%);
    border-bottom: 1px solid var(--border-color);
    padding: 56px 20px 48px;
}

.specifications-hero h2 {
    color: #102a43;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 900px;
}

.specifications-hero p:not(.eyebrow) {
    color: #334e68;
    font-size: 20px;
    line-height: 1.6;
    max-width: 760px;
}

.specs-reference-section {
    background: #ffffff;
}

.spec-note-card {
    background: #f4f8f7;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 18px;
    margin-bottom: 24px;
    padding: 20px 22px;
}

.spec-note-card strong {
    color: #102a43;
    display: block;
    margin-bottom: 8px;
}

.spec-note-card span {
    color: #52606d;
    display: block;
    line-height: 1.65;
}

.capsule-size-diagram {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 20px;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
    margin-bottom: 24px;
    padding: 24px;
}

.capsule-size-diagram h3 {
    color: #102a43;
    font-size: 22px;
    margin: 0 0 10px;
}

.capsule-size-diagram p:last-child {
    color: #52606d;
    line-height: 1.65;
    margin: 0;
}

.capsule-size-row {
    align-items: end;
    background: #f4f8f7;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 16px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: 190px;
    padding: 24px 20px 18px;
}

.capsule-size-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: end;
}

.capsule-size-item strong {
    color: #102a43;
    font-size: 14px;
}

.capsule-size-visual {
    background: linear-gradient(90deg, #ffffff 0 48%, #dff4f1 48% 100%);
    border: 2px solid rgba(15, 118, 110, 0.42);
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(16, 42, 67, 0.08);
    display: block;
    width: 34px;
}

.capsule-size-visual.size-00 {
    height: 118px;
}

.capsule-size-visual.size-0 {
    height: 106px;
}

.capsule-size-visual.size-1 {
    height: 94px;
}

.capsule-size-visual.size-2 {
    height: 82px;
}

.capsule-size-visual.size-3 {
    height: 70px;
}

.capsule-size-visual.size-4 {
    height: 58px;
}

.spec-table-scroll {
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(16, 42, 67, 0.07);
    overflow-x: auto;
}

.specs-reference-table {
    box-shadow: none;
    margin: 0;
    min-width: 1120px;
}

.specs-reference-table th {
    background: #f4f8f7;
    color: #102a43;
    font-size: 12px;
    letter-spacing: 0.05em;
    position: sticky;
    top: 0;
    text-transform: uppercase;
    vertical-align: top;
}

.specs-reference-table td {
    color: #334e68;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: top;
}

.specs-reference-table td:first-child,
.specs-reference-table th:first-child {
    background: #ffffff;
    left: 0;
    position: sticky;
    z-index: 1;
}

.specs-reference-table th:first-child {
    background: #f4f8f7;
    z-index: 2;
}

.specs-guide-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specs-guide-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(16, 42, 67, 0.05);
    padding: 26px;
}

.specs-guide-card span {
    color: rgba(15, 118, 110, 0.28);
    display: block;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

.specs-guide-card h3 {
    color: #102a43;
    font-size: 20px;
    margin: 0 0 12px;
}

.specs-guide-card p {
    color: #52606d;
    line-height: 1.7;
    margin: 0;
}

.certificates-section {
    background: #ffffff;
}

.certificate-card-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.certificate-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.certificate-preview {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #f4f8f7;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 18px;
}

.certificate-preview img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.certificate-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.certificate-content h3 {
    color: #102a43;
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.certificate-content p {
    color: #52606d;
    line-height: 1.7;
    margin: 0 0 20px;
}

.certificate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.certificate-actions .view-details-btn,
.certificate-actions .quote-link {
    box-shadow: none;
    font-size: 14px;
    min-height: 42px;
    padding: 11px 18px;
}

.specs-cta {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .specs-guide-grid,
    .certificate-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .specifications-hero {
        padding: 44px 20px 38px;
    }

    .specifications-hero h2 {
        font-size: 38px;
    }

    .capsule-size-diagram {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .capsule-size-row {
        gap: 10px;
        overflow-x: auto;
        padding: 22px 16px 18px;
    }

    .capsule-size-item {
        min-width: 48px;
    }

    .spec-note-card,
    .specs-guide-card,
    .certificate-content {
        padding: 22px;
    }

    .certificate-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .certificate-actions .view-details-btn,
    .certificate-actions .quote-link {
        width: 100%;
    }
}

/* ========================================
   Resources hub + manufacturing guide
   ======================================== */

.resource-hero {
    background:
        linear-gradient(120deg, rgba(247, 250, 249, 0.96), rgba(255, 255, 255, 0.92)),
        url("images/company/clean-workshop.jpg") center / cover no-repeat;
    border-bottom: 1px solid #dce7e4;
    padding: 56px 0 48px;
}

.resource-hero-grid {
    align-items: center;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.resource-hero-content h1 {
    color: #163832;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 16px;
}

.resource-hero-content p:not(.eyebrow) {
    color: #52606d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 40rem;
}

.resource-hero-visual {
    border-radius: 18px;
    overflow: hidden;
}

.resource-hero-visual img {
    display: block;
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.mfg-process-flow {
    border-top: 1px solid #dce7e4;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
}

.mfg-process-step {
    border-right: 1px solid #dce7e4;
    padding: 28px 24px 8px;
    position: relative;
}

.mfg-process-step:nth-child(3n) {
    border-right: none;
}

.mfg-process-step::before {
    background: var(--primary-color);
    border-radius: 999px;
    content: "";
    height: 10px;
    left: 24px;
    position: absolute;
    top: -5px;
    width: 10px;
}

.mfg-process-step span {
    color: var(--primary-color);
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.mfg-process-step h3 {
    color: #163832;
    font-size: 1.05rem;
    margin: 0 0 10px;
}

.mfg-process-step p {
    color: #52606d;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.mfg-split {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mfg-split.reverse {
    direction: rtl;
}

.mfg-split.reverse > * {
    direction: ltr;
}

.mfg-split-copy h2 {
    color: #163832;
    margin: 0 0 14px;
}

.mfg-split-copy p {
    color: #52606d;
    line-height: 1.7;
    margin: 0 0 14px;
}

.mfg-split-media {
    border-radius: 18px;
    overflow: hidden;
}

.mfg-split-media img {
    display: block;
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.mfg-callout {
    border-left: 3px solid var(--primary-color);
    color: #163832;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
    max-width: 46rem;
    padding-left: 18px;
}

.mfg-qc-layout {
    align-items: start;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    margin-top: 32px;
}

.mfg-qc-layout img {
    border-radius: 18px;
    display: block;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    width: 100%;
}

.editorial-checklist {
    display: grid;
    gap: 12px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.editorial-checklist li {
    border-bottom: 1px solid #e5eeeb;
    color: #334155;
    line-height: 1.6;
    padding: 12px 0 12px 28px;
    position: relative;
}

.editorial-checklist li::before {
    color: var(--primary-color);
    content: "✓";
    font-weight: 700;
    left: 0;
    position: absolute;
}

.faq-accordion {
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.faq-accordion-item {
    border-bottom: 1px solid #dce7e4;
    padding: 0;
}

.faq-accordion-item summary {
    color: #163832;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
    padding: 18px 36px 18px 0;
    position: relative;
}

.faq-accordion-item summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-item summary::after {
    color: var(--primary-color);
    content: "+";
    font-size: 1.25rem;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 16px;
}

.faq-accordion-item[open] summary::after {
    content: "–";
}

.faq-accordion-item p {
    color: #52606d;
    line-height: 1.7;
    margin: 0;
    max-width: 48rem;
    padding: 0 0 18px;
}

.resources-hub-intro {
    max-width: 42rem;
}

.resources-article-list {
    display: grid;
    gap: 0;
    margin-top: 40px;
}

.resources-article-item {
    align-items: center;
    border-top: 1px solid #dce7e4;
    display: grid;
    gap: 28px;
    grid-template-columns: 220px minmax(0, 1fr);
    padding: 28px 0;
}

.resources-article-item:last-child {
    border-bottom: 1px solid #dce7e4;
}

.resources-article-item img {
    border-radius: 14px;
    display: block;
    height: 140px;
    object-fit: cover;
    width: 100%;
}

.resources-article-item h2 {
    color: #163832;
    font-size: 1.35rem;
    margin: 0 0 10px;
}

.resources-article-item h2 a {
    color: inherit;
    text-decoration: none;
}

.resources-article-item h2 a:hover {
    color: var(--primary-color);
}

.resources-article-item p {
    color: #52606d;
    line-height: 1.65;
    margin: 0 0 12px;
}

.resource-backlink {
    margin: 24px 0 0;
}

@media (max-width: 900px) {
    .resource-hero-grid,
    .mfg-split,
    .mfg-split.reverse,
    .mfg-qc-layout,
    .resources-article-item {
        grid-template-columns: 1fr;
    }

    .mfg-split.reverse {
        direction: ltr;
    }

    .mfg-process-flow {
        grid-template-columns: 1fr;
    }

    .mfg-process-step {
        border-bottom: 1px solid #dce7e4;
        border-right: none;
        padding-left: 0;
        padding-right: 0;
    }

    .mfg-process-step::before {
        left: 0;
    }

    .editorial-checklist {
        grid-template-columns: 1fr;
    }

    .resource-hero-visual img,
    .mfg-split-media img {
        height: 220px;
    }
}

/* B2B trust / procurement reassurance */
.b2b-trust-section {
    background: #f8fbfa;
    border-top: 1px solid #e5eeeb;
}

.b2b-trust-grid {
    display: grid;
    gap: 28px 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
}

.b2b-trust-point h3 {
    color: #102a43;
    font-size: 18px;
    margin: 0 0 10px;
}

.b2b-trust-point p {
    color: #52606d;
    line-height: 1.7;
    margin: 0 0 10px;
}

.b2b-trust-point p:last-child {
    margin-bottom: 0;
}

.b2b-trust-resources {
    border-top: 1px solid #e5eeeb;
    color: #52606d;
    line-height: 1.7;
    margin: 32px 0 0;
    padding-top: 24px;
}

.b2b-trust-about {
    margin: 18px 0 0;
}

.contact-support-section {
    border-top: 1px solid #e5eeeb;
}

.contact-support-links {
    margin: 28px 0 0;
}

@media (max-width: 768px) {
    .b2b-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Site-wide visual consistency refinements
   ======================================== */

.contact-form-section {
    padding-bottom: 56px;
    padding-top: 56px;
}

.contact-support-section {
    padding-bottom: 48px;
    padding-top: 48px;
}

.contact-support-section .editorial-checklist {
    margin-top: 8px;
}

.contact-info-section {
    padding-bottom: 56px;
    padding-top: 48px;
}

.section-note {
    color: #52606d;
    line-height: 1.7;
    margin-top: 24px;
    max-width: var(--content-max-prose);
}

.section-links-row {
    margin-top: 28px;
}

.pdp-content-section {
    padding-bottom: 48px;
    padding-top: 48px;
}

.pdp-content-section > .container > .pdp-wide-card:last-of-type,
.pdp-content-section > .container > .pdp-section-grid:last-of-type {
    margin-bottom: 0;
}

.b2b-trust-section.section {
    padding-bottom: 56px;
    padding-top: 56px;
}

.capability-card,
.inquiry-help-card {
    border-radius: var(--radius-card);
    box-shadow: 0 4px 16px rgba(16, 42, 67, 0.04);
    padding: 22px;
}

.gallery-main {
    background: #ffffff;
    border-radius: var(--radius-image);
}

.main-image,
.pdp-display-image img,
.resources-article-item img,
.mfg-split-media img,
.hero-main-image img,
.hero-support-images img {
    object-fit: cover;
}

.pdp-display-image img,
.main-image {
    object-fit: contain;
}

.mfg-split-media img {
    border-radius: var(--radius-image);
    display: block;
    height: 280px;
    width: 100%;
}

.mfg-callout + p {
    color: #52606d;
    line-height: 1.7;
    margin: 18px 0 0;
    max-width: var(--content-max-prose);
}

.resources-article-list {
    margin-top: 8px;
}

.resources-article-item {
    gap: 24px;
    padding: 24px 0;
}

.resources-article-item h2 {
    font-size: 1.25rem;
    line-height: 1.35;
}

.resources-article-item img {
    border-radius: var(--radius-image);
    height: 132px;
}

.resources-hub-intro p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.65;
}

.cta-button,
.cta-button-secondary,
.send-inquiry-btn {
    font-size: 15px;
    line-height: 1.2;
    min-height: 48px;
}

.contact-inquiry-form {
    max-width: 100%;
}

.contact-form-grid > .contact-inquiry-form {
    max-width: 560px;
    width: 100%;
}

@media (min-width: 1025px) {
    .contact-form-grid > .contact-inquiry-form {
        justify-self: end;
    }
}

.pdp-hero-content h1 {
    color: #102a43;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.resource-hero {
    padding: 48px 0 40px;
}

.resource-hero-content h1 {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 52px;
        --section-heading-gap: 24px;
    }

    .contact-form-section,
    .contact-support-section,
    .contact-info-section {
        padding-bottom: 44px;
        padding-top: 44px;
    }

    .contact-inquiry-form {
        padding: 22px;
    }

    .resources-article-item img {
        height: 180px;
    }

    .mfg-split-media img {
        height: 220px;
    }
}
