/* ==========================================================================
   Pricing Policy Page Styles
   ========================================================================== */

/* Hero Section - Same style as Privacy page */
.pricing-hero-section {
    background-color: #00B96B;
    text-align: center;
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-hero-title {
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: var(--font-weight-bold);
    font-size: 48px;
}


.weight-limits-section {
    margin-bottom: 100px;
}

/* Content Section */
.pricing-content-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Last Updated */
.last-updated {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-lighter);
}

.last-updated p {
    color: var(--text-gray);
    margin: 0;
}

/* Section Titles */
.section-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.section-description {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xxl);
    line-height: 1.6;
}

/* Subsections */
.pricing-subsection {
    margin-bottom: 40px;
    padding-left: 60px;
}

.subsection-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    margin-top: 40px;
}

.subsection-description {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--spacing-xl);
}

.pricing-table {
    width: 100%;
    max-width: 746px;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-table thead {
    background-color: var(--bg-gray);
}

.pricing-table th {
    padding: var(--spacing-md);
    text-align: left;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-light);
    min-width: 130px;
}

.pricing-table td {
    padding: var(--spacing-md);
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-lighter);
}

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

.pricing-table tbody tr:hover {
    background-color: var(--bg-gray);
}

/* Ensure proper rounded corners for first and last cells */
.pricing-table thead tr:first-child th:first-child {
    border-top-left-radius: 16px;
}

.pricing-table thead tr:first-child th:last-child {
    border-top-right-radius: 16px;
}

.pricing-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.pricing-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

/* Lists */
.pricing-materials-list,
.terms-list,
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-materials-list li,
.terms-list li,
.policy-list li {
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.pricing-materials-list li:before,
.terms-list li:before,
.policy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-materials-list li strong,
.terms-list li strong {
    color: var(--text-dark);
}

.pricing-subsection .pricing-table tbody tr td:first-child {
    font-weight: 400!important;
}

.contact-item {
    margin-bottom: 0;
    color: var(--text-dark);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-link {
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-green-hover);
    text-decoration: underline;
}

/* Update Notice */
.update-notice {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-lighter);
}

.update-notice p {
    font-style: italic;
}

/* ==========================================================================
   Mobile Styles (XS - < 600px)
   ========================================================================== */
@media screen and (max-width: 599px) {
    .pricing-hero-section {
        padding: 60px 0;
        min-height: 250px;
    }
    
    .pricing-hero-title {
        font-size: 28px;
    }

    .weight-limits-section {
        margin-bottom: 48px;
    }

    .pricing-subsection {
        padding-left: 24px;
    }
    
    .pricing-content-section {
        padding: 40px 0;
    }
    
    .pricing-wrapper {
        padding: 0 var(--spacing-md);
    }
    
    .pricing-table {
        font-size: 12px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: var(--spacing-sm);
        min-width: 80px;
    }
}

/* ==========================================================================
   Tablet Styles (SM - 600px to 959px)
   ========================================================================== */
@media screen and (min-width: 600px) and (max-width: 959px) {
    .pricing-hero-section {
        padding: 100px 0;
        min-height: 300px;
    }

    .weight-limits-section {
        margin-bottom: 60px;
    }

    .pricing-subsection {
        padding-left: 40px;
    }
    
    .pricing-hero-title {
        font-size: 36px;
    }
    
    .pricing-content-section {
        padding: 60px 0;
    }
    
    .pricing-wrapper {
        padding: 0 var(--spacing-lg);
    }
}

/* ==========================================================================
   Desktop Styles (MD - 960px to 1279px)
   ========================================================================== */
@media screen and (min-width: 960px) and (max-width: 1279px) {
    .pricing-wrapper {
        padding: 0 var(--spacing-xl);
    }

    .weight-limits-section {
        margin-bottom: 60px;
    }

    .pricing-subsection {
        padding-left: 40px;
    }
}

/* ==========================================================================
   Large Desktop Styles (LG - 1280px+)
   ========================================================================== */
@media screen and (min-width: 1280px) {
    .pricing-content-section {
        padding: 100px 0;
    }
}