/* ============================================
   PACKAGING & MOQ DETAILS STYLES
   Siddhi Global Network - Export Section
   ============================================ */

:root {
    --pkg-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --pkg-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sgn-pkg-moq-section {
    padding: 80px 0;
    background-color: #fafff7; /* Very light green tint */
}

.sgn-section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.sgn-section-title-wrap .subheading {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 10px;
}

.sgn-section-title-wrap h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-dark);
}

/* --- Layout Grid --- */
.sgn-pkg-moq-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .sgn-pkg-moq-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Common Card Style --- */
.sgn-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--pkg-shadow);
    height: 100%;
    transition: var(--pkg-transition);
    border: 1px solid rgba(56, 159, 10, 0.05);
}

.sgn-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(56, 159, 10, 0.12);
}

.sgn-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f7ed;
    padding-bottom: 15px;
}

.sgn-card-header i {
    font-size: 28px;
    color: var(--brand-primary);
    margin-right: 15px;
}

.sgn-card-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-dark);
}

/* --- Packaging Details Specifics --- */
.sgn-pkg-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.sgn-pkg-type-item {
    text-align: center;
    padding: 20px 10px;
    background: #f8fff4;
    border-radius: 15px;
    transition: var(--pkg-transition);
}

.sgn-pkg-type-item:hover {
    background: var(--brand-accent);
}

.sgn-pkg-type-item i {
    font-size: 24px;
    color: var(--brand-primary);
    margin-bottom: 10px;
    display: block;
}

.sgn-pkg-type-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
}

.sgn-pkg-flexibility {
    margin-bottom: 35px;
}

.sgn-flex-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
}

.sgn-flex-box i {
    font-size: 24px;
    margin-right: 15px;
}

.sgn-flex-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.sgn-pkg-sizes h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.sgn-size-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 575px) {
    .sgn-size-row {
        grid-template-columns: 1fr;
    }
}

.sgn-size-cat h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    border-left: 3px solid var(--brand-secondary);
    padding-left: 10px;
}

.sgn-size-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sgn-size-list li {
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed #e0e0e0;
    color: var(--text-secondary);
}

.sgn-size-list li strong {
    color: var(--brand-dark);
}

/* --- MOQ Details Specifics --- */
.sgn-moq-main {
    text-align: center;
    background: var(--brand-accent-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--brand-accent);
}

.sgn-moq-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 10px;
    display: block;
}

.sgn-moq-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-dark);
}

.sgn-moq-subtext {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.sgn-moq-product-list h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.sgn-moq-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.sgn-moq-table td {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.sgn-moq-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--brand-primary);
}

.sgn-moq-units h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sgn-unit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sgn-unit-pill {
    background: #fff;
    border: 2px solid var(--brand-accent);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-primary);
}
