
    .cozylil-shipping-policy {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #444;
        line-height: 1.8;
    }
    .sp-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .sp-header h1 {
        font-size: 32px;
        color: #000;
        margin-bottom: 15px;
    }
    /* 流程步骤样式 */
    .shipping-steps {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
        gap: 20px;
    }
    .step-item {
        flex: 1;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        border-top: 4px solid #fecb2e;
    }
    .step-item h4 {
        margin: 10px 0;
        color: #000;
        font-size: 16px;
    }
    .step-item p {
        font-size: 13px;
        margin: 0;
        color: #777;
    }

    .sp-section {
        margin-bottom: 40px;
    }
    .sp-section h2 {
        font-size: 22px;
        color: #000;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    .shipping-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .shipping-table th, .shipping-table td {
        padding: 15px;
        border: 1px solid #eee;
        text-align: left;
    }
    .shipping-table th {
        background-color: #f8f8f8;
        font-weight: 600;
    }
    .tracking-box {
        background: #fff9e6;
        padding: 25px;
        border-radius: 12px;
        border: 1px dashed #fecb2e;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .tracking-icon {
        font-size: 40px;
    }
    .track-btn {
        display: inline-block;
        margin-top: 10px;
        color: #000;
        font-weight: bold;
        text-decoration: underline;
        transition: color 0.3s;
    }
    .track-btn:hover {
        color: #fecb2e;
    }

    @media (max-width: 768px) {
        .shipping-steps { flex-direction: column; }
        .sp-header h1 { font-size: 26px; }
    }
