/* ============================================
   Single Manufacturer Page Styles
   ============================================ */

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

.single-manufacturer-main {
    background-color: #F5F5F0;
    min-height: 100vh;
}

/* ============================================
   Breadcrumb Section
   ============================================ */
.manufacturer-breadcrumb-section {
    background-color: #5BA55D;
    padding: 15px 20px;
}

.manufacturer-breadcrumbs {
    font-size: 14px;
    color: white;
}

/* ============================================
   Hero Section
   ============================================ */
.single-manufacturer-hero {
    background: linear-gradient(135deg, #5BA55D 0%, #6BB56F 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.manufacturer-hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.manufacturer-hero-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.manufacturer-dot {
    width: 12px;
    height: 12px;
    background-color: #F5A623;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.manufacturer-hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    opacity: 0.95;
}

.hero-meta-item .meta-icon {
    font-size: 18px;
}

/* ============================================
   Content Section
   ============================================ */
.single-manufacturer-content-section {
    padding: 60px 20px 80px;
}

/* Featured Image */
.manufacturer-featured-image {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.manufacturer-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Company Info Card */
.manufacturer-info-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.info-card-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #5BA55D;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: #F9F9F9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-card-item:hover {
    background-color: #F0F8F0;
    transform: translateY(-2px);
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-icon {
    font-size: 18px;
}

.info-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    word-break: break-word;
}

.info-value a {
    color: #5BA55D;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-value a:hover {
    color: #4A8A4C;
    text-decoration: underline;
}

/* Description Section */
.manufacturer-description-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #5BA55D 0%, #4A8A4C 100%);
    color: white;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(91, 165, 93, 0.3);
}

.section-content {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

.section-content p {
    margin-bottom: 15px;
}

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

/* Services Section */
.manufacturer-services-section {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-group {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E0E0E0;
}

.service-icon {
    font-size: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tag {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-tag.work-tag {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 2px solid #2E7D32;
}

.service-tag.crop-tag {
    background-color: #FFF8E1;
    color: #F57C00;
    border: 2px solid #F57C00;
}

.service-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.manufacturer-contact-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    text-align: center;
}

.contact-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.phone-button {
    background: linear-gradient(135deg, #5BA55D 0%, #4A8A4C 100%);
    color: white;
}

.phone-button:hover {
    background: linear-gradient(135deg, #4A8A4C 0%, #3A7A3C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 165, 93, 0.3);
}

.email-button {
    background: linear-gradient(135deg, #4A7C7E 0%, #3A6C6E 100%);
    color: white;
}

.email-button:hover {
    background: linear-gradient(135deg, #3A6C6E 0%, #2A5C5E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 126, 0.3);
}

.web-button {
    background: linear-gradient(135deg, #D4A574 0%, #C89968 100%);
    color: white;
}

.web-button:hover {
    background: linear-gradient(135deg, #C89968 0%, #B8895E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

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

/* Share Section */
.manufacturer-share-section {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.share-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.twitter-share {
    background-color: #1DA1F2;
    color: white;
}

.twitter-share:hover {
    background-color: #0d8bd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.facebook-share {
    background-color: #4267B2;
    color: white;
}

.facebook-share:hover {
    background-color: #365899;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 103, 178, 0.3);
}

.line-share {
    background-color: #00B900;
    color: white;
}

.line-share:hover {
    background-color: #009900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 185, 0, 0.3);
}

.share-icon {
    font-size: 18px;
}

/* Related Manufacturers Section */
.manufacturer-related-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.related-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #5BA55D;
}

.related-manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-manufacturer-card {
    background: #F9F9F9;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-manufacturer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #5BA55D;
}

.related-manufacturer-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #E0E0E0;
}

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

.related-manufacturer-card:hover .related-manufacturer-image img {
    transform: scale(1.05);
}

.related-manufacturer-content {
    padding: 20px;
}

.related-manufacturer-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-manufacturer-region {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.region-icon {
    font-size: 16px;
}

/* Navigation Section */
.manufacturer-navigation-section {
    background-color: white;
    padding: 40px 20px;
    border-top: 1px solid #E0E0E0;
}

.post-navigation {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.nav-previous,
.nav-next {
    display: flex;
}

.nav-next {
    justify-content: flex-end;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #F5F5F0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: #E8F5E9;
    transform: translateY(-2px);
    border-color: #5BA55D;
}

.nav-arrow {
    font-size: 24px;
    color: #5BA55D;
}

.nav-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.nav-center {
    text-align: center;
}

.nav-back {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #5BA55D 0%, #4A8A4C 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-back:hover {
    background: linear-gradient(135deg, #4A8A4C 0%, #3A7A3C 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 165, 93, 0.3);
}

/* CTA Section */
.manufacturer-cta-section {
    background: linear-gradient(135deg, #5BA55D 0%, #6BB56F 100%);
    padding: 60px 20px;
    margin-top: 40px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #D4A574 0%, #C89968 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #C89968 0%, #B8895E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */

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

@media (max-width: 768px) {
    .manufacturer-hero-title {
        font-size: 32px;
    }
    
    .manufacturer-hero-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-card-grid {
        grid-template-columns: 1fr;
    }
    
    .related-manufacturer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nav-next {
        justify-content: flex-start;
    }
    
    .nav-center {
        order: -1;
    }
}

@media (max-width: 480px) {
    .single-manufacturer-hero {
        padding: 40px 15px;
    }
    
    .manufacturer-hero-title {
        font-size: 26px;
    }
    
    .manufacturer-hero-dots {
        gap: 8px;
    }
    
    .manufacturer-dot {
        width: 10px;
        height: 10px;
    }
    
    .single-manufacturer-content-section {
        padding: 40px 15px 60px;
    }
    
    .manufacturer-info-card {
        padding: 25px;
    }
    
    .info-card-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 12px 24px;
    }
    
    .section-content {
        padding: 25px;
    }
    
    .service-group {
        padding: 20px;
    }
    
    .manufacturer-contact-section {
        padding: 30px 20px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-description {
        font-size: 15px;
    }
}

